/* public/css/style.css */

/* Global Styles & Variables - Clean, Aesthetic, Minimum Neon */
:root {
    --bg-dark: #121212;
    /* Deep, rich black */
    --bg-medium: #1e1e1e;
    /* Slightly lighter for cards/sections */
    --bg-light: #2a2a2a;
    /* Even lighter for subtle element backgrounds */

    --color-primary-accent: #00e676;
    /* Vibrant Green - used sparingly for accents */
    --color-secondary-accent: #8e24aa;
    /* Deep Purple - used sparingly for accents */
    --color-text-highlight: #00b0ff;
    /* Bright Blue - for specific text highlights */

    --text-primary: #f0f0f0;
    /* Main text color - soft white */
    --text-secondary: #b0b0b0;
    /* Secondary text color - light grey */
    --text-muted: #707070;
    /* Muted text for small details */

    /* Subtle Shadows - for depth without strong glow */
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-deep: 0 8px 20px rgba(0, 0, 0, 0.5);

    /* Very subtle accent glows */
    --glow-primary: 0 0 8px rgba(0, 230, 118, 0.2);
    --glow-secondary: 0 0 8px rgba(142, 36, 170, 0.2);
    --glow-blue: 0 0 8px rgba(0, 176, 255, 0.2);

    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    /* Slightly larger for a softer look */
    --transition-speed: 0.3s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark) !important;
    color: var(--text-primary) !important;
    line-height: 1.7;
    /* Improved readability */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    /* Wider container for spacious feel */
    margin: 0 auto;
    padding: 0 2.5rem;
    /* More generous padding */
}

/* General Section Padding */
main {
    min-height: 100vh;
    padding-top: 6.5rem;
    /* Account for fixed navbar */
    padding-bottom: 5rem;
    background-color: var(--bg-dark) !important;
}

/* Headings - Clean and impactful */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary) !important;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    /* Tighter for modern look */
}

/* Animations (Subtle) */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.95;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}


/* Navbar - Clean and functional */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: rgba(18, 18, 18, 0.95) !important;
    /* Slightly transparent dark */
    backdrop-filter: blur(10px);
    /* Subtle blur */
    box-shadow: var(--shadow-subtle);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle separator */
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    /* Matches container padding */
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.navbar-logo img {
    height: 4rem;
    filter: brightness(1.2);
    /* Slightly brighter logo */
}

.navbar-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    letter-spacing: 0.02em;
}

.navbar-links {
    display: none;
    gap: 2.5rem;
}

.navbar-links a {
    color: var(--text-secondary) !important;
    /* Muted by default */
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-speed);
    font-weight: 500;
    font-size: 1rem;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary-accent);
    /* Green accent on hover */
    transition: width var(--transition-speed);
}

.navbar-links a:hover {
    color: var(--text-primary) !important;
    /* Brighten on hover */
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-links .active {
    color: var(--color-primary-accent) !important;
    /* Green for active link */
    font-weight: 600;
}

.navbar-links .active::after {
    width: 100%;
    background-color: var(--color-primary-accent);
}

.mobile-menu-button {
    color: var(--text-primary) !important;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    font-size: 2rem;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: background-color var(--transition-speed);
}

.mobile-menu-button:hover {
    background-color: var(--bg-light);
}

.mobile-menu {
    display: none;
    background-color: var(--bg-medium) !important;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 2.5rem;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.mobile-menu a:hover {
    background-color: var(--bg-light) !important;
    color: var(--text-primary) !important;
}

/* Responsive Navbar */
@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }

    .mobile-menu-button,
    .mobile-menu {
        display: none;
    }
}


/* Buttons - Clean and solid */
.btn-primary {
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    background-color: var(--color-primary-accent);
    /* Solid green */
    color: var(--bg-dark) !important;
    /* Dark text on bright button */
    border: none;
    transition: all var(--transition-speed);
    transform: scale(1);
    box-shadow: var(--shadow-subtle);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: scale(1.02);
    background-color: #00c266;
    /* Slightly darker green on hover */
    box-shadow: var(--shadow-deep);
}

.brochure {
    color: red;
}

.location-icon {
    width: 6rem;
    border: 0;
    position: relative;
    padding: 0;
}

.map-h1 {
    display: flex;
    flex-direction: row;
    margin: 0;
    justify-content: center;
    padding-bottom: 1rem;
}

