/* Content Container (Foreground) */
.ContentContainer {
    position: relative;
    display: block;
    z-index: 1;
}
/* --- HERO SECTION (FOREGROUND) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 4rem 3rem;
    z-index: 1;
    /* Opaque background to cover parallax layer when scrolling */
    background: linear-gradient(180deg,rgba(250, 227, 160, 1) 0%, rgba(246, 246, 246, 1) 13%, rgba(245, 245, 245, 1) 42%, rgba(250, 228, 162, 1) 54%, rgba(250, 228, 162, 1) 63%, rgba(255, 255, 255, 1) 73%, rgba(255, 255, 255, 1) 100%);
}

.hero-title {
    font-family: 'Astro 867', 'Montserrat', sans-serif;
    font-size: clamp(3rem, 12vw, 4rem);
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease 0.2s forwards;
    color: #dfc833;
}

.creative {
    /* font-family: 'Pinyon Script', cursive; */
    font-family: 'Aneisha Script', sans-serif;
    font-weight: 500 !important;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    letter-spacing: 2px; 
}

.present{
    font-size: 2.5rem;
    color: var(--bg);
    margin-bottom: 0.5rem;
}

.join{
    color: var(--bg);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    max-width: 80%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.4s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HERO GRID STYLES --- */
.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.8s forwards;
}

.grid-left, .grid-right {
    flex: 1;
}

.grid-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-center img {
    max-width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.grid-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.grid-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg);
    line-height: 1.2;
}

.logo-small {
    width: 200px;
    height: auto;
}

.grid-right {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.viha-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1rem);
    font-weight: 700;
    color: var(--bg);
    line-height: 1.3;
}

.viha-text {
    font-size: 1.3rem;
    color: var(--bg);
    line-height: 1.6;
    margin-top: 0.5rem;
    font-weight: 600;
}

.logo-viha {
    width: 200px;
    height: auto;
    margin: 5px 0;
}

/* --- LIVE SECTION STYLES --- */
.live-section {
    margin-top: 5rem;
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
    width: 70%;
}

.live-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    color: var(--bg);
}

.live {
    color: red;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.live::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    filter: blur(4px);
    z-index: -1;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.5); }
    100% { opacity: 0.5; transform: scale(1); }
}

/* --- ANNOUNCE SECTION STYLES --- */
.Announce {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 4rem 3rem;
    z-index: 1;
    background: linear-gradient(180deg,rgba(246, 246, 246, 1) 0%, rgba(252, 252, 252, 1) 41%, rgba(250, 228, 162, 1) 71%, rgba(250, 228, 162, 1) 87%, rgba(255, 255, 255, 1) 100%);
}

.annonce-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
}

.vihaball {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
}

.viha-gif {
    width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.vihaball-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.viha-logo-inline {
    width: 120px;
    height: auto;
}

.vihaball-text p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg);
}

.annonce-card-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.annonce-individual-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    width: 30%;
    border-radius: 16px;
    overflow: hidden; 
    transition: transform 0.3s ease;
}

.card-gap{
    margin-top: 3rem;
}

.annonce-individual-card:hover {
    transform: translateY(-5px);
}

.annonce-individual-card img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.annonce-text {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    color: var(--bg);
}

.air-color { color: #007bff; }
.cla-color { color: #dc3545; }

/* --- UNVEIL SECTION STYLES (FIXED) --- */
.Unveil {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 6rem 3rem;
    z-index: 1;
}

.unveil-main-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    width: 100%;
    max-width: 1400px;
    justify-content: center;
}

.unveil-des {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--muted);
    max-width: 800px; 
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.unveil-main-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg);
}

.unveil-layout-container {
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
    align-items: flex-start;
}

.unveil-left-grid {
    flex: 2; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.unveil-right-sidebar {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.unveil-product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 8px solid rgb(225, 229, 235);
}

.unveil-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-header {
    background: #f5f5f5;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.card-header h6 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.logo-card {
    width: 80px;
    height: auto;
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    min-height: 200px; 
    justify-content: center;
}

.product-logo {
    width: 120px; 
    height: auto;
    object-fit: contain;
}

.card-body p {
    font-size: 1rem;
    color: var(--bg);
    font-weight: 700;
}

.sidebar-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.sidebar-image {
    width: 100%;
    height: auto;
    display: block;
}

/* fotter */
.footer-section {
    color: var(--bg); 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 80vh; 
    gap: 2rem;
    background: linear-gradient(
        142deg, 
        rgba(246, 246, 246, 1) 0%, 
        rgba(252, 252, 252, 0.9) 55%, 
        rgba(250, 228, 162, 1) 78%, 
        rgba(250, 228, 162, 0.7) 86%
    );
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
}

.footer-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: #000000; 
}

.footer-thanks {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.footer-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image {
    width: 100%;
    height: auto;
    max-height: 850px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.1));
}

