/* ==========================================================================
   Design Buzz - CSS Variables, Reset & Base Typography
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    --primary: #1a1a1f;
    --primary-light: #2a2a32;
    --primary-dark: #0d0d0f;
    --accent: #e67e22;
    --accent-light: #f39c12;
    --text: #ffffff;
    --text-light: #a0a0a0;
    --success: #27ae60;
    --error: #e74c3c;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;

    --nav-height: 80px;
    --nav-height-mobile: 60px;
    --container-max: 1200px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;
    --grid-gap: 24px;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--primary-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

ul, ol {
    list-style: none;
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

/* --- Section Headers --- */
.section-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subheading {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.divider span {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.divider-icon {
    color: var(--accent);
    font-size: 0.75rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

/* --- Label/Tag Styles --- */
.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .container {
        padding: 0 1rem;
    }
}