.map {
    padding: 0.2rem 0rem;
    margin-left: 1.4rem;
    margin-right: 1.4rem;
    width: 90%;
    border: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.map-details {
    color: var(--color-primary-accent);
    margin-left: 2rem;
}

.btn-secondary {
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    background-color: transparent !important;
    color: var(--color-primary-accent) !important;
    border: 1px solid var(--color-primary-accent) !important;
    transition: all var(--transition-speed);
    transform: scale(1);
    box-shadow: var(--glow-primary);
    /* Subtle green glow */
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    transform: scale(1.02);
    background-color: rgba(0, 230, 118, 0.08) !important;
    /* Subtle background fill */
    color: var(--text-primary) !important;
    box-shadow: var(--shadow-subtle);
}

.btn-accent {
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    background-color: var(--color-secondary-accent);
    /* Solid purple */
    color: var(--text-primary) !important;
    border: none;
    transition: all var(--transition-speed);
    transform: scale(1);
    box-shadow: var(--shadow-subtle);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-accent:hover {
    transform: scale(1.02);
    background-color: #7d1f97;
    /* Slightly darker purple on hover */
    box-shadow: var(--shadow-deep);
}


/* Hero Section - Clean, focused, less busy */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 2.5rem;
}

.hero-section video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
    z-index: 1;
    position: relative;
    text-align: center;
    color: #dc0000;
    padding: 10px;
}





.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) grayscale(0.5);
    /* Darker, slightly desaturated for professionalism */
    transform: scale(1.02);
    /* Subtle zoom */
    transition: transform 0.5s ease-out;
}

.hero-section:hover .hero-background {
    transform: scale(1.01);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 70%);
    opacity: 0.9;
    /* More opaque at bottom */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 3rem 4rem;
    background-color: rgba(0, 0, 0, 0.5);
    /* Clear background for text */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.6rem;
    color: var(--text-secondary) !important;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

/* Responsive Hero */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 2rem;
    }


}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 4.8rem;
    }

    .hero-subheadline {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        line-height: 1.05;
    }
}


/* Countdown Section - Clean and clear */
.countdown-section {
    padding: 5rem 0;
    background-color: var(--bg-medium) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.countdown-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 3rem;
    text-align: center;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--text-primary) !important;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background-color: var(--bg-dark);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-subtle);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-deep);
}

.countdown-item span {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary-accent) !important;
    /* Green accent for numbers */
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-item p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--text-secondary) !important;
}

/* Responsive Countdown */
@media (min-width: 768px) {
    .countdown-display {
        gap: 3rem;
    }

    .countdown-item span {
        font-size: 5rem;
    }
}


/* What to Expect Section - Clean cards, focus on content */
.expect-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.expect-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.expect-section p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.expect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.expect-card {
    background-color: var(--bg-medium);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all var(--transition-speed);
}

.expect-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: var(--color-primary-accent);
    /* Accent border on hover */
}

.expect-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.expect-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Expect Section */
@media (min-width: 640px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .expect-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Floating Buy Tickets Button - Clean and subtle */
.floating-ticket-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-primary-accent);
    color: var(--bg-dark) !important;
    padding: 1rem 1.6rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.floating-ticket-btn:hover {
    transform: translateY(-4px) scale(1.02);
    background-color: #00c266;
    box-shadow: var(--shadow-deep);
}

.floating-ticket-btn span:last-child {
    font-size: 1.3rem;
}


/* Scroll to Top Button - Clean and functional */
.scroll-to-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--bg-light) !important;
    color: var(--text-primary) !important;
    padding: 0.9rem;
    border-radius: 50%;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-speed);
    display: none;
    z-index: 50;
    border: none;
    cursor: pointer;
}

