/* ==========================================================================
   YR VOYAGES — LUXURY LIGHT BLUE "COMING SOON" (2026)
   Ultra Lightweight Animated Typography | No Boxes | High Fashion Luxury Vibe
   ========================================================================== */

:root {
    /* Backgrounds */
    --color-bg-main: #F4F8FF;

    /* Color Theme (Navy Blue & Royal Sapphire Accent) */
    --color-navy: #0A1E46;
    --color-royal-blue: #2563EB;
    --color-sky-blue: #38BDF8;

    /* Text Colors */
    --color-text-main: #0A1E46;
    --color-text-body: #334155;
    --color-text-muted: #64748B;
    --color-text-light: #94A3B8;

    /* Fonts (Ultra Lightweight & Stylish) */
    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', 'Plus Jakarta Sans', sans-serif;

    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-body);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Light Blue Ambient Background Glows --- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.ambient-glow-1 {
    top: -140px;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(244, 248, 255, 0) 70%);
}

.ambient-glow-2 {
    bottom: -120px;
    left: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, rgba(244, 248, 255, 0) 70%);
}

/* --- Header & Big Logo --- */
.site-header {
    padding: 48px 0 20px 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-link {
    display: inline-block;
    text-decoration: none;
}

.brand-logo {
    height: 240px;
    width: auto;
    max-width: 92vw;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(37, 99, 235, 0.08));
    transition: transform var(--transition-smooth);
}

.brand-link:hover .brand-logo {
    transform: scale(1.03);
}

/* --- Main Content (No Boxes, Pure Luxury Whitespace) --- */
.main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 20px 0 40px 0;
}

.hero-section {
    width: 100%;
}

.hero-container {
    display: flex;
    justify-content: center;
}

.hero-text-wrap {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Label (No Box) */
.hero-label-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--color-royal-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6);
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); }
    70% { transform: scale(1); box-shadow: 0 0 0 9px rgba(37, 99, 235, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.hero-label {
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--color-royal-blue);
    text-transform: uppercase;
}

/* Animated Ultra Lightweight Headline */
.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    font-weight: 200;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-highlight {
    font-weight: 300;
    color: var(--color-royal-blue);
    display: inline-block;
    position: relative;
    animation: floatLight 6s ease-in-out infinite;
}

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

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-body);
    max-width: 620px;
    line-height: 1.8;
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}

/* Simple Tagline Row (No Box) */
.hero-tagline-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-navy);
}

.hero-tagline-pills .sep {
    color: var(--color-royal-blue);
    opacity: 0.6;
    font-size: 0.8rem;
}

/* --- Entrance Animations --- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpAnim 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Footer --- */
.site-footer {
    padding: 36px 0 28px 0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-royal-blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-bottom {
    font-size: 0.84rem;
    font-weight: 300;
    color: var(--color-text-light);
}

/* --- Responsive Sizing --- */
@media (max-width: 768px) {
    .brand-logo {
        height: 160px;
    }

    .hero-title {
        font-size: 3.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 0.16em;
    }

    .hero-tagline-pills {
        font-size: 0.85rem;
        gap: 8px;
    }
}
