/* Global Styles */
:root {
    --primary-gold: #D4AF37;
    /* Gold */
    --primary-gold-dark: #AA8C2C;
    --dark-bg: #121212;
    --dark-surface: #1E1E1E;
    --light-text: #F5F5F5;
    --gray-text: #B0B0B0;
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--dark-bg);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
}

.text-center {
    text-align: center;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-white {
    color: var(--white);
}

.text-gray {
    color: var(--gray-text);
}

.bg-dark {
    background-color: var(--dark-bg);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Header */
.header {
    background: rgba(18, 18, 18, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hide mobile menu specific elements by default */
.mobile-categories,
.mobile-menu-footer {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/hero-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-brand {
    display: block;
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    /* Increased shadow */
}

.hero-title span {
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    /* Strong shadow for readability */
    font-weight: 500;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 3px solid var(--primary-gold);
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* Gallery Section */
.gallery-filters {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--white);
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Lighter overall overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    /* Yellow glow on text */
    background: rgba(0, 0, 0, 0.8);
    /* Black background for text */
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--primary-gold);
    /* Gold border for premium feel */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    /* Shadow behind the box */
}

/* Contact Section */
.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 300px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card.whatsapp .icon-box {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
}

/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo img {
    height: 80px;
    margin: 0 auto 1rem;
}

.footer-logo p {
    color: var(--primary-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
}

.footer-location {
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 1rem;
    font-weight: 500;
}

.footer-location i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    background-color: #25D366;
}

.phone-float {
    background-color: var(--primary-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .header-container {
        padding: 0 1.5rem;
    }

    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-bg);
        transition: 0.3s;
        text-align: center;
        overflow-y: auto;
        padding-bottom: 100px;
        /* Space for logo and scroll */
    }

    .nav.active {
        right: 0;
    }

    .nav-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100%;
    }

    .nav-list {
        flex-direction: column;
        padding-top: 2rem;
        gap: 1.5rem;
    }

    /* Mobile Categories */
    .mobile-categories {
        display: block;
        /* Show on mobile */
        margin-top: 2rem;
        padding: 0 2rem;
        text-align: left;
    }

    .mobile-categories h4 {
        color: var(--primary-gold);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .nav-list-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nav-list-categories li a {
        color: var(--gray-text);
        font-size: 0.9rem;
        display: block;
        padding: 5px;
        transition: 0.3s;
    }

    .nav-list-categories li a:hover {
        color: var(--primary-gold);
    }

    .mobile-menu-footer {
        margin-top: auto;
        padding: 2rem 0;
        display: flex;
        /* Show on mobile */
        justify-content: center;
    }

    .mobile-menu-logo {
        height: 60px;
        object-fit: contain;
    }

    .mobile-toggle {
        display: block;
    }

    .about-container {
        flex-direction: column;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 45%;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    /* Scroll Fix for Footer */
    body {
        padding-bottom: 80px;
        /* Space for fixed buttons */
    }
}