.scroll-to-top-btn:hover {
    background-color: var(--color-primary-accent) !important;
    color: var(--bg-dark) !important;
    box-shadow: var(--shadow-deep);
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top-btn svg {
    width: 1.6rem;
    height: 1.6rem;
}


/* Footer - Professional and subtle */
.footer {
    background-color: var(--bg-dark) !important;
    padding: 3rem 0;
    color: var(--text-muted) !important;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-credit {
    font-size: 1.05rem;
    display: flex;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-credit span {
    color: var(--color-primary-accent) !important;
    font-weight: 600;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-logo {
    height: 8rem;
    transition: transform var(--transition-speed), filter var(--transition-speed);
    filter: brightness(1.2);
    /* Keep logo bright */
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: brightness(1.5) drop-shadow(0 0 8px rgba(0, 176, 255, 0.3));
    /* Subtle blue glow on hover */
}

.footer-tooltip {
    position: absolute;
    bottom: 100%;
    margin-bottom: 0.6rem;
    display: none;
    padding: 0.4rem 0.9rem;
    background-color: var(--bg-light) !important;
    color: var(--text-primary) !important;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    white-space: nowrap;
    box-shadow: var(--shadow-subtle);
}

.footer-logo-wrapper:hover .footer-tooltip {
    display: block;
    animation: fadeIn 0.5s ease-out forwards;
}

.brainware-academic-synergy {
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    color: var(--text-muted);
}


/* Tickets Page - Clean cards, clear info */
.tickets-header {
    font-size: 3rem;
    margin-top: 1rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 3.5rem;
    text-align: center;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ticket-card {
    background-color: var(--bg-medium);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-speed);
    transform: scale(1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-deep);
    border-color: var(--color-primary-accent);
    /* Accent border on hover */
}


.ticket-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 1rem;
}


.ticket-card .price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-primary-accent) !important;
    /* Green accent for price */
    margin-bottom: 1.5rem;
}

.ticket-card ul {
    text-align: left;
    color: var(--text-secondary) !important;
    margin-bottom: 2rem;
    list-style: none;
    padding-left: 0;
}

.ticket-card ul li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-secondary);
    color: white;
    font-weight: bolder;
}

.ticket-card ul li::before {
    content: '✅';
    /* Simple checkmark for clarity */
    /* color: var(--color-primary-accent);*/
    font-size: 1.1em;
    line-height: 1;
    margin-top: 0.1em;
    flex-shrink: 0;
}


/* Registration Modal - Clean, professional, minimal neon */
.registration-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.registration-modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-medium);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-deep);
    max-width: 30rem;
    width: 100%;
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth ease-out */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-secondary) !important;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition-speed);
}

.modal-close-btn:hover {
    color: var(--color-primary-accent) !important;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem;
    text-align: center;
}

.registration-form div {
    margin-bottom: 1rem;
    width: 90%;
}

.registration-form label {
    display: block;
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.registration-form input,
.registration-form textarea,
.registration-form select {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
    appearance: none;
    border: 1px solid var(--bg-light) !important;
    border-radius: var(--border-radius-sm);
    width: 100%;
    padding: 0.7rem 1rem;
    background-color: var(--bg-dark) !important;
    color: var(--text-primary) !important;
    line-height: 1.5;
    transition: all var(--transition-speed);
    font-size: 0.95rem;
}

.registration-form input:focus,
.registration-form textarea:focus,
.registration-form select:focus {
    outline: none;
    border-color: var(--color-text-highlight) !important;
    /* Blue highlight on focus */
    box-shadow: 0 0 0 2px rgba(0, 176, 255, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.registration-form .btn-primary {
    width: 100%;
    padding: 1rem 0;
    margin-top: 1.5rem;
}


.qr-img {
    max-width: 15rem;
    height: auto;
    margin: 1.5rem auto;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--color-primary-accent);
    box-shadow: var(--shadow-subtle);
    display: block;
    transition: all var(--transition-speed);
}

.qr-img:hover {
    box-shadow: var(--shadow-deep);
    transform: scale(1.01);
}

#countdown,
#countdownTimerIndi {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-highlight) !important;
    margin-top: 1rem;
}

#message,
#messageIndi {
    margin-top: 1.2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary-accent);
}

#message.error,
#messageIndi.error {
    color: var(--color-secondary-accent);
}

/* Schedule Page - Clean timeline */
.schedule-header {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 3.5rem;
    text-align: center;
}

.timeline-wrap {
    position: relative;
    padding: 3rem;
    height: 100%;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    border-left: 2px solid rgba(255, 255, 255, 0.1) !important;
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-1px);
    background: linear-gradient(to bottom, transparent, var(--color-primary-accent) 20%, var(--color-secondary-accent) 80%, transparent);
    opacity: 0.5;
}

