/* Critical CSS - Luxury Black & Gold Theme */
:root {
    /* Night / Orange Theme derived from PRAROZ image */
    --bg-dark: #0a1018;
    /* Deep Night Blue/Black */
    --bg-card: rgba(20, 30, 40, 0.8);
    /* Dark Semi-transparent */

    --primary-color: #ff6b00;
    /* Vivid Orange */
    --primary-dark: #e65100;
    /* Darker Orange */
    --accent-color: #ffffff;

    /* Mapping legacy vars to new Night vars */
    --gold-primary: #ff6b00;
    --gold-light: #ff9e40;
    --gold-dark: #e65100;

    --text-main: #ffffff;
    --text-muted: #b0bec5;
    /* Cool Grey */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --border-glass: 1px solid rgba(255, 107, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 107, 0, 0.25);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gold {
    color: var(--gold-primary);
}

.text-center {
    text-align: center;
}

/* Buttons - Thumb Friendly */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 100%;
    /* Mobile first: full width */
    min-height: 56px;
    /* Accessibility requirement */
}

@media (min-width: 768px) {
    .btn {
        width: auto;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.6);
    background: linear-gradient(135deg, var(--primary-color), #ff9e40);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
    color: var(--text-main);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 107, 0, 0.1);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.5;
}

/* Floating WhatsApp - Bottom Right */
.fab-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 64px;
    height: 64px;
    background: #25D366;
    /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-whatsapp:hover {
    transform: scale(1.1);
}

.fab-whatsapp svg {
    width: 36px;
    height: 36px;
    fill: #ffffff;
}

/* Navigation - Mobile Drawer style */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 900;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    /* Border removed as requested */
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Inter', sans-serif;
    /* Modern Thick Font */
    font-size: 2.2rem;
    /* Significantly Larger */
    font-weight: 900;
    /* Extra Bold */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Wider spacing for modern premium look */
    /* Shiny Gold Gradient */
    background: linear-gradient(135deg, #ffffff 0%, #ffde59 40%, #ff6b00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 0, 0.2));
    /* Nice glow */
    padding: 0.5rem 0;
    /* Space for the shadow */
}

/* Mobile Performance Optimization */
@media (max-width: 768px) {
    header {
        position: relative !important;
        /* FIXED -> RELATIVE: This stops all overlaps! */
        padding: 1.5rem 0;
        background: #000 !important;
    }

    .hero {
        background-image: none !important;
        background: linear-gradient(135deg, #0a1018 0%, #1a202c 100%) !important;
        padding: 4rem 1rem !important;
        /* Standard padding for relative layout */
        min-height: auto !important;
    }

    .hero-title {
        font-size: 2.22rem !important;
        line-height: 1.1;
        margin-bottom: 2rem !important;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.8rem !important;
    }

    /* Grid Section spacing */
    .container[style*="position: relative"],
    .container[style*="margin-top: -3rem"] {
        margin-top: 2rem !important;
        padding-top: 0;
    }
}