/* ========================================
   HIRA PRINT - INTERNATIONAL PREMIUM DESIGN
   Part 1: Variables, Reset, Base Styles
======================================== */

/* Import other CSS parts */
@import url('components.css');
@import url('hero.css');
@import url('sections.css');
@import url('sections2.css');
@import url('sections3.css');
@import url('animations.css');
@import url('mobile.css');

:root {
    /* Premium Colors */
    --gold: #d4af37;
    --gold-light: #e8c547;
    --gold-dark: #b8962e;
    --navy: #0a1628;
    --navy-light: #1a2d4a;
    --navy-dark: #050d18;
    
    /* Neutrals */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --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 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 30px rgba(212,175,55,0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;
    
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 1000;
    --z-modal: 1100;
    --z-tooltip: 1200;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol { list-style: none; }

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button { cursor: pointer; }

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Section */
.section {
    padding: var(--space-5xl) 0;
}

@media (max-width: 992px) {
    .section {
        padding: var(--space-4xl) 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .container {
        padding: 0 var(--space-sm);
    }
}

/* Typography Utilities */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }

/* Section Header */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-lg);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: var(--space-lg);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
}

.section-header--center {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header--center .section-desc {
    margin: 0 auto;
}

.section-header--light .section-title {
    color: var(--white);
}

.section-header--light .section-desc {
    color: rgba(255,255,255,0.7);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::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.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.4);
}

.btn--outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn--white {
    background: var(--white);
    color: var(--navy);
}

.btn--white:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.btn--outline-white {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 0.95rem;
}

.btn--block {
    width: 100%;
}

.btn i {
    font-size: 0.85em;
    transition: transform var(--transition-base);
}

.btn:hover i {
    transform: translateX(4px);
}

/* Mobile Button Fixes */
@media (max-width: 768px) {
    .btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.8rem;
        letter-spacing: 0.03em;
    }

    .btn--lg {
        padding: var(--space-md) var(--space-xl);
        font-size: 0.85rem;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 4px 12px;
        letter-spacing: 0.12em;
    }

    .section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
        line-height: 1.3;
    }

    .section-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .section-header--center {
        margin-bottom: var(--space-2xl);
    }
}

@media (max-width: 480px) {
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.75rem;
        letter-spacing: 0.02em;
    }

    .btn--lg {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.8rem;
    }

    .section-tag {
        font-size: 0.6rem;
        padding: 3px 10px;
    }

    .section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .section-desc {
        font-size: 0.8rem;
    }
}