/* Responsive */
@media (max-width: 1100px) {
    .unveil-layout-container {
        flex-direction: column; 
        align-items: center;
    }

    .unveil-right-sidebar {
        position: static; 
        flex-direction: row; 
        align-items: flex-start;
    }
    
    .unveil-right-sidebar > div {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .grid-left h2 { text-align: center; }
    .grid-center img { max-height: 400px; }
    .logo-small { margin: 0 auto 1rem auto; }
    .logo-viha { margin: 5px auto; }
    .grid-right { gap: 3rem; align-items: center; }

    .annonce-card-container {
        flex-direction: column;
        gap: 2rem;
    }
    .annonce-individual-card { width: 100%; }
    .card-gap { margin-top: 0; }
    .vihaball { padding: 2rem; flex-direction: column; }
    .vihaball-text { align-items: center; }

    .unveil-left-grid {
        grid-template-columns: 1fr; 
    }

    .unveil-right-sidebar {
        flex-direction: column; 
    }

    .sidebar-image-wrapper{
        display:none;
    }
    
    .unveil-right-sidebar > div {
        width: 100%;
    }

    .unveil-main-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-section {
        flex-direction: column-reverse; 
        text-align: center;
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .footer-content {
        align-items: center; 
        max-width: 100%;
    }

    .footer-text {
        font-size: 1.2rem;
    }

    .footer-image-wrapper {
        width: 100%;
        max-width: 300px; 
    }
}

@media (max-width: 768px) {
    .hero, .Announce, .Unveil {
        padding: 4rem 1.5rem;
    }
    .live-section { width: 100%; }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* section star minds */
.star-minds {
    padding: clamp(40px, 8vw, 150px) 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.star-minds-content {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 2vw, 40px);
    position: relative;
    min-height: 600px;
}

.star-minds-left {
    flex: 0 0 clamp(30%, 40%, 45%);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 20px);
    align-items: flex-start;
    position: relative;
    min-height: 500px;
}

.star-minds-right {
    flex: 0 0 clamp(55%, 60%, 70%);
    position: relative;
    margin-top: 127px;
}

.star-minds-images {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 15px);
    width: 100%;
}

.cup-png {
    width: clamp(250px, 35vw, 550px);
    height: auto;
    border-radius: 12px;
    position: absolute;
    left: clamp(-20px, -2vw, 0px);
    top: clamp(-100px, -12vw, -150px);
    z-index: 1;
}

.art-logo-png {
    width: clamp(200px, 28vw, 342px);
    height: auto;
    border-radius: 12px;
    position: absolute;
    left: clamp(53px, 20vw, 160px);
    top: clamp(300px, 38vw, 460px);
    z-index: 2;
}

.abstract-png {
    width: clamp(280px, 42vw, 250px);
    height: auto;
    border-radius: 12px;
    position: absolute;
    right: clamp(-10px, -1vw, 0px);
    top: clamp(-300px, -18vw, -200px);
    z-index: 1;
}

.star-main-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 15px);
    margin: clamp(100px, 20vh, 200px) 0 clamp(10px, 2vw, 15px) 0;
}

.star-main-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-top: 20px;
    color: #1a1a1a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.logo-small {
    width: clamp(120px, 20vw, 320px);
    height: auto;
    flex-shrink: 0;
}

.star-minds-right p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    line-height: 1.7;
    color: #000000;
    margin-top: clamp(15px, 4vw, 20px);
    font-weight: 700;
    letter-spacing: 1px;
    max-width: 90%;
}

.star-recog {
    color: #fbbc05;
    font-weight: 600 !important;
}

/* Tablet & Large Mobile */
@media (max-width: 1024px) {
    .star-minds-content {
        gap: 20px;
    }
    
    .cup-png {
        left: -10px;
     
    }
}

@media (max-width: 1300px) {
    .art-logo-png {
        left: 75px;
    }
}
/* Mobile - Hide abstract-png, 2-column layout */
@media (max-width: 768px) {
    .star-minds-content {
        flex-direction: row;        /* Row instead of column */
        gap: 25px;
        align-items: flex-start;    /* Top alignment */
        padding: 20px;
    }
    
    .star-minds-left {
        flex: 0 0 45%;              /* Left: 45% for images */
        width: 45%;
        min-height: auto !important;  /* 🔥 FIX 1: Remove min-height */
        height: auto;
    }
    
    .star-minds-right {
        flex: 0 0 55%;              /* Right: 55% for text */
        width: 55%;
        margin-top: 0 !important; 
    }
    
    /* HIDE abstract-png on mobile/tablet */
    .abstract-png {
        display: none !important;
    }
    
    /* Images become relative & centered */
    .cup-png,
    .art-logo-png {
        position: relative !important;
        margin: 15px auto;
        left: 0 !important;
        top: 0 !important;
        max-width: 200px;
        width: 100%;
    }
    
    .star-main-header {
        margin: 20px 0 15px 0;
        flex-direction: column;
        text-align: left;
    }
    
    .star-main-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        text-align: left;
    }
    
    .star-minds-right p {
        max-width: 100%;
        padding: 0;
        margin-top: 15px;
        text-align: left;
    }
}

