/* =========================================================================================================================
   Global Styles Start
========================================================================================================================= */

:root {
    /* Sunset sky */
    --sunset-peach: #f6c1a2;
    --sunset-gold: #e9b872;
    --sunset-rose: #d98ca7;
    --sunset-lavender: #8f87c2;

    /* Ocean */
    --sea-deep: #1f4e5f;
    --sea-muted: #4f7d87;

    /* Sand / neutral */
    --sand-light: #f1e6da;
    --sand-warm: #ead6c4;

    /* Text */
    --ink: #1f2933;
    --ink-soft: #4b5563;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    /* height: 100%; */
    min-height: 100%;
}

body {
    background: var(--ivory);
    color: #102027;
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    margin: 0;
    background: radial-gradient(900px 450px at 50% 18%,
            rgba(233, 184, 114, 0.45),
            rgba(246, 193, 162, 0.25) 40%,
            transparent 65%),
        linear-gradient(180deg,
            var(--sunset-peach) 0%,
            var(--sunset-rose) 35%,
            var(--sunset-lavender) 60%,
            var(--sea-deep) 100%);

    background-repeat: no-repeat;
    background-size: 100% 100%;

}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 3.6rem);
    font-weight: 500;
    margin: 0;
    color: #102027;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.75rem;
    opacity: 0.85;
    /* color: var(--ink-soft); */
    color: rgba(16, 32, 39, 0.85);
}

main {
    flex: 1;
}

.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 0px 2rem 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
            var(--sun-gold),
            var(--sun-rose),
            var(--sun-lavender));
    border-radius: 2px;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .page-content {
        padding: 0px 1.5rem 50px;
    }

    body {
        background-attachment: scroll;
    }
}

/* =========================================================================================================================
   Global Styles End
========================================================================================================================= */


/* =========================================================================================================================
   Header Styles Start
========================================================================================================================= */

.site-header {
    /* position: fixed; */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 2rem;

    background: transparent;
    border: none;
    z-index: 1000;
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    padding: 0 3rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.8rem;
}

.logo {
    /* position: fixed; */
    position: absolute;
    top: 20px;
    left: 3rem;

    width: 100px;
    height: auto;

    z-index: 1100;
}

.main-nav a,
.logo-mini a {
    color: #fdfaf6;
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 500;
    letter-spacing: 0.06em;

    transition: opacity 0.2s ease;

    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.main-nav a:hover {
    opacity: 0.7;
}

.main-nav a.active {
    border-bottom: 1px solid white;
}

.lang-switch {
    position: absolute;
    right: 2rem;
    align-items: center;
    gap: 0.6rem
}

.lang-switch button {
    background: none;
    border: none;
    color: #fdfaf6;
    font-size: 0.97rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.lang-switch button:hover {
    opacity: 0.7;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #fdfaf6;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(20, 40, 55, 0.95);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 2rem;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;

    z-index: 3000;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    letter-spacing: 0.08em;
}

.mobile-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 1rem 0;
}

.mobile-lang-switch {
    display: flex;
    gap: 0.6rem;
    font-size: 1rem;
}

.mobile-lang-switch button {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}


@media (max-width: 768px) {

    .main-nav,
    .lang-switch {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .site-header {
        justify-content: flex-end;
    }
}

@media (min-width: 769px) {
    .site-header {
        justify-content: center;
        /* center nav */
    }

    .main-nav {
        display: flex;
        gap: 2.5rem;
    }

    .hamburger {
        display: none;
    }
}

/* =========================================================================================================================
   Header Styles End
========================================================================================================================= */


/* =========================================================================================================================
   Footer Styles Start
========================================================================================================================= */

.site-footer {
    left: 0;

    width: 100%;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    --webkit-backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255, 255, 255, 0.25);

    padding: 2rem 0;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;

    max-width: 1200px;
    margin: 0 auto;
}

.site-footer a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 48px;

    transition: opacity 0.25s ease;

    font-weight: 500;
    font-size: 0.93rem;
    text-decoration: none;

    margin: 0;
    padding: 0;
}

