/* Banzik V9 - Main Stylesheet */

/* Custom CSS Variables */
:root {
    --primary: #0f1a2e;
    --secondary: #1a2b4d;
    --tertiary: #2c4a7a;
    --accent: #c9a961;
    --accent-light: #e8d7b1;
    --accent-dark: #a08750;
    --charcoal: #374151;
    --platinum: #e5e7eb;
    --cream: #faf9f7;
    --navy: #0f172a;
}

/* Animation Keyframes - Removed for static display */

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    antialiased: true;
    overflow-x: hidden;
}

/* Typography */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Background Gradients */
.premium-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--tertiary) 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 40%, var(--tertiary) 80%, rgba(201, 169, 97, 0.1) 100%);
}

/* Text Effects */
.gold-accent {
    background: linear-gradient(45deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Shadow Effects */
.luxury-shadow {
    box-shadow: 0 20px 60px rgba(15, 26, 46, 0.15), 0 8px 24px rgba(201, 169, 97, 0.08);
}

/* Border Effects */
.premium-border {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, rgba(201, 169, 97, 0.3), rgba(232, 215, 177, 0.3)) border-box;
}

/* Shimmer Effect */
.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Floating Elements */
.floating-elements::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-elements::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.05), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Navigation Styles */
.nav-blur {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 26, 46, 0.08);
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.animate-typewriter {
    animation: typewriter 3s steps(30) 1s both;
}

.animate-shimmer {
    animation: shimmer 2s infinite;
}

/* Section reveal CSS removed - no longer needed */

/* Parallax Elements */
.parallax-element {
    transform: translateY(var(--scroll-y));
}

/* Responsive Design */

/* Tablet and below (1024px) */
@media (max-width: 1023px) {
    /* Mobile Navigation */
    .sticky-nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }

    /* Hero sections tablet optimization */
    .hero-gradient {
        min-height: auto;
        padding: 3rem 0;
    }

    /* Grid adjustments for tablet */
    .grid.lg\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .hero-gradient {
        padding: 2.5rem 0;
    }

    .hero-gradient h1 {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .hero-gradient p {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    /* Reduce floating elements opacity more on tablet */
    .floating-elements .absolute {
        opacity: 0.2;
    }

    /* Reduce gradient overlay intensity on tablet */
    .hero-gradient .absolute.inset-0 {
        background: linear-gradient(135deg, var(--primary)/85, var(--secondary)/75) !important;
    }

    /* Button adjustments */
    .flex.flex-col.sm\\:flex-row {
        gap: 1rem;
    }

    /* Grid adjustments */
    .grid.grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Text sizing for tablet */
    .text-4xl {
        font-size: 1.75rem;
    }

    .text-5xl {
        font-size: 2.25rem;
    }

    .text-6xl {
        font-size: 2.5rem;
    }

    /* Improved mobile typography */
    body {
        font-size: 16px;
        line-height: 1.5;
    }

    p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    /* Better heading hierarchy on mobile */
    h1 { font-size: 2.25rem; line-height: 1.2; }
    h2 { font-size: 1.875rem; line-height: 1.3; }
    h3 { font-size: 1.5rem; line-height: 1.4; }
    h4 { font-size: 1.25rem; line-height: 1.5; }
    h5 { font-size: 1.125rem; line-height: 1.5; }
    h6 { font-size: 1rem; line-height: 1.5; }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Further reduce padding for very small screens */
    .container-padding {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Smaller typography for tiny screens */
    .hero-gradient h1 {
        font-size: 1.875rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-gradient p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    /* Better heading hierarchy for tiny screens */
    h1 { font-size: 1.875rem; line-height: 1.1; }
    h2 { font-size: 1.5rem; line-height: 1.2; }
    h3 { font-size: 1.25rem; line-height: 1.3; }
    h4 { font-size: 1.125rem; line-height: 1.4; }
    h5 { font-size: 1rem; line-height: 1.5; }
    h6 { font-size: 0.875rem; line-height: 1.5; }

    /* Ensure text remains readable on tiny screens */
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Grid becomes single column on tiny screens */
    .grid.grid-cols-3,
    .grid.grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Floating elements completely hidden on tiny screens */
    .floating-elements .absolute {
        display: none;
    }
}

/* Mobile and below (640px) */
@media (max-width: 640px) {
    /* Hero sections mobile optimization */
    .hero-gradient {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-gradient h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-gradient p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    /* Floating elements - reduce on mobile */
    .floating-elements .absolute {
        opacity: 0.15;
    }

    /* Further reduce gradient overlay intensity on mobile */
    .hero-gradient .absolute.inset-0 {
        background: linear-gradient(135deg, var(--primary)/80, var(--secondary)/70) !important;
    }

    /* Button spacing on mobile */
    .flex.flex-col.sm\\:flex-row {
        gap: 1rem;
    }

    /* Glass effect adjustments */
    .glass-effect {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    /* Grid adjustments */
    .grid.grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .grid.lg\\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Text sizing */
    .text-4xl {
        font-size: 1.875rem;
    }

    .text-5xl {
        font-size: 2.25rem;
    }

    .text-6xl {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    /* Extra small screens */
    .section-padding {
        padding: 3rem 0;
    }

    .container-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-gradient {
        padding: 2rem 0 3rem 0;
    }

    .hero-gradient h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-gradient p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .glass-effect {
        padding: 1rem;
        margin-top: 1.5rem;
    }

    /* Form improvements */
    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }

    /* CTA improvements */
    .text-4xl.lg\\:text-5xl {
        font-size: 1.75rem;
    }

    /* Navigation improvements */
    .nav-blur {
        padding: 0.5rem 0;
    }

    /* Static display - no animations */
    .animate-float {
        animation: none;
        transform: none;
    }

    .typing-animation {
        animation: none;
        white-space: normal;
    }
}

/* Loading State - Removed for immediate display */