:root {
    --primary-gold: #D4AF37;
    --primary-cream: #F8F6F0;
    --primary-charcoal: #2C2C2C;
    --primary-warm-white: #FEFCF8;
    --accent-rose: #E8B4B8;
    --accent-sage: #B8C5A6;
    --accent-mint: #A8D5BA;
    --shadow-primary: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.25);
    --gradient-luxury: linear-gradient(135deg, #F8F6F0 0%, #FEFCF8 50%, #F5F3ED 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(44, 44, 44, 0.02) 100%);
    --gradient-2025: linear-gradient(135deg, #F8F6F0 0%, rgba(212, 175, 55, 0.05) 25%, #FEFCF8 50%, rgba(232, 180, 184, 0.05) 75%, #F5F3ED 100%);
}

/* =================================
   VIDEO SEQUENCE STYLES
   ================================= */

/* Video Container - Fullscreen Opening Video */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: #000;
    opacity: 1;
    transition: opacity 1s ease;
}

.video-container.fade-out {
    opacity: 0;
}

.opening-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Logo Overlay on Opening Video */
.logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease;
}

.logo-overlay.fade-out {
    opacity: 0;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Background Video Loop */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease;
}

.background-video.show {
    opacity: 1;
}

.wind-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Smooth Video Loop Transition */
.wind-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wind-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.wind-video-container.crossfade::before {
    opacity: 1;
}

/* Alternative approach: Dual video crossfade */
.wind-video-dual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

.wind-video-dual.fade-out {
    opacity: 0;
}

.wind-video-dual.fade-in {
    opacity: 1;
}

/* Utility Classes */
.hidden {
    display: none;
}

.show {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    min-height: 100vh;
    color: var(--primary-charcoal);
    line-height: 1.6;
    overflow: hidden;
}

/* Main Content Overlay */
.hero-container {
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-container.show {
    opacity: 1;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-gold), var(--accent-rose));
    opacity: 0.02;
    animation: float 30s infinite ease-in-out;
    will-change: transform;
}

.float-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.float-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: -7s;
}

.float-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    33% { transform: translate3d(0, -20px, 0) rotate(120deg); }
    66% { transform: translate3d(0, 10px, 0) rotate(240deg); }
}

.luxury-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px 40px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    display: inline-block;
    position: relative;
}

.logo-accent {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-rose));
    border-radius: 2px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(44, 44, 44, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.content-wrapper {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
}

.announcement-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(25px);
    border-radius: 28px;
    padding: clamp(15px, 5vw, 40px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 12px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: clamp(10px, 2vw, 0) auto;
    text-align: center;
    transition: none;
    position: relative;
}


.card-header {
    text-align: center;
    margin-bottom: 40px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
    background: rgba(212, 175, 55, 0.1);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2.5vw, 16px);
    border-radius: 20px;
    margin-bottom: clamp(12px, 3vw, 24px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: clamp(0.65rem, 1.8vw, 0.875rem);
    font-weight: 500;
    color: var(--primary-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.main-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-charcoal);
    line-height: 1.2;
    margin: 0;
}

.message-content {
    margin-bottom: clamp(20px, 4vw, 40px);
}

.greeting {
    font-size: clamp(0.75rem, 2.5vw, 1.125rem);
    font-weight: 500;
    color: var(--primary-charcoal);
    margin-bottom: clamp(10px, 3vw, 24px);
}

.highlight-text {
    font-size: clamp(0.8rem, 2.8vw, 1.25rem);
    font-weight: 500;
    color: var(--primary-charcoal);
    margin-bottom: clamp(10px, 3vw, 24px);
    line-height: 1.3;
    position: relative;
    padding-left: clamp(10px, 2.5vw, 20px);
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: clamp(2px, 0.5vw, 4px);
    background: linear-gradient(to bottom, var(--primary-gold), var(--accent-rose));
    border-radius: 2px;
}

.description, .promise {
    font-size: clamp(0.7rem, 2.2vw, 1rem);
    color: rgba(44, 44, 44, 0.8);
    margin-bottom: clamp(8px, 2.5vw, 20px);
    line-height: 1.4;
}

.info-card {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 16px);
    background: rgba(212, 175, 55, 0.05);
    padding: clamp(12px, 3vw, 24px);
    border-radius: 16px;
    margin-bottom: clamp(16px, 4vw, 40px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.info-icon {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    flex-shrink: 0;
}

.info-title {
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 4px;
    font-size: clamp(0.7rem, 2vw, 1rem);
}

.info-text {
    color: rgba(44, 44, 44, 0.8);
    font-size: clamp(0.65rem, 1.8vw, 0.875rem);
    margin: 0;
    line-height: 1.3;
}


.signature-section {
    text-align: center;
    padding-top: clamp(12px, 3vw, 30px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.gratitude, .farewell {
    font-size: clamp(0.65rem, 2vw, 1rem);
    color: rgba(44, 44, 44, 0.8);
    margin-bottom: clamp(6px, 1.5vw, 12px);
}

.brand-signature {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.8rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-top: clamp(8px, 2vw, 16px);
}

.luxury-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: right;
}

.footer-content {
    margin: 0;
}

.social-links {
    margin-bottom: 3px;
}

.social-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.instagram-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.social-text {
    font-size: 0.7rem;
}

.footer-text {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-container {
        padding: 20px;
    }
    
    .main-content {
        padding: 10px;
    }
    
    .announcement-card {
        padding: clamp(20px, 4vw, 30px) clamp(15px, 4vw, 25px);
        margin: 10px;
        border-radius: 20px;
        max-width: calc(100% - 20px);
    }
    
    .luxury-header {
        padding: 40px 20px 20px;
    }
    
    .brand-name {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .main-headline {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    
    .info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .social-links {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 15px;
    }
    
    .main-content {
        padding: 5px;
    }
    
    .announcement-card {
        padding: clamp(15px, 3vw, 25px) clamp(12px, 3vw, 18px);
        margin: 15px;
        border-radius: 16px;
        max-width: calc(100% - 30px);
    }
    
    .luxury-header {
        padding: 30px 15px 15px;
    }
    
    .brand-name {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    
    .brand-tagline {
        font-size: 0.875rem;
    }
    
    .main-headline {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    
    .info-card {
        padding: 16px;
        gap: 10px;
    }
    
    .info-title {
        font-size: 0.9rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 20px;
        flex-direction: column;
    }
    
    .social-item {
        font-size: 0.8rem;
    }
    
}

@media (max-width: 360px) {
    .announcement-card {
        padding: clamp(12px, 2.5vw, 20px) clamp(8px, 2.5vw, 12px);
        margin: 20px;
        border-radius: 12px;
        max-width: calc(100% - 40px);
    }
    
    .brand-name {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
}

@media (max-width: 920px) {
    .luxury-footer {
        padding: 8px 10px;
        bottom: 10px;
        right: 10px;
    }
    
    .footer-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links {
        margin: 0;
    }
    
    .social-item {
        padding: 6px;
        font-size: 0;
        min-width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .instagram-icon {
        width: 16px;
        height: 16px;
    }
    
    .social-text {
        display: none;
    }
    
    .footer-text {
        display: none;
    }
}