.timeline-event {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.timeline-event .placeholder-div {
    flex: 1;
    width: 45%;
}

.timeline-event-marker {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    box-shadow: var(--shadow-subtle);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    transition: all var(--transition-speed);
    border: 2px solid var(--color-primary-accent);
}

.timeline-event:nth-child(even) .timeline-event-marker {
    border-color: var(--color-secondary-accent);
}

.timeline-event-marker h1 {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary) !important;
    margin: auto;
}

.timeline-event-marker:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-blue);
}

.timeline-event-content {
    background-color: var(--bg-medium);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    width: 38%;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-speed);
}

.timeline-event:nth-child(odd) .timeline-event-content {
    text-align: left;
}

.timeline-event:nth-child(even) .timeline-event-content {
    text-align: right;
}

.timeline-event-content:hover {
    box-shadow: var(--shadow-deep);
    border-color: var(--color-text-highlight);
}

.timeline-event-content h3 {
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-primary) !important;
}

.timeline-event-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--text-secondary) !important;
}

.timeline-event-content .highlight-text {
    color: var(--color-text-highlight) !important;
    font-weight: 600;
    font-style: italic;
}

.mobile-menu-button-wrapper {
    display: none;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-wrap {
        padding: 0 1rem;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-button-wrapper {

        display: block;
    }

    .timeline-line {
        left: 20px;
        transform: translateX(-1px);
    }

    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
        width: 21rem;
    }

    .timeline-event .placeholder-div {
        display: none;
    }

    .timeline-event-marker {
        position: absolute;
        left: 20px;
        transform: translateX(-50%);
        margin-left: 0;
    }

    .timeline-event-content {
        width: calc(100% - 3rem);
        text-align: left !important;
        margin-left: 3rem;
        border-left: 2px solid;
        padding-left: 1.2rem;
        border-right: none;
        box-shadow: none;
    }

    .timeline-event:nth-child(odd) .timeline-event-content {
        border-color: var(--color-primary-accent) !important;
    }

    .timeline-event:nth-child(even) .timeline-event-content {
        border-color: var(--color-secondary-accent) !important;
    }
}


/* Gallery Page */
.gallery-header {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 3.5rem;
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-embed {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-speed);
}

.video-embed:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-deep);
    border-color: var(--color-text-highlight);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-deep);
    border-color: var(--color-primary-accent);
}

.gallery-item img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-speed);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.lightbox.show {
    visibility: visible;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-primary) !important;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.lightbox-close:hover {
    color: var(--color-primary-accent) !important;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-deep);
    border: 2px solid var(--color-text-highlight);
}


/* Contact Page */
.contact-container {
    background-color: var(--bg-medium);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 50rem;
    width: 100%;
    margin: auto;
    text-align: center;
}

.contact-logo {
    height: 5rem;
    margin: 0 auto 2rem;
    filter: brightness(1.2);
}

.contact-header {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form div {
    text-align: left;
}

.contact-form label {
    display: block;
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
    appearance: none;
    border: 1px solid var(--bg-light) !important;
    border-radius: var(--border-radius-sm);
    width: 90%;
    padding: 0.7rem 1rem;
    background-color: var(--bg-dark) !important;
    color: var(--text-primary) !important;
    line-height: 1.5;
    transition: all var(--transition-speed);
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-text-highlight) !important;
    box-shadow: 0 0 0 2px rgba(0, 176, 255, 0.3), inset 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 0;
    margin-top: 2rem;
}


.social-links-section {
    margin-top: 3.5rem;
}

.social-links-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 1.8rem;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon img {
    height: 2.5rem;
    width: 2.5rem;
    filter: grayscale(80%) brightness(150%);
    transition: filter var(--transition-speed), transform var(--transition-speed);
}

.social-icon img:hover {
    filter: grayscale(0%) brightness(100%) drop-shadow(0 0 8px var(--color-primary-accent));
    /* Colorize and subtle glow */
    transform: scale(1.1);
}


/* About Page */
.about-header {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary) !important;
    margin-bottom: 3.5rem;
    text-align: center;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary) !important;
}

.about-section p .highlight-text {
    font-weight: 600;
    color: var(--color-primary-accent) !important;
}

/* Testimonial Carousel */
.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-carousel-header {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 2.5rem;
    text-align: center;
}

.testimonial-inner {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-item {
    flex-shrink: 0;
    width: 100%;
    padding: 2.5rem;
    background-color: var(--bg-medium);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
}

.testimonial-item p:first-child {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary) !important;
    margin-bottom: 1.2rem;
}

