/* ======================= */
/* HERO SECTION - ART NOUVEAU */
/* ======================= */
.hero {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 40%, var(--teal-light) 100%);
    color: var(--white);
    position: relative;
    padding: 0;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: clamp(40px, 8vh, 80px) clamp(20px, 5vw, 60px) clamp(50px, 10vh, 100px);
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(6px, 1.2vh, 10px);
}

.hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-names {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-names h1 {
    font-family: 'Italiana', serif;
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 500;
    letter-spacing: clamp(0.08em, 0.12em, 0.15em);
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Ampersand / Teacup toggle container */
.ampersand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(5px, 1.5vh, 15px) 0;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 1s forwards;
    min-height: clamp(2.5rem, 6vw, 4rem);
    position: relative;
}

.hero-names .ampersand {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 1;
    transform: scale(1);
    line-height: 1;
}

.hero-names .teacup-icon {
    position: absolute;
    width: clamp(2.5rem, 6vw, 4rem);
    height: clamp(2rem, 5vw, 3rem);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

/* Toggled state - show teacup, hide ampersand */
.ampersand-container.show-teacup .ampersand {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
}

.ampersand-container.show-teacup .teacup-icon {
    opacity: 1;
    transform: scale(1);
}

/* Hover effect */
.ampersand-container:hover .ampersand {
    transform: scale(1.1);
}

.ampersand-container.show-teacup:hover .teacup-icon {
    transform: scale(1.08);
}

/* Steam animation for teacup */
@keyframes steamRise {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-3px);
    }
}

.ampersand-container.show-teacup .steam-1 {
    animation: steamRise 2s ease-in-out infinite;
}

.ampersand-container.show-teacup .steam-2 {
    animation: steamRise 2s ease-in-out infinite 0.3s;
}

.ampersand-container.show-teacup .steam-3 {
    animation: steamRise 2s ease-in-out infinite 0.6s;
}

.hero-names h1:last-of-type {
    animation-delay: 1.3s;
}

.hero-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 2.3vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.6s forwards;
}

.hero-bible-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2.6vw, 1.3rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    max-width: clamp(300px, 80vw, 600px);
    text-align: center;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}

.hero-date {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    font-weight: 700;
    letter-spacing: clamp(0.15em, 0.25em, 0.3em);
    margin-bottom: clamp(8px, 1.5vh, 12px);
    color: var(--gold-light);
    opacity: 0;
    animation: fadeInUp 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 1.7s forwards;
}

.hero-venue {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 2.3vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22, 0.61, 0.36, 1) 2s forwards;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-venue:hover {
    color: var(--gold-light);
}

/* Decorative line with chess pieces */
.hero-line {
    width: clamp(100px, 25vw, 200px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto clamp(15px, 3vh, 25px);
    opacity: 0;
    animation: expandWidth 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 1.5s forwards;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chess pieces on hero line */
.hero-line-chess {
    position: absolute;
    width: clamp(38px, 8vw, 60px);
    height: clamp(26px, 5.5vw, 42px);
    opacity: 0;
    animation: fadeInScale 1.3s cubic-bezier(0.22, 0.61, 0.36, 1) 1.8s forwards;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.chess-king, .chess-queen {
    transition: transform 0.3s ease;
}

.hero-line-chess:hover .chess-king {
    transform: translateY(-2px);
}

.hero-line-chess:hover .chess-queen {
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: clamp(25px, 5vh, 50px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.22, 0.61, 0.36, 1) 2.3s forwards;
    z-index: 10;
    background-color: transparent;
    padding: clamp(8px, 1.5vh, 12px);
    border-radius: 50%;
}

.scroll-indicator svg {
    width: clamp(20px, 4vw, 30px);
    height: clamp(20px, 4vw, 30px);
    stroke: var(--gold);
    display: block;
}

/* Koi Fish Styling */
.koi-container {
    background-color: transparent;
    backdrop-filter: none;
}

.koi-fish {
    width: clamp(40px, 8vw, 60px);
    height: clamp(64px, 12.8vw, 96px);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: koiSwim 3s ease-in-out infinite 3.2s;
    transform-origin: center center;
}

