

/* Reset and Base Styles */
* {
    margin    : 0;
    padding   : 0;
    box-sizing: border-box;
}

body {
    font-family     : 'Open Sans', sans-serif;
    background-color: #0a0f1c;
    color           : #ffffff;
    overflow-x      : hidden;
    line-height     : 1.6;
}

.container {
    max-width: 1200px;
    margin   : 0 auto;
    padding  : 0 20px;
}

/* Header Styles */
#header {
    position       : fixed;
    top            : 0;
    width          : 100%;
    background     : rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    z-index        : 1000;
    padding        : 15px 0;
    transition     : all 0.3s ease;
}

.navbar {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    max-width      : 1200px;
    margin         : 0 auto;
    padding        : 0 20px;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size  : 24px;
    font-weight: 700;
    color      : #ffd700;
}

.nav-menu {
    display   : flex;
    list-style: none;
    gap       : 30px;
}

.nav-menu a {
    color          : #ffffff;
    text-decoration: none;
    font-weight    : 400;
    transition     : color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}



/* Updated Nav Brand Styles */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-logo {
    height: 50px; /* Matches the navbar height better */
    width: auto;
}

.sponsor-logos {
    height: 40px;
    width: auto;
    display: none; /* Hide on mobile by default */
}

/* Adjust navbar height and padding */
.navbar {
    height: 80px;
    padding: 15px 20px;
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .sponsor-logos {
        display: block;
    }
    
    .nav-brand {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-brand {
        gap: 15px;
    }
    
    .main-logo {
        height: 40px;
    }
    
    /* When mobile menu is active */
    .nav-menu.active ~ .nav-brand .sponsor-logos {
        display: none;
    }
}

/* Keep existing navbar styles, just add these new ones */

.cta-btn {
    background   : linear-gradient(135deg, #ffd700, #ffed4a);
    color        : #0a0f1c;
    border       : none;
    padding      : 12px 24px;
    border-radius: 25px;
    font-weight  : 600;
    cursor       : pointer;
    transition   : all 0.3s ease;
}

.cta-btn:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hamburger {
    display       : none;
    flex-direction: column;
    cursor        : pointer;
}

.hamburger span {
    width     : 25px;
    height    : 3px;
    background: #ffd700;
    margin    : 3px 0;
    transition: 0.3s;
}

/* Three.js Background */
#threejs-container {
    position: fixed;
    top     : 0;
    left    : 0;
    width   : 100%;
    height  : 100%;
    z-index : -1;
}


/* Buy Tickets Button */
.tickets-btn {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-right: 15px;
    display: inline-block;
}

.tickets-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Adjust spacing between buttons */
.cta-btn {
    margin-left: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .tickets-btn {
        display: none; /* Hide on mobile or adjust as needed */
    }
    
    /* Or if you want to show it in the mobile menu */
    .nav-menu.active + .tickets-btn {
        display: block;
        margin: 15px auto;
        width: 80%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    height         : 100vh;
    display        : flex;
    flex-direction : column;
    justify-content: center;
    align-items    : center;
    text-align     : center;
    position       : relative;
    padding        : 0 20px;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(75, 0, 130, 0.3));
    z-index: 3; /* Increased z-index to stay above slider */
}


.hero-content {
    position : relative;
    z-index  : 2;
    max-width: 800px;
}

.hero-title {
    font-family  : 'Playfair Display', serif;
    font-size    : 4.5rem;
    font-weight  : 700;
    color        : #ffd700;
    margin-bottom: 0.5rem;
    text-shadow  : 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation    : fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family  : 'Playfair Display', serif;
    font-size    : 2.5rem;
    color        : #ffffff;
    margin-bottom: 1rem;
    animation    : fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
    font-family  : 'Playfair Display', serif;
    font-size    : 2.5rem;
    font-weight  : 400;
    color        : #ffd700;
    margin-bottom: 2rem;
    animation    : fadeInUp 1s ease-out 0.4s both;
}

.hero-details {
    display        : flex;
    justify-content: center;
    gap            : 2rem;
    margin-bottom  : 2rem;
    animation      : fadeInUp 1s ease-out 0.6s both;
}

.detail-item {
    text-align: center;
}

.detail-label {
    display      : block;
    font-size    : 0.9rem;
    color        : #9ca3af;
    margin-bottom: 0.25rem;
}

.detail-value {
    display    : block;
    font-weight: 600;
    color      : #ffd700;
}

.hero-actions {
    display        : flex;
    gap            : 1rem;
    justify-content: center;
    animation      : fadeInUp 1s ease-out 0.8s both;
}

.primary-btn {
    background   : linear-gradient(135deg, #ffd700, #ffed4a);
    color        : #0a0f1c;
    border       : none;
    padding      : 15px 30px;
    border-radius: 30px;
    font-weight  : 600;
    font-size    : 1.1rem;
    cursor       : pointer;
    transition   : all 0.3s ease;
}

.primary-btn:hover {
    transform : translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.secondary-btn {
    background   : transparent;
    color        : #ffffff;
    border       : 2px solid #ffd700;
    padding      : 15px 30px;
    border-radius: 30px;
    font-weight  : 600;
    font-size    : 1.1rem;
    cursor       : pointer;
    transition   : all 0.3s ease;
}

.secondary-btn:hover {
    background: #ffd700;
    color     : #0a0f1c;
    transform : translateY(-3px);
}

/* Add this to your CSS */
/* Enhanced Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.7), rgba(75, 0, 130, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.detail-item {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-actions {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Swiper Navigation */
.swiper-button-next, 
.swiper-button-prev {
    color: #ffd700;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #ffd700;
    opacity: 1;
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    /* Hide all other elements */
    .hero-tagline,
    .hero-details,
    .hero-actions,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination,
    .countdown-container {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem !important;
    }
    
    /* Ensure Three.js canvas fits mobile */
    #threejs-container canvas {
        width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}





.nav-brand img {
    height: 120px; /* Adjust this value to match your nav height */
    width: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Ensure it never exceeds nav height */
    object-fit: contain; /* Keep image proportions */
}

/* Adjust navbar height if needed */
.navbar {
    height: 80px; /* Set a fixed height */
    display: flex;
    align-items: center;
}

.nav-menu a.active {
    color: #ffd700;
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}







/* Countdown */
/* Update the countdown styles */
.countdown-container {
    position: relative;
    width: 100%;
    margin: 40px auto;
    text-align: center;
    z-index: 2;
}

.countdown {
    display: inline-flex;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Add a new section for the countdown */
.countdown-section {
    padding: 60px 0;
    position: relative;
    background: rgba(10, 15, 28, 0.9);
}

/* Add gradient overlay to slider */
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.7), rgba(75, 0, 130, 0.4));
    z-index: 1;
}

/* Ensure content appears above gradient */
.hero-content {
    position: relative;
    z-index: 2;
}
/* Section Styles */
section {
    padding : 80px 0;
    position: relative;
}

.section-header {
    text-align   : center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family  : 'Playfair Display', serif;
    font-size    : 3rem;
    color        : #ffd700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color    : #d1d5db;
}

/* About Preview */
.about-preview {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(10, 15, 28, 0.9));
}

