:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --dark: #111;
    --light: #ffffff;
    --text-main: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --card-bg: #f9f9f9;
    --sidebar-width: 280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- Header & Navigation --- */
/* --- Header & Navigation --- */
header {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    /* Stack Logo and Menu */
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 10px;
}

.logo span {
    color: var(--dark);
}

/* Horizontal Scroll Menu */
.top-nav {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    padding: 5px 20px;
    text-align: center;
    /* Hide scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.top-nav::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.nav-item {
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 5px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    background-color: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* Container adjustment */
.view-section {
    padding-top: 110px;
    /* Increased for taller header */
    min-height: 100vh;
}

/* --- Views --- */
.view-section {
    padding-top: 80px;
    /* Header height */
    min-height: 100vh;
}

#landing-view {
    display: block;
}

#category-view {
    display: none;
    padding-bottom: 50px;
}

#contact-view {
    display: none;
    padding-bottom: 50px;
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: calc(100vh - 80px);
    /* Full screen minus header */
    overflow: hidden;
    margin-bottom: 60px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for readability */
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Common UI Components --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gold);
    margin-bottom: 40px;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* --- Services Grid --- */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.service-card h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- About --- */
.about {
    margin-bottom: 80px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.long-paragraph {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}

/* --- Category Gallery View --- */
.category-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
}

.back-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.item-info {
    padding: 20px;
}

.item-info h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Contact --- */
.contact-card {
    background: var(--dark);
    color: #fff;
    border-radius: 16px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gold);
    filter: blur(80px);
    opacity: 0.1;
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.phone {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 15px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    transition: 0.3s;
}

.btn-insta:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--gold);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-slider {
        height: 60vh;
    }

    .view-section {
        padding-top: 140px;
        /* Increased to prevent header overlap */
    }

    .category-header {
        margin-bottom: 20px;
    }

    .whatsapp-btn,
    .btn-insta {
        display: block;
        width: 100%;
        max-width: 300px;
        /* Prevent them from becoming too wide on slightly larger phones */
        margin: 10px auto;
        text-align: center;
    }
}