/* Custom Properties / Design System */
:root {
    /* Colors */
    --clr-primary: #1a1a1a;
    --clr-primary-light: #2c2c2c;
    --clr-accent: #cda87c; /* Gold/Beige */
    --clr-accent-hover: #b48c5b;
    --clr-background: #ffffff;
    --clr-surface: #f8f8f8;
    --clr-text: #333333;
    --clr-text-light: #777777;
    --clr-border: #e2e2e2;
    --clr-error: #d9534f;
    --clr-success: #5cb85c;
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Borders & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    
    /* Transitions */
    --tr-fast: 0.2s ease;
    --tr-med: 0.3s ease;
    --tr-slow: 0.5s ease-in-out;
}

/* Reset & Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--clr-text);
    background-color: var(--clr-background);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--tr-fast);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--clr-primary);
    font-weight: 600;
    line-height: 1.2;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section-padding {
    padding: var(--space-lg) 0;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    position: relative;
    display: inline-block;
}

.heading-line {
    width: 60px;
    height: 2px;
    background-color: var(--clr-accent);
    margin: 0 auto;
}

.section-header .view-all {
    position: absolute;
    right: 0;
    bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-header .view-all:hover {
    color: var(--clr-accent);
}

.section-header .view-all i {
    transition: transform var(--tr-fast);
}

.section-header .view-all:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .section-header .view-all {
        position: relative;
        display: inline-flex;
        margin-top: var(--space-sm);
        bottom: 0;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
