/* CSS Variables - IWD Lavender/Purple Theme */
:root {
    --primary-color: #6B21A8;
    --primary-light: #A855F7;
    --primary-dark: #581C87;
    --primary-ultralight: #DDD6FE;
    --secondary-color: #9333EA;
    --accent-color: #C084FC;
    --text-primary: #1E1033;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAF8FF;
    --bg-page: #F0EAFC;
    --bg-card: #FFFFFF;
    --bg-hero-overlay: linear-gradient(135deg, rgba(107, 33, 168, 0.15), rgba(168, 85, 247, 0.08));
    --border-color: #E9E0F5;
    --border-radius: 16px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(107, 33, 168, 0.06);
    --shadow-md: 0 4px 16px rgba(107, 33, 168, 0.08);
    --shadow-lg: 0 12px 32px rgba(107, 33, 168, 0.12);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.15);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-page);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    padding-bottom: 100px;
    max-width: 480px;
}

@media (min-width: 769px) {
    body {
        max-width: 1200px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(30, 16, 51, 0.5), transparent);
}

@media (max-width: 768px) {
    .navbar {
        max-width: 480px;
    }
}

@media (min-width: 769px) {
    .navbar {
        max-width: 1200px;
        padding: 20px 40px;
    }
}

.nav-back, .nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    text-decoration: none;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-back:hover, .nav-btn:hover {
    background: var(--bg-primary);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.15);
}

.nav-spacer {
    width: 42px;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* IWD Logo in navbar */
.iwd-logo-fixed {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    cursor: pointer;
    flex-shrink: 0;
}

.iwd-logo-fixed:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.15);
}

.iwd-logo-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}

.hero-carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-secondary), transparent);
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 769px) {
    .hero-carousel {
        height: 520px;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: var(--border-radius-xl);
    }
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: default;
    transition: var(--transition);
    pointer-events: none;
}

.dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--bg-primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.main-content {
    padding: 0 20px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 769px) {
    .main-content {
        max-width: 1200px;
        padding: 0 40px;
        margin-top: -50px;
    }
}

/* Event Header */
.event-header {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.event-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
}

.event-category {
    margin-bottom: 14px;
}

.category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.event-subtitle {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.attendees-info {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.attendees-info:hover {
    background: var(--primary-ultralight);
    border-color: var(--accent-color);
}

.attendee-avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    margin-left: -8px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.attendee-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.arrow-icon {
    color: var(--primary-color);
    margin-left: auto;
}

/* Event Details Cards */
.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

@media (min-width: 769px) {
    .event-details {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.detail-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.detail-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.date-icon {
    background: linear-gradient(135deg, #FEF3F2, #FEE2E2);
    color: #DC2626;
}

.location-icon {
    background: linear-gradient(135deg, #F0F9FF, #DBEAFE);
    color: #2563EB;
}

.price-icon {
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    color: #16A34A;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.detail-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.detail-action {
    padding: 8px 14px;
    background: transparent;
    border: 1.5px solid var(--primary-light);
    color: var(--primary-color);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.detail-action:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Organizer Section */
.organizer-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.organizer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.organizer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    background: white;
    padding: 4px;
    border: 2px solid var(--border-color);
}

.organizer-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.organizer-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.follow-btn {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.follow-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* About Section */
.about-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.about-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 8px;
}

.about-content .truncated {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.activities-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.activities-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.activity-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--primary-ultralight));
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.activity-tag:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.activity-icon {
    font-size: 16px;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.see-all {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.see-all:hover {
    text-decoration: underline;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-more .more-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.7), rgba(30, 16, 51, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Location Section */
.location-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.location-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.location-address svg {
    color: var(--primary-color);
}

.map-container {
    position: relative;
}

.map-embed {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: inset 0 0 0 1px var(--border-color);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 14px;
}

@media (min-width: 769px) {
    .map-embed iframe {
        height: 300px;
    }
}

.directions-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.directions-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107, 33, 168, 0.3);
}

/* More Events Section */
.more-events-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.events-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.events-scroll::-webkit-scrollbar {
    display: none;
}

.event-card-mini {
    min-width: 160px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-secondary);
    flex-shrink: 0;
}

.event-card-mini img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.event-card-content {
    padding: 12px;
}

.event-card-date {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

.event-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 4px;
}

/* Registration Section */
.registration-section {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.registration-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.registration-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.registration-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 22px;
    line-height: 1.6;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    padding: 13px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.08);
}

/* Sticky Footer - transparent floating button */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    padding: 16px 20px 24px;
    background: transparent;
    z-index: 100;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-footer {
        max-width: 480px;
    }
}

@media (min-width: 769px) {
    .sticky-footer {
        max-width: 1200px;
        padding: 20px 40px 28px;
    }
}

.book-event-btn {
    width: 100%;
    max-width: 400px;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 8px 32px rgba(107, 33, 168, 0.4);
    letter-spacing: 0.3px;
}

.book-event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(107, 33, 168, 0.5);
}

.book-event-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(107, 33, 168, 0.35);
}

/* Desktop Layout */
@media (min-width: 769px) {
    .desktop-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 24px;
        align-items: start;
    }

    .event-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 26px;
    }

    .event-header,
    .about-section,
    .gallery-section,
    .location-section,
    .organizer-section,
    .more-events-section,
    .registration-section {
        margin-bottom: 24px;
    }

    .book-event-btn {
        max-width: 500px;
    }

    .registration-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .registration-form .form-group:last-child {
        grid-column: 1 / -1;
    }
}

/* Responsive adjustments for larger screens */
@media (min-width: 481px) {
    body {
        box-shadow: var(--shadow-lg);
    }

    .hero-carousel {
        border-radius: var(--border-radius-xl);
        margin-top: 0;
    }
}

/* Smooth scrolling and selection */
::selection {
    background: var(--primary-light);
    color: white;
}

/* Focus states for accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   Apple-style Scroll Reveal Animations
   ============================================ */

/* Hidden state: elements start below and invisible */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state: slide up into place */
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children inside a revealed section */
.reveal-child {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

/* Auto-stagger children: each child delays a bit more */
.reveal.is-visible .reveal-child:nth-child(1) { transition-delay: 0.08s; }
.reveal.is-visible .reveal-child:nth-child(2) { transition-delay: 0.16s; }
.reveal.is-visible .reveal-child:nth-child(3) { transition-delay: 0.24s; }
.reveal.is-visible .reveal-child:nth-child(4) { transition-delay: 0.32s; }
.reveal.is-visible .reveal-child:nth-child(5) { transition-delay: 0.40s; }

/* Detail cards stagger inside their parent reveal */

/* Use --child-i for custom stagger on gallery items */
.reveal.is-visible .gallery-item.reveal-child:nth-child(1) { transition-delay: 0.1s; }
.reveal.is-visible .gallery-item.reveal-child:nth-child(2) { transition-delay: 0.2s; }
.reveal.is-visible .gallery-item.reveal-child:nth-child(3) { transition-delay: 0.3s; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-child,
    .gallery-item.reveal-child {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Confirmation Screen Overlay */
.confirmation-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 16, 51, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.confirmation-overlay.active {
    display: flex;
}

.confirmation-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-xl);
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(30, 16, 51, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Checkmark */
.confirmation-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primary-color);
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--primary-color);
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.confirmation-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.confirmation-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.confirmation-details {
    background: var(--bg-secondary);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.confirmation-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.confirmation-detail-row svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.confirmation-email-text {
    color: #16A34A;
    font-weight: 600;
}

.confirmation-calendar-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.confirmation-calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.35);
}

.confirmation-close-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.confirmation-close-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--primary-ultralight);
}
