/* Custom Styles for Laevatein54 Portfolio */

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #7016ca 0%, #000000 100%);
    min-height: 100vh;
    padding-top: 0px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, #000000 0%, #7016ca 100%) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #ffffff !important;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea !important;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #5B41FF !important;
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #5B41FF !important;
    background-color: rgb(0, 0, 0);
    color: aliceblue;
}

.service-icon i {
    color: #5B41FF !important;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 15px;
}

/* Technology Icons */
.tech-icons img, 
.tecnologias img {
    width: 52px !important;
    height: 52px !important;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.tech-icons img:hover,
.tecnologias img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Technology Placeholders */
.tech-placeholder {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tech-placeholder:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

.tech-icons {
    align-items: center;
}

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

.table th {
    background-color: #5B41FF;
    color: white;
    border: none;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
    padding: 1rem;
}

/* Buttons */
.btn-primary {
    background: #5B41FF;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-dark {
    background-color: #212529;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #495057;
    transform: translateY(-2px);
}

/* Sections */
section {
    scroll-margin-top: 80px;
}

/* Footer */
footer {
    background-color: #000000 !important;
}

.social-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #667eea !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .tech-icons {
        gap: 1rem !important;
    }
    
    .tech-icons img {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Background utilities */
.bg-black {
    background-color: #000000 !important;
}

/* Text utilities */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}
