/* ========================================
   VELVET HAZEL - MAIN STYLESHEET
   Root Variables & Base Styles Only
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Nunito:wght@400;600;700&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --red: #E2001A;
    --red-dark: #B8001A;
    --red-light: #FF1A3D;
    --brown-dark: #2E150A;
    --brown-med: #482006;
    --brown-light: #6C3B1E;
    --brown-lighter: #8B5A3C;
    --gold: #FAB303;
    --gold-light: #FFE69B;
    --cream: #FFFDF9;
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-red: 0 8px 25px rgba(226,0,26,0.35);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', Arial, sans-serif;
    background: var(--white);
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}

/* ========================================
   CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-red:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--brown-dark);
    transform: translateY(-3px);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}

.btn-outline-red:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-dark {
    background: var(--brown-dark);
    color: var(--white);
    border-color: var(--brown-dark);
}

.btn-dark:hover {
    background: var(--brown-med);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   BADGE
   ======================================== */
.badge {
    display: inline-block;
    padding: 8px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    background: var(--red);
    color: var(--white);
}

.badge-gold {
    background: var(--gold);
    color: var(--brown-dark);
}

.badge-dark {
    background: var(--brown-dark);
    color: var(--white);
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-med) 50%, var(--brown-light) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(250,179,3,0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(226,0,26,0.1) 0%, transparent 40%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .badge {
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-med));
}

.section-cream {
    background: var(--cream);
}

.section-red {
    background: var(--red);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .badge {
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--brown-med);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: var(--gold-light);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