.about-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap                  : 2rem;
}

.about-card {
    background     : rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius  : 20px;
    padding        : 2rem;
    text-align     : center;
    transition     : all 0.3s ease;
    border         : 1px solid rgba(255, 215, 0, 0.1);
}

.about-card:hover {
    transform   : translateY(-10px);
    box-shadow  : 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.card-icon {
    font-size    : 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family  : 'Playfair Display', serif;
    font-size    : 1.5rem;
    color        : #ffd700;
    margin-bottom: 1rem;
}
/* Lineup Preview */
.lineup-preview {
    background: rgba(10, 15, 28, 0.95);
    padding: 60px 0;
}

.artist-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.artist-card {
    
    text-align: center;
    transition: all 0.3s ease;
    width: 360px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-sizing: border-box;
}

.artist-image-container {
    width: 280px; /* 300px card - 20px padding - 20px total margin */
    height: 280px;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.artist-image-square {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

/* Hover Effects */
.artist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.artist-card:hover .artist-image-square {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.artist-image-square::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-image-square::after {
    opacity: 1;
}

.artist-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.artist-card p {
    color: #d1d5db;
    font-size: 1rem;
}

/* Add these to your style.css file */

/* New square image container styles */
.artist-image-square-container {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Creates a square aspect ratio */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.artist-image-square {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

/* Hover effects */
.artist-card:hover .artist-image-square {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .artist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .artist-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .artist-grid {
        grid-template-columns: 1fr;
    }
}


/* Adjust the existing artist card to accommodate square images */
.artist-card {
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Remove the old circular image styles */
.artist-image {
    display: none; /* Hide the old circular image container */
}

  /* Container for the artist grid */
  .artist-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

/* Individual artist card */
.card {
    width: 250px; /* Adjust width as needed */
    height: 350px; /* Adjust height as needed */
    margin: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Image container inside the card */
.card-image {
    width: 100%;
    height: 250px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    border-radius: 0; /* Ensure the image is square */
}

/* Overlay for the image */
.card-overlay {
    width: 100%;
    height: 100%;
}

/* Card content */
.card-content {
    padding: 10px;
    text-align: center;
}

/* Social links */
.card-social {
    margin-top: 10px;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .artist-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .artist-card {
        width: 250px;
    }
    
    .artist-image-container {
        width: 210px;
        height: 210px;
    }
}

@media (max-width: 480px) {
    .artist-carousel {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        width: 100%;
        max-width: 300px;
    }
    
    .artist-image-container {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
        max-width: 260px;
        max-height: 260px;
    }
}
/* Square image container */
.artist-image-square {
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: scale(1.05);
}

.artist-card:hover .artist-image-square {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.artist-image-square::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-image-square::after {
    opacity: 1;
}

.artist-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 5px;
    color: #ffd700;
}

.artist-card p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .artist-carousel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .artist-card,
    .artist-image-square {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .artist-carousel {
        grid-template-columns: 1fr;
    }
    
    .artist-card,
    .artist-image-square {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
}

/* Full Width Banner Section */
.full-width-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .full-width-banner {
        margin: 30px 0;
    }
    
    /* Optional: Add a minimum height for mobile if needed */
    .responsive-banner {
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .full-width-banner {
        margin: 20px 0;
    }
    
    /* For very tall banners, you might want to crop on mobile */
    .responsive-banner {
        object-position: center top; /* Focus on top portion of image */
    }
}


/* Packages Preview */
.packages-preview {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(10, 15, 28, 0.9));
}

.packages-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap                  : 2rem;
}

.package-card {
    background     : rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius  : 25px;
    padding        : 2.5rem;
    border         : 1px solid rgba(255, 215, 0, 0.2);
    transition     : all 0.3s ease;
}

.package-card.premium {
    border    : 2px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.package-card:hover {
    transform : translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.package-header {
    text-align   : center;
    margin-bottom: 2rem;
}

.package-header h3 {
    font-family  : 'Playfair Display', serif;
    font-size    : 1.8rem;
    color        : #ffffff;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size  : 2rem;
    font-weight: 700;
    color      : #ffffff;
}

.package-features {
    list-style   : none;
    margin-bottom: 2rem;
}

.package-features li {
    padding      : 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position     : relative;
    padding-left : 1.5rem;
}

.package-features li:before {
    content    : "✓";
    position   : absolute;
    left       : 0;
    color      : #ffd700;
    font-weight: bold;
}

.package-btn {
    width        : 100%;
    background   : linear-gradient(135deg, #ffd700, #ffed4a);
    color        : #0a0f1c;
    border       : none;
    padding      : 15px;
    border-radius: 25px;
    font-weight  : 600;
    font-size    : 1.1rem;
    cursor       : pointer;
    transition   : all 0.3s ease;
}

.package-btn:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

   /* Add these styles to your existing CSS */
   .package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    text-align: left;
}

.package-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #d1d5db;
}

.package-features li:before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
}

.package-price {
    color: #ffd700;
    font-weight: 600;
    margin: 10px 0;
}

.package-card-compact {
    min-height: 420px; /* Adjust based on your content */
    display: flex;
    flex-direction: column;
}

.package-card-compact > div:last-child {
    margin-top: auto; /* Pushes button to bottom */
}



/* Partners Preview */
.partners-preview {
    background: rgba(10, 15, 28, 0.95);
}

.partnership-options {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 2rem;
    margin-bottom        : 3rem;
}

.partnership-card {
    background     : rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius  : 15px;
    padding        : 2rem;
    text-align     : center;
    border         : 1px solid rgba(255, 215, 0, 0.1);
    transition     : all 0.3s ease;
}

.partnership-card:hover {
    transform   : translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.partnership-card h3 {
    color        : #ffd700;
    margin-bottom: 1rem;
    color        : #645605;
}


   /* Add this to your existing CSS */
   .packages-preview {
    padding: 60px 0;
    background: rgba(10, 15, 28, 0.9);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
.package-card-compact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}*/

.package-card-compact {
    background: linear-gradient(
        135deg, 
        rgba(255, 215, 0, 0.25),
        rgba(100, 86, 5, 0.15)
    );
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}


.package-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.1);
}

.package-title-compact {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.package-btn-compact {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #0a0f1c;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #d1d5db;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}


/* Packages Section Specific Styles */
.packages-section {
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.package-card {
    background: linear-gradient(
        135deg, 
        rgba(255, 215, 0, 0.25),
        rgba(100, 86, 5, 0.15)
    );
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    transform: scale(1.02);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #0a0f1c;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.package-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.package-tagline {
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.package-price-note {
    font-size: 0.9rem;
    color: #9ca3af;
}

.package-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: #ffd700;
    padding-left: 2.5rem;
}

.package-features li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-highlight {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid #ffd700;
}

.package-highlight h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.package-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #0a0f1c;
    border: none;
    padding: 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    border: none;
    background: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #ffd700;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #d1d5db;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 30px;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 3rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card {
        padding: 2rem;
    }

    .package-title {
        font-size: 1.8rem;
    }

    .package-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.5rem;
    }

    .popup-content {
        padding: 1.5rem;
        width: 95%;
    }
}




/* Footer */
#footer {
    background: linear-gradient(135deg, #0a0f1c, #1a1a2e);
    padding   : 60px 0 20px;
}

.footer-content {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap                  : 2rem;
    max-width            : 1200px;
    margin               : 0 auto;
    padding              : 0 20px;
}

.footer-section h3,
.footer-section h4 {
    color        : #ffd700;
    margin-bottom: 1rem;
}

.footer-section p {
    color        : #d1d5db;
    margin-bottom: 0.5rem;
}

.social-links a {
    color          : #ffd700;
    text-decoration: none;
    margin-right   : 1rem;
    transition     : color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top : 1px solid rgba(255, 215, 0, 0.2);
    margin-top : 2rem;
    padding-top: 2rem;
    text-align : center;
    color      : #9ca3af;
}





/* New Hero Section Styles */
/* Page Hero */
.page-hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px; /* To account for fixed header */
}

.hero-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates parallax effect */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(75, 0, 130, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    /* Disable parallax on mobile */
    .hero-parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}


/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.98);
    padding: 20px;
    gap: 15px;
    z-index: 999;
    animation: fadeInDown 0.3s ease-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    /* Disable parallax on mobile */
    .hero-parallax {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}




/* Popup Styles */
.popup-overlay {
    display        : none;
    position       : fixed;
    top            : 0;
    left           : 0;
    width          : 100%;
    height         : 100%;
    background     : rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index        : 2000;
    animation      : fadeIn 0.3s ease;
}

.popup-content {
    position     : absolute;
    top          : 50%;
    left         : 50%;
    transform    : translate(-50%, -50%);
    background   : linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding      : 2rem;
    max-width    : 500px;
    width        : 90%;
    max-height   : 90vh;
    overflow-y   : auto;
    border       : 1px solid rgba(255, 215, 0, 0.3);
}

.popup-header {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    margin-bottom  : 2rem;
    border-bottom  : 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom : 1rem;
}

.popup-header h2 {
    color      : #ffd700;
    font-family: 'Playfair Display', serif;
}

.close-btn {
    background: none;
    border    : none;
    color     : #ffd700;
    font-size : 2rem;
    cursor    : pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ffffff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display      : block;
    color        : #ffd700;
    margin-bottom: 0.5rem;
    font-weight  : 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width        : 100%;
    background   : rgba(255, 255, 255, 0.1);
    border       : 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding      : 12px;
    color        : #ffffff;
    font-size    : 1rem;
    transition   : all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline     : none;
    border-color: #ffd700;
    box-shadow  : 0 0 10px rgba(255, 215, 0, 0.2);
}

.submit-btn {
    width        : 100%;
    background   : linear-gradient(135deg, #ffd700, #ffed4a);
    color        : #0a0f1c;
    border       : none;
    padding      : 15px;
    border-radius: 25px;
    font-weight  : 600;
    font-size    : 1.1rem;
    cursor       : pointer;
    transition   : all 0.3s ease;
}

.submit-btn:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity  : 0;
        transform: translateY(30px);
    }

    to {
        opacity  : 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Slider */
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(75, 0, 130, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.detail-item {
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 2px solid #ffd700;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.hero-actions {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #ffd700;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #ffd700;
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Default background images for desktop */
.swiper-slide:nth-child(1) {
    background-image: url('./images/slider1.jpg');
}

.swiper-slide:nth-child(2) {
    background-image: url('./images/slider-.jpg');
}

.swiper-slide:nth-child(3) {
    background-image: url('./images/slider--.jpg');
}

/* Responsive Styles for Tablet and Desktop */
@media (min-width: 769px) {
    .hero-overlay {
        display: none;
    }

    .hero-details, .hero-actions {
        display: flex;
    }
}

/* Responsive Styles for Landscape on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .swiper-container {
        height: 375px;
    }

    .swiper-slide:nth-child(1) {
        background-image: url('./images/slider1mobile.jpg') !important;
    }

    .swiper-slide:nth-child(2) {
        background-image: url('./images/slider-mobile.jpg') !important;
    }

    .swiper-slide:nth-child(3) {
        background-image: url('./images/slider--mobile.jpg') !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-details {
        gap: 1rem;
    }

    .detail-item {
        padding: 0.8rem 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        bottom: 160px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
    }
}

/* Portrait styles for mobile devices */
@media only screen and (max-width: 768px) and (orientation: portrait) {
    .swiper-container {
        height: auto;
    }

    .swiper-slide {
        height: 100vh;
    }

    .swiper-slide:nth-child(1) {
        background-image: url('./images/slider1portrait.jpg') !important;
    }

    .swiper-slide:nth-child(2) {
        background-image: url('./images/slider-portrait.jpg') !important;
    }

    .swiper-slide:nth-child(3) {
        background-image: url('./images/slider--portrait.jpg') !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-details {
        gap: 1rem;
    }

    .detail-item {
        padding: 0.8rem 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        bottom: 160px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.2rem;
    }
}



/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.95), rgba(20, 25, 38, 0.95));
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-card {
    height: 500px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 28, 0.1), rgba(10, 15, 28, 0.7));
    z-index: 1;
    transition: all 0.5s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.gallery-card:hover::before {
    background: linear-gradient(to bottom, rgba(10, 15, 28, 0), rgba(10, 15, 28, 0.5));
}

/* Enhanced Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #0a0f1c;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section Styles */
.cta-section {
    margin: 80px 0;
}

.cta-container {
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 15, 28, 0.9), rgba(10, 15, 28, 0.9));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}


/* =============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================= */

/* About Hero Section */
.about-hero {
    height: 80vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    background-image: url('./images/hero-image-1.jpg');
    background-size: cover;
    background-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.8), rgba(75, 0, 130, 0.5));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.4;
}

/* About Story Section */
.about-story {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(10, 15, 28, 0.9));
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text {
    padding: 20px;
}

.about-section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.about-lead-text {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-story-text p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-story-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.about-visual-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.about-visual-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* About Values Section */
.about-values {
    background: rgba(10, 15, 28, 0.95);
    padding: 80px 0;
}

.about-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
}

.about-value-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.about-value-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.about-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-radius: 50%;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.about-value-card:hover .about-icon-bg {
    opacity: 0.3;
    transform: scale(1.1);
}

.about-value-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* About Experience Section */
.about-experience {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1), rgba(10, 15, 28, 0.9));
    padding: 80px 0;
}

