.service-card {
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* =============================================================================================== */

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 50;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 5rem;
    width: auto;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #e5e5e5;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #d4af37;
}

/* Desktop styles */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile menu styles */
@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 5rem;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        display: block;
    }
    
    .mobile-menu-open {
        padding-bottom: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    color: #e5e5e5;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #d4af37;
    color: #1a1a1a;
}

.primary-btn:hover {
    background-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-1px);
}

.secondary-btn {
    border: 2px solid #d4af37;
    color: #d4af37;
}

.secondary-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
}


/* Gallery Section */
.gallery-item {
    transition: all 0.3s ease;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.gallery-item .content {
    padding: 1.5rem;
    background-color: #1a1a1a;
}

.gallery-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.gallery-item p {
    color: #e5e5e5;
}

.gallery-section {
    padding: 5rem 0;
    background-color: #333333;
}

.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gallery-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-title {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #d4af37;
}

.gallery-title p {
    max-width: 56rem;
    margin: 0 auto;
    font-size: 1.125rem;
}

.view-portfolio {
    /* display: inline-block; */
    margin-top: 3rem;
    text-align: center;
}

.view-portfolio a {
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.view-portfolio a:hover {
    background-color: #d4af37;
    background-color: rgba(212, 175, 55, 0.1);
}