/* Base Variables & Reset */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f4f6f8;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --color-pink: #d100b6;
    --color-orange: #ffa500;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

body {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

.section-padding {
    padding: 6rem 5%;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 800;
}

.section-title span {
    background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mt-4 {
    margin-top: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 5%;
}

.logo-container .logo {
    height: 48px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    color: var(--text-secondary);
    transition: 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--color-pink);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: linear-gradient(90deg, var(--color-pink), var(--color-orange));
    transition: width 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
}


/* New Hero Element Classes */
.hero-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(209, 0, 182, 0.4);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-origin,
.hero-origin span {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 2.5rem;
}


.orange-text {
    color: var(--color-orange);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    backdrop-filter: blur(5px);
}


.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(209, 0, 182, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.4);
}

.cta-button.outline {
    background: transparent;
    color: var(--color-pink);
    border: 2px solid var(--color-pink);
    box-shadow: none;
}

.cta-button.outline:hover {
    background: var(--color-pink);
    color: #fff;
}

/* Home Stats Section */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-box h3 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--color-pink);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 2.5rem 2rem;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Mini Gallery Teaser */
.mini-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mini-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.mini-gallery img:hover {
    transform: scale(1.02);
    filter: brightness(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Featured Designers */
.designer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.designer-card {
    transition: 0.4s;
}

.designer-card:hover {
    transform: translateY(-10px);
}

.designer-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.designer-card:hover .designer-img {
    border-color: var(--color-pink);
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.4);
}

.designer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.designer-card p {
    color: var(--color-orange);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Sponsors Marquee Carousel */
.sponsors-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.sponsors-container::before,
.sponsors-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.sponsors-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary) 0%, transparent 100%);
}

.sponsors-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary) 0%, transparent 100%);
}

.sponsors-track {
    display: inline-flex;
    align-items: center;
    gap: 5rem;
    animation: marquee 25s linear infinite;
    padding-left: 5rem;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsors-track img {
    height: 55px;
    filter: grayscale(1) opacity(0.6);
    transition: 0.4s ease;
    cursor: pointer;
}

.sponsors-track img:hover {
    filter: grayscale(0) opacity(1) drop-shadow(0 10px 15px rgba(209, 0, 182, 0.3));
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Newsletter CTA */
.newsletter-banner {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
    padding: 6rem 5%;
    text-align: center;
    color: #fff;
    border-radius: 24px;
    max-width: 1200px;
    margin: 0 auto 6rem;
    box-shadow: 0 20px 50px rgba(209, 0, 182, 0.3);
}

.newsletter-banner h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.newsletter-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 40px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    outline: none;
}

.newsletter-form button {
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    border: none;
    background: #fff;
    color: var(--color-pink);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form button:hover {
    background: var(--text-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media(max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Gallery Masonry and Videos (Subpages) */
.masonry-grid {
    columns: 1;
    column-gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        columns: 3;
    }
}

@media (min-width: 1440px) {
    .masonry-grid {
        columns: 4;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.masonry-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: 0.6s ease;
}

.masonry-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #000;
    border: 1px solid var(--glass-border);
    position: relative;
}

.video-card video {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* Contact Form Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--glass-border);
    text-align: left;
}

.contact-form h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-form p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: var(--bg-secondary);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(209, 0, 182, 0.2);
}

.map-wrapper {
    height: 100%;
    min-height: 480px;
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--glass-border);
}

.map-wrapper iframe {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    filter: none;
}

/* Schedule / Itinerary */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    text-align: left;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bg-tertiary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-pink);
    border: 4px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--color-orange);
}

.time {
    display: block;
    font-weight: 800;
    color: var(--color-pink);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
}

.timeline-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--color-pink);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: var(--color-orange);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-question.active+.faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

/* Professional Footer */
.footer {
    background: var(--bg-tertiary);
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--color-pink);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--color-orange);
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
    filter: grayscale(1);
    transition: 0.3s;
    display: inline-block;
}

.footer-logo:hover {
    filter: grayscale(0);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        flex-direction: column;
    }
}

/* Premium Dark Footer Overrides */
.footer {
    background: #0f1014 !important;
    border-top: none !important;
}

.footer-col h4 {
    color: #fff !important;
}

.footer-col h4::after {
    background: linear-gradient(90deg, var(--color-pink), var(--color-orange)) !important;
}

.footer-col ul li a,
.footer-col p {
    color: #a0a5ad;
}

.footer-col ul li a:hover {
    color: #fff !important;
}

.footer-logo {
    filter: none !important;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 15px rgba(209, 0, 182, 0.5)) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #70757d !important;
    padding-top: 3rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 0;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-orange) 100%);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(209, 0, 182, 0.4);
    color: #fff;
}

/* Upcoming Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    transition: 0.4s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-pink);
}

.event-image {
    height: 260px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
    filter: contrast(1.1);
}

.event-content {
    padding: 2.5rem;
}

.event-date {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--color-orange);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.event-content p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

/* Global Header for subpages */
.page-header {
    background: var(--bg-secondary);
    padding: 10rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 4rem;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
}

.page-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-primary);
    }
}

/* Animations */
.hidden {
    opacity: 0;
}

.slide-up {
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-up {
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Hero Contrast & Legibility Overrides */
.hero .overlay {
    background: rgba(0, 0, 0, 0.45) !important;
}

.hero-content {
    background: rgba(10, 10, 15, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3.5rem 2.5rem !important;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    width: 85%;
    margin: 0 auto;
    z-index: 10;
    color: #ffffff !important;
}

.hero-content p,
.hero-content span:not(.gradient-text):not(.orange-text) {
    color: #ffffff !important;
}


/* MASSIVE MOBILE RESPONSIVENESS OVERHAUL */
@media (max-width: 768px) {

    /* Hero fixes: Smaller section, smaller text */
    .hero {
        height: auto !important;
        min-height: 60vh !important;
        padding-top: 90px !important;
        padding-bottom: 30px !important;
    }

    .hero-content {
        padding: 1.2rem 1rem !important;
        width: 90% !important;
        border-radius: 12px !important;
        backdrop-filter: blur(10px);
    }

    .hero-pill {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.7rem !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-title {
        font-size: 1.35rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.8rem !important;
    }

    .hero-desc {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.4 !important;
    }

    .hero-origin {
        font-size: 0.8rem !important;
        margin-bottom: 1.2rem !important;
    }

    .hero-btns {
        gap: 0.8rem !important;
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .cta-button {
        padding: 0.7rem 1rem !important;
        font-size: 0.75rem !important;
        width: 100% !important;
        max-width: 220px;
    }

    /* Grid fixes to stop horizontal overflow */
    .card-grid,
    .events-grid,
    .designer-grid,
    .mini-gallery {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Marquee fixes */
    .sponsors-container::before,
    .sponsors-container::after {
        width: 40px !important;
    }

    .sponsors-track {
        gap: 2rem !important;
        padding-left: 2rem !important;
    }

    .sponsors-track img {
        height: 35px !important;
    }

    /* Section padding */
    .section-padding {
        padding: 3rem 5% !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    /* Footer layout */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .footer-col {
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.2rem !important;
    }
}