.about-experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-timeline {
    position: relative;
    padding-left: 2rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ffd700, rgba(255, 215, 0, 0.3));
}

.about-timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.about-timeline-time {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-timeline-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-timeline-content p {
    color: #d1d5db;
    font-size: 0.95rem;
}

.about-experience-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: #d1d5db;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Team Section */
.about-team {
    background: rgba(10, 15, 28, 0.95);
    padding: 80px 0;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-team-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.about-team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.about-team-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0f1c;
}

.about-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-team-image:hover .about-team-overlay {
    opacity: 1;
}

.about-social-links {
    display: flex;
    gap: 1rem;
}

.about-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.about-social-link:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.about-team-info h3 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-team-role {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-team-bio {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About CTA Section */




/* Durban July CTA Section */
/* Durban July CTA Section */
.durban-july-cta {
    padding: 80px 0;
    text-align: center;
    background-color: rgba(10, 15, 28, 0.8);
}

.section-header.center {
    max-width: 800px;
    margin: 0 auto 40px;
}

.durban-july-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 40px;
    max-width: 1200px;
}

.image-card {
    width: 100%;
    max-width: 350px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 0 20px;
    z-index: 2;
}

.durban-july-content {
    max-width: 700px;
    margin: 0 auto;
}

.durban-july-content p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.center {
    text-align: center;
}

@media (max-width: 1024px) {
    .durban-july-images {
        flex-wrap: wrap;
    }
    
    .image-card {
        max-width: 300px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .image-card {
        max-width: 100%;
        height: 350px;
        margin-bottom: 20px;
    }
    
    .durban-july-images {
        flex-direction: column;
        align-items: center;
    }
}

/* Lineup Section Styles */
.lineup-section {
    padding: 80px 0;
    background: rgba(10, 15, 28, 0.95);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.artist-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 28, 0.3), rgba(10, 15, 28, 0.7));
    opacity: 0;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-card h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.artist-card p {
    color: #d1d5db;
    margin-bottom: 20px;
    font-size: 1rem;
}

.artist-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.artist-social a {
    color: #ffd700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.artist-social a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .artist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .artist-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .artist-grid {
        grid-template-columns: 1fr;
    }
    
    .artist-card {
        padding: 25px;
    }
}


/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, rgba(10, 15, 28, 0.95), rgba(20, 25, 38, 0.95));
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.1);
    aspect-ratio: 1 / 1; /* Makes items square */
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: #ffd700;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 15, 28, 0.9), transparent);
    color: #ffffff;
    font-weight: 600;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 20px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #ffd700;
}

