* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML & Body Setup */
html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    background-color: var(--bg-primary);
    color: var(--text-ivory);
    font-family: var(--font-secondary);
    line-height: 1.7;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; } /* Hero headline */
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2.5rem; } /* Section titles */
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

/* Paragraphs & Links */
p {
    margin-bottom: 1rem;
    color: var(--text-ivory);
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-ivory);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--button-padding);
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-secondary);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-ivory);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* --- Header Section --- */
header {
    background-color: rgba(17, 17, 17, 0.9); /* Slightly transparent */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px); /* Frosted glass effect */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 20%; 
    height: 1rem;
    display: flex;
    justify-content: start;
    align-items: center;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    transition: transform 0.3s ease;
}

nav ul.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-ivory);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav .cta-button { /* Specific styling for header CTA */
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav .cta-button:hover {
    background-color: var(--text-ivory);
    color: var(--bg-primary);
}

nav .cta-button:hover::after { 
    width: 0;
}

/* Mobile Menu Styles */
/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ffffff;
    padding: 0.5rem;
    z-index: 100;
}


/* Video Slider Styles */
.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: absolute;
    top: 20%;
    left: 5%;
    color: #fff;
    max-width: 50%;
    z-index: 2;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s;
}

.indicator.active {
    background: #fff;
}

/* Adjust hero content to work with video slider */
#hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    margin-top: 5%;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .slide-content {
        max-width: 90%;
        top: 10%;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    
    .nav-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        z-index: 99;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
    }
    
    nav ul.active {
        display: flex;
        transform: translateX(0);
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }
}
/* --- Hero Section --- */
#hero {
    min-height: 100vh; /* Full viewport height */
    background: rgba(0, 0, 0, 0.5); /* Placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px; /* Padding for content */
    color: var(--text-ivory);
}

#hero .hero-content {
    max-width: 800px;
}

#hero h1 {
    font-size: 4rem; /* Larger for hero */
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

#hero .subheadline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

#hero .cta-buttons .btn {
    margin: 0 10px;
}

/* --- How It Works Section --- */
#how-it-works {
    padding: var(--section-padding);
    background-color: var(--bg-secondary); /* Slightly different background */
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step .icon {
    font-size: 3rem; /* Placeholder for icon */
    color: var(--accent-gold);
    margin-bottom: 1rem;
    /* Replace with actual icons later (e.g., Font Awesome <i> tags) */
    display: block;
}

.step h3 {
    color: var(--text-ivory); /* Different color for step titles */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Featured Celebrities Section --- */
#featured-celebs {
    padding: var(--section-padding);
}

.celebrity-slider {
    /* Basic layout - A real slider requires JavaScript */
    display: grid;
    grid-auto-flow: column;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 20px; /* Space for scrollbar */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-secondary);
}

/* Styling for the scrollbar */
.celebrity-slider::-webkit-scrollbar {
    height: 8px;
}
.celebrity-slider::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}
.celebrity-slider::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold);
    border-radius: 10px;
    border: 2px solid var(--bg-secondary);
}


.celebrity-card {
    background-color: var(--bg-secondary);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 280px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button down */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celebrity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.celebrity-card .img-placeholder {
    height: 200px;
    background-color: #555;
    margin-bottom: 15px;
    border-radius: 4px;
    background-image: url('https://placehold.co/280x200');
    background-size: cover;
    background-position: top;
}

.celebrity-card h4 {
    color: var(--accent-gold);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.celebrity-card .category,
.celebrity-card .price {
    font-size: 0.9rem;
    color: #bbb; /* Lighter text for meta info */
    margin-bottom: 8px;
}

.celebrity-card .price {
    font-weight: bold;
    margin-bottom: 20px;
}

.celebrity-card .btn {
    width: 100%; /* Make button full width */
    margin-top: auto; /* Ensure it stays at the bottom */
}

/* --- Exclusive Experiences Section --- */
#exclusive-experiences {
    padding: var(--section-padding);
    background-color: var(--bg-primary); /* Back to primary bg */
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.experience-tile {
    background-color: var(--bg-secondary);
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.experience-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.experience-tile h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.experience-tile p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.experience-tile .btn {
    margin-top: auto;
}

/* --- Testimonials Section --- */
#testimonials {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
    width: 100%; /* Limit width */
    margin: 0 auto;
    justify-content: center;
}

.testimonial {
    background-color: var(--bg-primary); /* Contrast with section bg */
    padding: var(--card-padding);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    position: relative;
    padding-top: 40px; /* Space for quote icon */
    flex: 1 1 250px; /* Flex grow, shrink, and basis */
    max-width: 300px; /* Maximum width of each testimonial */
}

.testimonial::before { /* Quote icon styling */
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #eee;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: bold;
    color: var(--accent-gold);
    font-style: normal;
}

/* --- Call-to-Action Banner Section --- */
#cta-banner {
    padding: 50px 20px;
    background: linear-gradient(45deg, var(--accent-gold), #b8860b); /* Gold gradient */
    color: var(--bg-primary);
    text-align: center;
}

#cta-banner .quote {
    font-size: 1.8rem;
    font-family: var(--font-primary);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: bold;
}

#cta-banner .btn-primary {
    background-color: var(--bg-primary);
    color: var(--accent-gold);
    border: 2px solid var(--bg-primary);
}