.site-footer a:hover {
    transform: translateY(-4px);
    opacity: 0.7;
}

.site-footer svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .footer-inner {
        gap: 1.5rem;
    }

    .site-footer {
        height: 50px;
    }

    .site-footer a {
        font-size: 0.8rem;
    }
}

/* =========================================================================================================================
   Footer Styles End
========================================================================================================================= */


/* =========================================================================================================================
   Home Page Styles Start
========================================================================================================================= */

.home-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 2rem 50px;
    text-align: center;
}

.gala-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.gala-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 3rem;
}

.event-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.event-item {
    text-align: center;
}

.event-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    opacity: 0.75;
    margin-bottom: 0.3rem;
}

.event-value {
    font-size: 1rem;
}

.event-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
}


.event-value a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.event-value a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.event-value a:hover::after {
    transform: scaleX(1);
}

.event-value a:visited {
    color: inherit;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.time-box {
    padding: 1.5rem 1.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    min-width: 100px;
}

.number {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
}

.label {
    font-size: 0.8rem;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .gala-title {
        font-size: 2.2rem;
    }

    .event-details {
        gap: 1.5rem;
    }

    .event-divider {
        display: none;
    }

    .countdown {
        gap: 1rem;
    }

    .time-box {
        min-width: 80px;
        padding: 1.2rem;
    }
}

/* =========================================================================================================================
   Home Page Styles End
========================================================================================================================= */


/* =========================================================================================================================
   Gala Info Styles Start
========================================================================================================================= */

.gala-info-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    padding: 50px 2rem 50px;
}

.gala-info-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    opacity: 0.8;
    margin-bottom: 4rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.timeline {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;

    /* background: linear-gradient(180deg,
            var(--sunset-peach),
            var(--sunset-rose),
            var(--sunset-lavender),
            var(--sea-deep)); */

    background: linear-gradient(180deg,
            var(--sunset-rose),
            var(--sunset-lavender));

    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.2rem 2rem;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 1.6rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;

    background: white;
    border: 3px solid var(--sunset-rose);
    z-index: 1;
}

.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-item .content h3 {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.timeline-item .content p {
    margin: 0.4rem 0 0;
    font-size: 0.9rem;
    opacity: 0.85;
}

.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(5) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dress-theme-section {
    margin-top: 5rem;
    padding: 3rem 2rem;

    background: rgba(255, 255, 255, 0.15);
    color: #1f1f1f;
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
}

.dress-theme-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.dress-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.dress-note {
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.dress-intro,
.dress-note {
    opacity: 0.95;
}

.color-palette {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.color-swatch {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sunset-peach {
    background: var(--sunset-peach);
}

.sunset-rose {
    background: var(--sunset-rose);
}

.sunset-lavender {
    background: var(--sunset-lavender);
}

.sea-deep {
    background: var(--sea-deep);
}

.warm-orange {
    background: #f28c38;
}

.soft-pink {
    background: #f28fb3;
}

@media (max-width: 768px) {
    .timeline {
        position: relative;
        margin-top: 2rem;
        padding-left: 40px;
    }

    .timeline::before {
        content: "";
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: rgba(255, 255, 255, 0.5);
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100% !important;
        left: 0 !important;
        text-align: left !important;
        padding: 1rem 0 1rem 0;
        position: relative;
    }

    .timeline-item.left::before,
    .timeline-item.right::before,
    .timeline-item::before {
        content: "";
        position: absolute;

        left: -20px;
        right: auto !important;

        top: 1.2rem;

        width: 14px;
        height: 14px;
        border-radius: 50%;

        background: white;
        border: 3px solid var(--sunset-rose);

        transform: translateX(-50%);
    }

    .color-palette {
        gap: 1.8rem;
    }

    .color-swatch {
        width: 55px;
        height: 55px;
    }
}

/* =========================================================================================================================
   Gala Info Styles End
========================================================================================================================= */


/* =========================================================================================================================
   Social Project Styles Start
========================================================================================================================= */

.social-project-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 2rem 50px;
    text-align: center;
}

.project-header {
    margin-bottom: 1.5rem;
}

.project-logo {
    width: 300px;
    height: auto;
}

.project-tagline {
    font-size: 1rem;
    opacity: 0.85;
    letter-spacing: 0.04em;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.project-block h2 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}

.project-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .project-logo {
        width: 90px;
    }

    .project-block p {
        font-size: 0.9rem;
    }
}

/* =========================================================================================================================
   Social Project Styles End
========================================================================================================================= */


/* =========================================================================================================================
   Social Project Styles Start
========================================================================================================================= */

.logistics-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 2rem 50px;
}

.logistics-container h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.logistics-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem auto;
    line-height: 1.7;
    opacity: 0.9;
}

