/* Luxury Hero */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    background: url('/public/asset/mainphoto.png') center/cover no-repeat;
    will-change: transform;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(46, 74, 61, 0.3) 50%, rgba(26, 26, 26, 0.75) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 800px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--warm-gold);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle .line {
    width: 60px;
    height: 1px;
    background: var(--warm-gold);
}

.hero-stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    display: block;
}

.script-accent {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: var(--warm-gold);
}

.script-accent-image {
    height: clamp(60px, 8vw, 100px);
    width: auto;
    margin-left: 10px;
    vertical-align: middle;
}

.mobile-hero-logo {
    display: none;
    height: 280px;
    width: auto;
    margin: 0 auto 30px;
}

.typing-text {
    color: var(--ivory-white);
    display: inline;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 48px;
    background: var(--warm-gold);
    margin-left: 8px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

.desktop-typing-text {
    display: inline;
}

.desktop-cursor {
    display: inline-block;
    width: 2px;
    height: 18px;
    background: var(--warm-gold);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-text p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(248, 246, 242, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

.cta-primary {
    background: var(--warm-gold);
    border: none;
    color: var(--deep-charcoal);
    padding: 18px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-primary:hover {
    background: var(--champagne-gold);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.cta-secondary {
    background: transparent;
    border: 1px solid rgba(248, 246, 242, 0.3);
    color: var(--ivory-white);
    padding: 18px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-secondary:hover {
    border-color: var(--ivory-white);
    background: rgba(248, 246, 242, 0.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(248, 246, 242, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 20px;
    height: 35px;
    border: 1px solid rgba(248, 246, 242, 0.3);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 2px;
    height: 8px;
    background: var(--ivory-white);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* Falling Leaves */
.falling-leaves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 15px;
    height: 25px;
    opacity: 0.3;
    animation: fall linear infinite;
}

.leaf::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--forest-green);
    border-radius: 50% 0 50% 0;
    transform: rotate(-45deg);
}

.leaf::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 60%;
    background: rgba(46, 74, 61, 0.5);
    top: 20%;
    left: 50%;
    transform: rotate(-45deg);
}

.leaf-1 {
    top: -50px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.leaf-2 {
    top: -50px;
    left: 30%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.leaf-3 {
    top: -50px;
    left: 50%;
    animation-duration: 7s;
    animation-delay: 4s;
}

.leaf-4 {
    top: -50px;
    left: 70%;
    animation-duration: 9s;
    animation-delay: 1s;
}

.leaf-5 {
    top: -50px;
    left: 85%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.leaf-6 {
    top: -50px;
    left: 20%;
    animation-duration: 8.5s;
    animation-delay: 5s;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}
