/* 
   İzmir Tenteci - NATURE LUXE Premium Design System
   Açık, Ferah, Doğal ve Lüks Tema
   "Gölge = Doğa + Konfor"
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* ═══════════════════════════════════════════════════════════
       PREMIUM CORPORATE COLOR PALETTE - Prestij & Güven
    ═══════════════════════════════════════════════════════════ */

    /* Primary - Kurumsal Lacivert */
    --nl-forest: #0A2342;
    --nl-forest-light: #15325A;
    --nl-forest-dark: #051528;

    /* Secondary - Parlak Altın */
    --nl-gold: #C9A961;
    --nl-gold-light: #D4B978;
    --nl-gold-dark: #B8942D;

    /* REPLACED: Accent was Teal, now Gold/Navy compatible */
    --nl-earth: #0A2342;
    /* Was #1B5F6F (Teal) */
    --nl-sand: #E8F1F4;
    --nl-cream: #F5F0E8;

    /* Backgrounds */
    --nl-bg: #FFFFFF;
    /* Was #FAFAFA, ensuring pure white to avoid muddy look */
    --nl-bg-pure: #FFFFFF;
    --nl-bg-soft: #F5F5F5;
    --nl-bg-warm: #FAF8F5;
    --nl-bg-glass: rgba(255, 255, 255, 0.95);

    /* Text Colors */
    --nl-text: #1A1A1A;
    --nl-text-soft: #333333;
    --nl-text-muted: #6B7280;
    --nl-text-light: #9CA3AF;

    /* Borders */
    --nl-border: rgba(10, 35, 66, 0.08);
    --nl-border-strong: rgba(10, 35, 66, 0.12);
    --nl-border-gold: rgba(201, 169, 97, 0.4);

    /* Gradients - REMOVED TEAL/GREEN */
    --nl-grad-hero: linear-gradient(135deg, #0A2342 0%, #15325A 100%);
    /* Was mixing with Teal */
    --nl-grad-forest: linear-gradient(135deg, #0A2342 0%, #15325A 100%);
    --nl-grad-gold: linear-gradient(135deg, #C9A961 0%, #E6D2A0 50%, #B8942D 100%);
    --nl-grad-card: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    --nl-grad-warm: linear-gradient(135deg, #FAFAFA 0%, #F5F0E8 100%);

    /* Shadows - Deep & Corporate */
    --nl-shadow-sm: 0 4px 12px rgba(10, 35, 66, 0.05);
    --nl-shadow-md: 0 8px 24px rgba(10, 35, 66, 0.08);
    --nl-shadow-lg: 0 16px 40px rgba(10, 35, 66, 0.12);
    --nl-shadow-xl: 0 24px 60px rgba(10, 35, 66, 0.15);
    --nl-shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.25);
    --nl-shadow-float: 0 20px 50px rgba(10, 35, 66, 0.2);

    /* Typography */
    --nl-font: 'Inter', system-ui, -apple-system, sans-serif;
    --nl-font-serif: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --nl-section-pad: 120px;
    --nl-container: 1400px;

    /* Radius */
    --nl-radius: 16px;
    --nl-radius-lg: 24px;
    --nl-radius-xl: 40px;
    --nl-radius-full: 9999px;

    /* Effects */
    --nl-glass-blur: blur(20px);
    --nl-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --nl-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --nl-ease-out: cubic-bezier(0.165, 0.84, 0.44, 1);
    --nl-ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ═══════════════════════════════════════════════════════════
       SHORT ALIASES (for components.css compatibility)
    ═══════════════════════════════════════════════════════════ */
    --forest: #0A2342;
    /* Was #1E3A2F (Green) */
    --forest-light: #15325A;
    /* Was #2D5A47 (Green) */
    --gold: #C9A961;
    --gold-light: #D4B978;
    --cream: #F5F0E8;
    --bg: #FAFAFA;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --text-soft: #4A4A4A;
    --text-muted: #777777;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --font-serif: 'Playfair Display', Georgia, serif;
}


/* ═══════════════════════════════════════════════════════════
   BASE STYLES - Nature Luxe
═══════════════════════════════════════════════════════════ */

body {
    font-family: var(--nl-font);
    background-color: var(--nl-bg);
    color: var(--nl-text);
    margin: 0;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--nl-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Headings - Elegant Serif */
h1,
h2,
h3 {
    font-family: var(--nl-font-serif);
    font-weight: 600;
    color: var(--nl-text);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Text Utilities */
.text-forest {
    color: var(--nl-forest);
}

.text-gold {
    color: var(--nl-gold);
}

.text-muted {
    color: var(--nl-text-muted);
}

/* Smooth Scrolling - Disabled due to user frustration/lag with GSAP */
html {
    /* scroll-behavior: smooth; */
}

/* Selection */
::selection {
    background: var(--nl-gold);
    color: var(--nl-bg-pure);
}

/* ═══════════════════════════════════════════════════════════
   COMPONENT SYSTEM
═══════════════════════════════════════════════════════════ */

/* Premium Badge */
.nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--nl-bg-pure);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--nl-forest);
    box-shadow: var(--nl-shadow-sm);
}

/* Section Title */
.nl-title {
    font-family: var(--nl-font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--nl-text);
}

.nl-title span,
.nl-title em {
    color: var(--nl-forest);
    font-style: normal;
}

/* Glass Card */
.nl-glass {
    background: var(--nl-bg-glass);
    backdrop-filter: var(--nl-glass-blur);
    -webkit-backdrop-filter: var(--nl-glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--nl-radius);
}

/* Premium Card */
.nl-card {
    background: var(--nl-bg-pure);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    padding: 32px;
    transition: var(--nl-transition);
    box-shadow: var(--nl-shadow-sm);
}

.nl-card:hover {
    border-color: var(--nl-gold);
    box-shadow: var(--nl-shadow-lg);
    transform: translateY(-8px);
}

/* Primary Button - Forest */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--nl-grad-forest);
    color: #FFFFFF;
    border: none;
    border-radius: var(--nl-radius-full);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--nl-transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--nl-shadow-float);
}

/* Secondary Button - Gold Outline */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--nl-forest);
    border: 2px solid var(--nl-forest);
    border-radius: var(--nl-radius-full);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--nl-transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--nl-forest);
    color: #FFFFFF;
    transform: translateY(-4px);
}

/* Gold Button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--nl-grad-gold);
    color: var(--nl-forest);
    border: none;
    border-radius: var(--nl-radius-full);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--nl-transition);
    text-decoration: none;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: var(--nl-shadow-gold);
}

/* Divider */
.nl-divider {
    width: 80px;
    height: 3px;
    background: var(--nl-grad-gold);
    border-radius: 3px;
    margin: 24px 0;
}

/* Section Padding */
.nl-section {
    padding: var(--nl-section-pad) 0;
    background-color: var(--nl-bg-pure);
}

.nl-section-alt {
    background: var(--nl-bg-warm);
}

/* ═══════════════════════════════════════════════════════════
   TRUST INDICATORS
═══════════════════════════════════════════════════════════ */

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--nl-bg-pure);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius);
    transition: var(--nl-transition);
}

.trust-badge:hover {
    border-color: var(--nl-gold);
    box-shadow: var(--nl-shadow-md);
}

.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nl-cream);
    border-radius: 12px;
    color: var(--nl-forest);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s var(--nl-ease-out) forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}