/**
 * Base Styles - Vitals MedSpa
 * CSS Reset, Variables, Typography, and Common Elements
 */

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

/* CSS Variables - Standardized */
:root {
    /* Primary Colors */
    --primary-orange: #ef5128;
    --secondary-orange: #ff7555;

    /* Neutral Colors */
    --text-dark: #333333;
    --text-light: #666666;
    --accent-gray: #989898;

    /* Background Colors */
    --white: #ffffff;
    --bg-cream: #faf8f5;
    --bg-light: #f8f9fa;

    /* Legacy aliases for compatibility */
    --primary-color: var(--primary-orange);
    --secondary-color: var(--secondary-orange);
    --accent-color: var(--accent-gray);
}

/* Typography */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.3;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle,
.intro-text {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Links */
a {
    color: var(--primary-orange);
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-orange);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}