/* Small Mobile - Single column, images horizontal */
@media (max-width: 480px) {
    .star-minds {
        padding: 30px 15px;
    }
    
    .star-minds-content {
        flex-direction: column;     /* Stack vertically */
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .star-minds-left,
    .star-minds-right {
        flex: none;
        width: 100%;
    }
    
    .star-minds-images {
        flex-direction: row;        /* Images side by side */
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .cup-png,
    .art-logo-png {
        max-width: 120px;           /* Smaller for small screens */
        margin: 0;
    }
    
    .star-main-header {
        text-align: center;
    }
    
    .star-main-header h1 {
        text-align: center;
    }
    
    .star-minds-right p {
        text-align: center;
        padding: 0 10px;
    }
}

/* Tablet (between 481px - 768px) - Keep 2-column */
@media (min-width: 481px) and (max-width: 768px) {
    .cup-png,
    .art-logo-png {
        max-width: 220px;
    }
}

/* VENUE SECTION */
.venue-section {
    padding: clamp(60px, 10vw, 120px) 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background: linear-gradient(
        145deg, 
        rgba(246, 246, 246, 1) 0%, 
        rgba(252, 252, 252, 0.9) 45%, 
        rgba(250, 228, 162, 1) 55%, 
        rgba(250, 228, 162, 0.7) 100%
    );
    background: 
        linear-gradient(
            145deg, 
            rgba(246, 246, 246, 1) 0%, 
            rgba(252, 252, 252, 0.9) 45%, 
            rgba(250, 228, 162, 1) 55%, 
            rgba(250, 228, 162, 0.7) 80%,
            rgba(250, 228, 162, 0.4) 95%
        ),
        linear-gradient(to bottom, transparent 70%, rgba(255,255,255,0.9) 85%, rgba(255,255,255,1) 100%);
    background-blend-mode: overlay;
}

.venue-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vw, 4px);
}

.venue-title {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
}

.venue-name {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
}

.venue-image {
    width: clamp(280px, 60vw, 550px);
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.venue-details {
    display: flex;
    flex-direction: row;
    gap: clamp(15px, 3vw, 25px);
    align-items: center;
    padding: clamp(20px, 4vw, 40px);
    max-width: 1000px;
    width: 100%;
}

.venue-address {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 20px);
    width: 70%;
}

.location-icon {
    width: 50px;
    height: auto;
    margin-top: 4px;
}

.address-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.venue-time {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #000;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.time-label {
    color: #fbbc05;
    font-size: clamp(1rem, 2.8vw, 1.3rem);
}

/* Tablet */
@media (max-width: 1024px) {
    .venue-section {
        padding: clamp(50px, 8vw, 100px) 0;
    }
    
    .venue-details {
        padding: clamp(20px, 5vw, 35px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .venue-content {
        gap: 25px;
    }
    
    .venue-details {
        margin: 0 15px;
        padding: clamp(25px, 6vw, 35px);
    }
    
    .venue-address {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .address-text {
        text-align: center;
        max-width: 280px;
    }
    
    .venue-time {
        flex-direction: column;
        gap: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .venue-section {
        padding: 40px 15px;
    }
    
    .venue-name {
        letter-spacing: 1px;
    }
    
    .venue-details {
        margin: 0 10px;
        flex-direction: column;
        padding: 25px 20px;
    }
}



.chief-guest-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.guest-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.guest-card {
    width: 200px;
    text-align: center;
}

.guest-card img {
    width: 200px;
    height: 200px;
    border-radius: 25%;
    object-fit: cover;
    border: 4px solid #ddd;
    transition: 0.3s;
}
.guest-card1 img {
    width: 200px;
    height: 200px;
    border-radius: 25%;
    object-fit: cover;
    
   
   
    transition: 0.3s;
}

.guest-card img:hover {
    transform: scale(1.05);
}

.guest-card h4 {
    margin-top: 15px;
    font-size: 18px;
}

.guest-card p {
    font-size: 14px;
    color: #555;
}

/* Highlight Center Guest */
.highlight img {
    width: 230px;
    height: 230px;
    border: 5px solid #007bff;
}
.img1,.img3{
    margin-top: 80px;
}
.img4{
    margin-bottom: -150px;
  
  
}
.guest-row1 {
    display: flex;
    justify-content: center;
    gap: 250px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.guestfont{
      color: #dfc833;
}

.back-button-wrapper {
    position: fixed;        /* stays visible while scrolling */
    top: 20px;
    left: 20px;
    z-index: 999;
}

.back-button {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #dfc833;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}