.testimonial-item p:last-child {
    font-weight: 600;
    color: var(--color-primary-accent) !important;
    font-size: 1rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-light) !important;
    padding: 0.8rem;
    border-radius: 50%;
    color: var(--text-primary) !important;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-subtle);
}

#prevTestimonial {
    left: 0.5rem;
}

#nextTestimonial {
    right: 0.5rem;
}

.carousel-button:hover {
    background-color: var(--color-primary-accent) !important;
    color: var(--bg-dark) !important;
    box-shadow: var(--shadow-deep);
    transform: translateY(-50%) scale(1.08);
}

.qr-section {
    text-align: center;
    padding-top: 3rem;
}

.qr-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    margin-bottom: 2rem;
}

.qr-code-img {
    width: 12rem;
    height: 12rem;
    max-width: 15rem;
    max-height: 15rem;
    object-fit: contain;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 2px solid var(--color-primary-accent) !important;
    margin: 0 auto;
    transition: all var(--transition-speed);
}

.qr-code-img:hover {
    box-shadow: var(--shadow-deep);
    transform: scale(1.01);
}

.qr-section p {
    margin-top: 1.5rem;
    color: var(--text-muted) !important;
    font-size: 1.1rem;
}

/* Responsive Adjustments (Refined for new aesthetic) */
@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    main {
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }

    .hero-section {
        height: 95vh;
        padding: 0 2.5rem;
    }

    .hero-section video {
        width: 100%;
        height: 95%;
        position: absolute;
        object-fit: cover;
        z-index: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-headline {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 2rem;
    }

    .countdown-section h2,
    .expect-section h2,
    .tickets-header,
    .schedule-header,
    .gallery-header,
    .contact-header,
    .about-header,
    .testimonial-carousel-header,
    .qr-section h2 {
        font-size: 1.9rem;
        margin-bottom: 2.5rem;
    }

    .countdown-section {
        padding: 2rem 0;
        background-color: var(--bg-medium) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .countdown-display {
        justify-content: space-evenly;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary) !important;
        flex-wrap: wrap;
    }

    .countdown-item {
        padding: 7px 10px;
        border-radius: var(--border-radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-subtle);
        transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    }

    .countdown-item span {
        font-size: 3rem;
    }

    .countdown-item p {
        font-size: 1rem;
    }

    .map {
        width: 90%;
        border: 0;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .map-details {
        color: var(--color-primary-accent);
        margin-top: 1rem;
        margin-left: 0;
    }

    .expect-card,
    .ticket-card,
    .testimonial-item {
        padding: 1rem;
    }

    .expect-card h3,
    .ticket-card h3 {
        font-size: 1.6rem;
    }

    .ticket-card .price {
        font-size: 3.5rem;
    }

    .ticket-card ul li {
        font-size: 0.9rem;
    }

    .registration-modal {
        padding: 1rem;
    }

    .modal-content {
        max-width: 95%;
        padding: 2rem;
    }

    .modal-content h2 {
        font-size: 1.8rem;
    }

    .qr-img {
        max-width: 10rem;
        height: 10rem;
        margin: 1rem auto;
    }

    .timeline-wrap {
        padding: 0 0.5rem;
    }

    .timeline-line {
        left: 15px;
    }

    .timeline-event-marker {
        width: 3rem;
        height: 3rem;
        left: 15px;
    }

    .timeline-event-marker h1 {
        font-size: 1.2rem;
    }

    .timeline-event-content {
        width: calc(100% - 2.5rem);
        margin-left: 2.5rem;
        padding-left: 1rem;
    }

    .video-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .photo-grid {
        gap: 0.8rem;
    }

    .gallery-item img {
        height: 8rem;
    }

    .contact-container {
        padding: 1.8rem;
    }

    .contact-logo {
        height: 4rem;
        margin-bottom: 1.5rem;
    }

    .social-icon img {
        height: 2rem;
        width: 2rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .testimonial-item p:first-child {
        font-size: 1.1rem;
    }

    .testimonial-item p:last-child {
        font-size: 0.95rem;
    }

    .floating-ticket-btn,
    .scroll-to-top-btn {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }

    .scroll-to-top-btn {
        padding: 0.7rem;
    }

    .scroll-to-top-btn svg {
        width: 1.4rem;
        height: 1.4rem;
    }
}