/* --- GLOBAL VARIABLES --- */
:root {
    --primary-color: #d4a373; /* Warm, salon-friendly neutral */
    --primary-dark: #bc8f62;
    --background-color: #faf8f5;
    --text-color: #333333;
    --white: #ffffff;
}

/* --- BASE STYLES --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- NAVIGATION BAR --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background-color: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

/* This class is added by JavaScript when scrolling */
#navbar.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- HERO SECTION --- */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f2ebe3; /* Soft background block */
    padding: 0 20px;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 40px;
}

/* --- BUTTONS --- */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button, .ig-link {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 50px; /* Pill-shaped buttons look modern */
    transition: all 0.3s ease;
    font-weight: bold;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.6);
}

.ig-link {
    color: var(--text-color);
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

.ig-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- SERVICES SECTION --- */
.services {
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* Adds a cute little underline to the section header */
.services h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.services p {
    font-size: 1.2em;
    color: #555;
}

/* --- FOOTER --- */
footer {
    padding: 40px 20px;
    background-color: #222;
    color: var(--white);
    text-align: center;
}

/* --- RESPONSIVE DESIGN (For Mobile Phones) --- */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    .button-group {
        flex-direction: column;
        gap: 15px;
    }
}