.contact-text h3 {
    font-family: 'Playfair Display', serif;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-text p {
    color: #d1d5db;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #ffd700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffd700;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #0a0f1c;
    border: none;
    padding: 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

@media (max-width: 1024px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .contact-info h2,
    .contact-form h2 {
        font-size: 2.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-form {
        padding: 2rem;
    }
}


/* Add these styles to your existing CSS file */

/* Three.js Container */
#threejs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure it stays behind content */
    pointer-events: none; /* Allow clicks to pass through */
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Adjust Three.js particle size for mobile */
    #threejs-container canvas {
        width: 100% !important;
        height: auto !important;
    }
    
    /* Adjust hero content for mobile */
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle, .hero-tagline {
        font-size: 1.2rem !important;
    }
    
    .hero-details {
        flex-direction: column;
        align-items: center;
    }
    
    .detail-item {
        margin-bottom: 10px;
    }
    
    /* Countdown adjustments */
    .countdown-container {
        width: 100%;
    }
    
    .time-unit {
        margin: 0 5px;
    }
    
    .time-unit span {
        font-size: 1.5rem !important;
    }
    
    .time-unit label {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for very small screens */
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle, .hero-tagline {
        font-size: 1rem !important;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .time-unit {
        width: 45%;
        margin: 5px;
    }
}




/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments for About Page */
@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    
    .about-experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.4rem;
    }
    
    .about-section-title {
        font-size: 2.2rem;
    }
    
    .about-experience-stats {
        grid-template-columns: 1fr;
    }
    
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-section-title {
        font-size: 2rem;
    }
    
    .about-cta-title {
        font-size: 2.5rem;
    }
    
    .about-cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card {
        height: 400px;
    }
}




/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-details {
        flex-direction: column;
        gap           : 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items   : center;
    }

    .countdown {
        gap    : 1rem;
        padding: 15px;
    }

    .time-unit span {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-grid,
    .artist-carousel,
    .packages-grid,
    .partnership-options {
        grid-template-columns: 1fr;
    }

    .popup-content {
        padding: 1.5rem;
        width  : 95%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .countdown {
        flex-wrap      : wrap;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