.logistics-section {
    margin-bottom: 4rem;
}

.logistics-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.section-note {
    margin-bottom: 1.5rem;
    opacity: 0.85;
    line-height: 1.6;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.hotel-card {
    padding: 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hotel-card h4 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.location-info {
    display: block;
}

.location-card {
    padding: 2rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);

    text-align: center;

    margin: 0 auto 3rem auto;
}

.location-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.location-card p {
    opacity: 0.85;
    margin-bottom: 1rem;
}

.hotel-card a,
.parking-card a {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.hotel-card a:hover,
.parking-card a:hover {
    opacity: 1;
}

.parking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.parking-card {
    padding: 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
}

.logistics-container a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: opacity 0.2s ease;
}

.logistics-container a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.logistics-container a:hover::after {
    transform: scaleX(1);
}

.logistics-container a:visited {
    color: inherit;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.travel-card {
    padding: 1.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.travel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.travel-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.travel-card h4 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.travel-card p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

@media (max-width: 768px) {

    .hotel-grid,
    .parking-grid {
        grid-template-columns: 1fr;
    }

    .travel-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================================================================
   Logistics Styles End
========================================================================================================================= */


/* =========================================================================================================================
   Tickets & Donations Styles Start
========================================================================================================================= */

.tickets-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 2rem 50px;
    text-align: center;
}

.tickets-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

.weeztix-wrapper {
    margin: 2rem auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.weeztix-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.donations-section {
    margin-top: 4rem;
}

.donation-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.donation-card {
    padding: 1.8rem;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);

    transition: transform 0.2s ease;
}

.donation-card:hover {
    transform: translateY(-4px);
}

.donation-card h4 {
    margin-bottom: 0.8rem;
}

.donation-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.photo-disclaimer {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    opacity: 0.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.ticket-terms {
    margin-top: 1.5rem;
    text-align: left;
    font-size: 0.8rem;
    opacity: 0.85;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-fees {
    margin-bottom: 0.8rem;
}

.ticket-conditions {
    padding-left: 1.2rem;
    line-height: 1.6;
}

.ticket-conditions li {
    margin-bottom: 0.4rem;
}

.qr-donation {
    margin: 2.5rem auto 3rem;
    text-align: center;
    max-width: 650px;
}

.qr-donation img {
    width: 190px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 14px;
    background: white;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.donation-intro {
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 768px) {

    /* Container spacing */
    .tickets-container {
        padding: 100px 1.2rem 60px;
    }

    /* Headings */
    .tickets-container h1 {
        font-size: 1.8rem;
    }

    .tickets-section h2,
    .donations-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Intro text */
    .tickets-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Weeztix iframe */
    .weeztix-wrapper iframe {
        height: 480px;
    }

    /* Terms block */
    .ticket-terms {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    .ticket-conditions {
        padding-left: 1rem;
    }

    .ticket-conditions li {
        margin-bottom: 0.5rem;
    }

    /* QR Donation Section */
    .qr-donation {
        margin: 2rem auto 2.5rem;
    }

    .qr-donation img {
        width: 160px;
        padding: 10px;
    }

    .donation-intro {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    /* Donation benefits stacked */
    .donation-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .donation-card {
        padding: 1.4rem;
    }

}

/* =========================================================================================================================
   Tickets & Donations Styles End
========================================================================================================================= */