#cta-banner .btn-primary:hover {
    background-color: transparent;
    color: var(--bg-primary);
}

/* --- Footer Section --- */
footer {
    background-color: #0a0a0a; /* Even darker for footer */
    color: #aaa;
    padding: 50px 0 20px 0;
    font-size: 0.9rem;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

footer h4 {
    color: var(--text-ivory);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #aaa;
}

footer ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px; /* Slight indent on hover */
}

.social-icons a {
    color: #aaa;
    margin-right: 15px;
    font-size: 1.5rem; /* Adjust size for icons */
    /* Add actual icon library classes here */
}

.social-icons a:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

/* .celebrity-flex-wrapper {
    display: flex;
    flex-direction: row;
} */

/* --- Responsive Adjustments (Basic Example) --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    #hero h1 { font-size: 3.2rem; }
    #hero .subheadline { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    nav ul.active {
        display: flex;
    }
    
    /* Header container stays as row layout to keep logo and hamburger side by side */
    header .container {
        justify-content: space-between;
        align-items: center;
    }
    
    nav { 
        width: 100%; 
        position: absolute;
        top: 100%;
        left: 0;
    }
    
    nav ul {
        background-color: var(--bg-primary);
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    nav ul li { 
        margin: 10px 15px; 
        text-align: center;
    }

    .testimonial {
        flex: 0 0 100%; /* Full width on smaller screens */
        max-width: 100%;
    }
    
    #hero { min-height: 80vh; }
    #hero h1 { font-size: 2.8rem; }
    .steps-container { grid-template-columns: 1fr; } /* Stack steps */
    .experiences-grid { grid-template-columns: 1fr; } /* Stack experiences */
    footer .container { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 576px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    nav ul li { margin: 10px 0; }
    #hero h1 { font-size: 2.2rem; }
    #hero .subheadline { font-size: 1rem; }
    #hero .cta-buttons { display: flex; flex-direction: row; justify-content: space-evenly;  }
    #hero .cta-buttons .btn { width: 100%; font-size: 10px; display: flex; justify-content: center; align-items: center;}
    .celebrity-card { min-width: 100%; }
    footer .container { grid-template-columns: 1fr; text-align: center; }
    .social-icons { text-align: center; margin-top: 1rem; }
    .social-icons a { margin: 0 10px; }
}

@media (max-width: 992px) {
    .celebrity-profile-grid {
        flex-direction: column;
        gap: 20px; /* Smaller gap for mobile */
    }
    
    .celebrity-profile-grid > div:first-child {
        flex: 0 0 auto; /* Reset the fixed width for mobile */
    }
    
    .right-column-container {
        display: flex;
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Fix navigation menu for mobile */
    nav ul {
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 250px;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        z-index: 99;
        transition: right 0.3s ease-in-out;
    }
    
    nav ul.active {
        right: 0;
        transform: none;
        display: flex;
    }
    
    /* Fix testimonials display */
    .testimonial-container {
        grid-template-columns: 1fr;
    }
    
    /* Changed to flex wrapper for related celebrities */
    .celebrity-flex-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* Each celebrity card now has a fixed width */
    .celebrity-card {
        /* flex: 0 0 calc(50% - 10px); */
        margin-bottom: 20px;
        width: 100%;
    }
    
    /* Mobile layout: reorder sections */
    .mobile-order-1 {
        order: 1;
    }
    
    .mobile-order-2 {
        order: 2;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .subheadline {
        font-size: 1rem;
    }
    
    /* Fix celebrity cards for smaller screens */
    .celebrity-card {
       width: 80%;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-info-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .quick-info-list li span:last-child {
        margin-top: 5px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .herob {
        height: 60vh;
        padding-top: 6rem;
    }

    #hero-content {
       margin-top: 6rem;
    }
    
    /* Fix experiences grid for mobile */
    .experiences-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Center profile image on mobile and reduce height */
    .profile-image {
        height: 400px !important;
        margin: 0 auto;
    }
}

/* Fixed layout classes to ensure proper layout regardless of screen size */
.celebrity-profile-grid {
    display: flex;
    gap: 30px; /* Explicit gap between columns */
}

.celebrity-profile-grid > div:first-child {
    flex: 0 0 350px; 
}

.right-column-container {
    flex: 1;
}

/* Flex container for related celebrities */
.celebrity-flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Each celebrity card */
.celebrity-card {
    width: 20%;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
}

.profile-image {
    background-size: cover !important;
    background-position: center !important;
    border-radius: var(--border-radius) !important;
    margin-bottom: 20px;
    height: 600px;
}

/* .experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
} */

.experience-tile {
    background-color: var(--bg-secondary);
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-gold);
    margin-bottom: 15px;
}

.hero-content {
    padding: 2rem;
    text-align: center;
}

/* For mobile reordering using flexbox */
@media (max-width: 992px) {
    .right-column-container {
        display: flex;
        flex-direction: column;
    }
}

.hidden {
    display: none;
}

/* Remove pointer cursors by adding these rules after your existing styles */
a, 
.btn,
.slider-arrow,
.nav-toggle,
.indicator {
    cursor: default;
}

@media (max-width: 768px) {
  .celebrity-slider {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }
  .celebrity-card {
    width: 80%;
    margin: 0 8px 0 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .celebrity-card {
    width: 95%;
  }
}
