:root {
    --primary-color: #6B705C; /* Olive Green */
    --secondary-color: #A5A58D; /* Sage Green */
    --accent-color: #B7B7A4; /* Beige */
    --text-dark: #333333;
    --text-light: #F0EFEB;
    --background-light: #FDFCF5;
    --white: #FFFFFF;
    
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border_box;
}

body {
    font-family: var(--font-main);
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-yoga.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 100px 0;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--primary-color);
}
