/* Luxury Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Premium Header Styling - Ultra Luxury */
.hero h1 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(3rem, 6vw, 5rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.025em !important;
    word-spacing: 0.05em !important;
    color: #000000 !important;
    margin-bottom: 2rem !important;
    position: relative !important;
    z-index: 3 !important;
    transform: perspective(1000px) rotateX(2deg) !important;
}

/* Sophisticated shimmer effect - removed */

@keyframes premiumGlow {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.4)) 
                drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
    }
    25% {
        background-position: 50% 0%;
        filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.5)) 
                drop-shadow(0 15px 50px rgba(0, 0, 0, 0.4));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 70px rgba(255, 255, 255, 0.6)) 
                drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    }
    75% {
        background-position: 50% 100%;
        filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.5)) 
                drop-shadow(0 15px 50px rgba(0, 0, 0, 0.4));
    }
}

@keyframes subtleShimmer {
    0%, 100% {
        background-position: -200% -200%;
        opacity: 0.3;
    }
    50% {
        background-position: 200% 200%;
        opacity: 0.7;
    }
}

@keyframes textSweep {
    0%, 100% {
        background-position: -100% 0;
    }
    50% {
        background-position: 100% 0;
    }
}

/* Luxury subtitle styling */
.hero p {
    font-family: 'Inter', sans-serif !important;
    font-weight: 300 !important;
    font-size: clamp(1.2rem, 3vw, 1.5rem) !important;
    line-height: 1.7 !important;
    letter-spacing: 0.025em !important;
    word-spacing: 0.1em !important;
    color: #000000 !important;
    text-shadow: none !important;
    margin-bottom: 3rem !important;
    max-width: 650px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
    z-index: 2 !important;
    opacity: 0.95 !important;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1 !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.hero p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -30px;
    right: -30px;
    bottom: -10px;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.01) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0.01) 100%);
    z-index: -1;
    border-radius: 15px;
    filter: blur(20px);
    animation: subtleGlow 10s ease-in-out infinite;
}

/* Ultra-Premium CTA Button */
.cta-button {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 1.125rem !important;
    letter-spacing: 0.15em !important;
    word-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.8) 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-shadow: none !important;
    padding: 18px 36px !important;
    border-radius: 2px !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%);
    transition: left 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-button:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.08),
                0 8px 25px rgba(0, 0, 0, 0.3) !important;
    text-shadow: none !important;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98) !important;
    transition: all 0.1s ease !important;
}

/* Luxury Typography Enhancements */
@keyframes subtleGlow {
    0%, 100% {
        opacity: 0.3;
        filter: blur(20px);
    }
    50% {
        opacity: 0.6;
        filter: blur(25px);
    }
}

/* Additional luxury text elements */
.luxury-text {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    color: #000000 !important;
    text-shadow: none !important;
    font-feature-settings: "kern" 1, "liga" 1, "swsh" 1 !important;
}

.elegant-caps {
    font-variant: small-caps !important;
    letter-spacing: 0.1em !important;
    font-weight: 500 !important;
    text-transform: lowercase !important;
}

/* Mobile optimizations - Ultra responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.025em !important;
        transform: perspective(800px) rotateX(1deg) !important;
        filter: none !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero p {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem) !important;
        line-height: 1.6 !important;
        letter-spacing: 0.02em !important;
        margin-bottom: 2.5rem !important;
        max-width: 90% !important;
    }
    
    .cta-button {
        font-size: 1rem !important;
        padding: 16px 28px !important;
        letter-spacing: 0.12em !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem) !important;
        letter-spacing: -0.02em !important;
    }
    
    .hero p {
        font-size: clamp(1rem, 5vw, 1.2rem) !important;
        letter-spacing: 0.015em !important;
    }
    
    .cta-button {
        font-size: 0.95rem !important;
        padding: 14px 24px !important;
        letter-spacing: 0.1em !important;
    }
}

/* High DPI and Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero h1 {
        filter: none !important;
        -webkit-font-smoothing: antialiased !important;
        -moz-osx-font-smoothing: grayscale !important;
    }
    
    .hero p {
        text-shadow: none !important;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .hero h1 {
        font-size: clamp(4rem, 5vw, 6rem) !important;
        letter-spacing: -0.04em !important;
    }
    
    .hero p {
        font-size: clamp(1.4rem, 2vw, 1.8rem) !important;
        max-width: 800px !important;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero h1::before,
    .hero h1::after,
    .hero p::before,
    .cta-button,
    .cta-button::before {
        animation: none !important;
        transition: none !important;
    }
    
    .hero h1 {
        transform: none !important;
    }
}