/* --- VARIABLES --- */
:root {
    --bg-color: #FDF5F5;      /* Soft Blush */
    --text-color: #333333;    /* Charcoal */
    --accent-color: #D4AF37;  /* Muted Gold */
    --white: #ffffff;
    --light-pink: #fcebeb;    /* Header backgrounds */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* --- RESET & GLOBAL --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

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

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; }
a { text-decoration: none; color: var(--text-color); transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* --- NAVIGATION BAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 100;
}

.logo-img {
    max-height: 70px;
    width: auto;
    display: block;
}

.navbar-links ul { display: flex; gap: 2rem; }
.navbar-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.navbar-links a:hover { color: var(--accent-color); }

/* Hamburger Menu (Hidden on Desktop) */
.toggle-button { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.toggle-button .bar { width: 25px; height: 2px; background-color: var(--text-color); border-radius: 10px; }

/* --- HEADERS --- */
.hero {
    /* UPDATED: Reduced to 50% of screen height (Letterbox style) */
    height: 55vh; 
    min-height: 350px; /* Reduced min-height so it doesn't look too tall on laptops */

    /* Aligns image to the TOP so your head isn't cut off */
    background-position: center top; 
    
    /* Make sure to name your photo 'hero-amy.jpg' */
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/hero-bg.jpg');
    
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; text-shadow: 1px 1px 4px rgba(0,0,0,0.3); }

/* Mobile Adjustment for Hero */
@media (max-width: 768px) {
    .hero {
        height: 40vh; /* Even smaller on phones */
    }
}

.page-header {
    background-color: var(--light-pink);
    padding: 3rem 1rem;
    text-align: center;
}
.page-header h1 { font-size: 2.5rem; color: var(--text-color); }
.page-header p { font-style: italic; margin-top: 0.5rem; color: #666; }

/* --- BUTTONS --- */
.btn-gold {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}
.btn-gold:hover { background-color: #bfa13d; }

.btn-pink {
    background-color: #dfa6ac; /* Dusty Rose Pink */
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-pink:hover {
    background-color: #c98e94; /* Slightly darker pink */
    color: #ffffff;
}

/* --- SECTIONS & LAYOUT --- */
.container { padding: 1rem 2rem; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

/* Highlights / Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: center; }

.card { background: var(--white); padding: 2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.05); text-align: center; }
.card h3 { margin-bottom: 1rem; color: var(--accent-color); }

/* About Page Specifics */
.about-img { border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.about-text h2 { margin-bottom: 1rem; color: var(--accent-color); font-size: 2rem; }
.about-text p { margin-bottom: 1rem; color: #555; }

/* Price List Specifics */
.price-list-container { max-width: 800px; margin: 0 auto; }
.price-category { margin-bottom: 3rem; }
.price-category h2 { text-align: center; margin-bottom: 0.5rem; color: var(--accent-color); }
.category-intro { text-align: center; font-style: italic; margin-bottom: 1.5rem; font-size: 0.9rem; color: #666; }

.price-item {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 1rem; border-bottom: 1px dotted #ccc; padding-bottom: 5px;
}
.price-item .service { font-weight: 400; font-size: 1.05rem; }
.price-item .price { font-weight: 600; font-family: var(--font-heading); font-size: 1.2rem; }

.upgrade-box {
    background-color: #fafafa; border: 1px solid #eee; padding: 1.5rem;
    margin: 1.5rem 0; text-align: center; border-radius: 4px;
}
.upgrade-box h4 { color: var(--accent-color); margin-bottom: 0.5rem; }

/* Products Page */
.product-category { margin-bottom: 4rem; }
.product-category h2 {
    color: var(--accent-color); margin-bottom: 2rem; font-size: 1.8rem;
    text-transform: uppercase; letter-spacing: 2px;
}
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: start; }

.product-card {
    background: #fff; border: 1px solid #eee; border-radius: 4px; overflow: hidden;
    cursor: pointer; transition: box-shadow 0.3s ease, transform 0.3s ease; text-align: left;
}
.product-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-card img { width: 100%; height: 250px; object-fit: cover; display: block; }

.product-info { padding: 1.5rem; }
.product-header { display: flex; justify-content: space-between; align-items: center; }
.product-header h3 { margin: 0; font-size: 1.2rem; color: var(--text-color); }
.toggle-icon { font-size: 1.5rem; color: var(--accent-color); font-weight: bold; transition: transform 0.3s ease; }

.product-desc { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; opacity: 0; }
.product-desc p { margin-top: 1rem; font-size: 0.95rem; color: #666; line-height: 1.6; }

/* Active Product Card State */
.product-card.active .product-desc { max-height: 500px; opacity: 1; }
.product-card.active .toggle-icon { transform: rotate(45deg); }
.product-card.active { border-color: var(--accent-color); }

/* Contact Page Layout */
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 4rem; justify-content: center; }
.contact-info, .contact-hours { flex: 1; min-width: 300px; background: #fff; padding: 2rem; border-radius: 4px; }
.contact-item { margin-bottom: 1.5rem; }
.contact-item h3 { color: var(--accent-color); margin-bottom: 0.5rem; font-size: 1.2rem; }

/* Social Media Pill Buttons */
.social-buttons { display: flex; gap: 15px; margin-top: 15px; }
.social-btn {
    background-color: #dfa6ac; /* Matches your Logo Pink */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px; /* Rounded 'pill' shape */
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #dfa6ac;
    transition: all 0.3s ease;
}
.social-btn:hover {
    background-color: #ffffff;
    color: #dfa6ac;
    border-color: #dfa6ac;
    transform: translateY(-2px);
}
.social-btn i { font-size: 1.1rem; }

/* --- CUSTOMER REVIEWS --- */
.review-section { margin-top: 1rem; margin-bottom: 1rem; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }

.review-card {
    background: #ffffff; padding: 2.5rem 2rem; border-radius: 4px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease;
}
.review-card:hover { transform: translateY(-5px); }

.stars { color: var(--accent-color); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-family: var(--font-body); font-style: italic; color: #666; margin-bottom: 1.5rem; line-height: 1.8; font-size: 0.95rem; }
.client-name { font-family: var(--font-heading); font-weight: 600; color: var(--text-color); font-size: 1.1rem; }

/* --- AFTERCARE & POLICIES --- */
.golden-rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; text-align: center; }
.rule-item { padding: 1rem; }
.rule-icon { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1rem; display: inline-block; }

.clean-card {
    background: #fff; padding: 2rem; border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); height: 100%; transition: transform 0.3s ease;
}
.clean-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.clean-card h3 { color: var(--accent-color); margin-bottom: 1rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; display: inline-block; }
.clean-card ul { list-style: none; }
.clean-card li { margin-bottom: 1rem; position: relative; padding-left: 1.5rem; color: #555; font-size: 0.95rem; }
.clean-card li::before {
    content: "•"; color: var(--accent-color); font-weight: bold; font-size: 1.2rem;
    position: absolute; left: 0; top: -2px;
}

.alert-box {
    background-color: #fff9f9; border-left: 4px solid #eebbba;
    padding: 2rem; margin-top: 3rem; border-radius: 4px;
}

/* --- FOOTER --- */
footer {
    background-color: #fff; padding: 2rem; text-align: center;
    border-top: 1px solid #eee; font-size: 0.9rem; margin-top: auto;
}
.footer-content p { margin-bottom: 0.5rem; color: #777; }
.socials { margin-bottom: 1rem; font-weight: bold; letter-spacing: 1px; }

/* --- INSTAGRAM GRID --- */
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1 / 1; cursor: pointer; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.insta-item:hover img { transform: scale(1.1); }

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3); display: flex; justify-content: center; align-items: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.overlay i { color: white; font-size: 2rem; }
.insta-item:hover .overlay { opacity: 1; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .toggle-button { display: flex; }
    
    .navbar-links {
        display: none; width: 100%; position: absolute; top: 100%; left: 0;
        background-color: var(--white); padding: 1rem 0; box-shadow: 0 4px 5px rgba(0,0,0,0.1);
    }
    .navbar-links.active { display: flex; }
    .navbar-links ul { flex-direction: column; width: 100%; gap: 0; }
    .navbar-links li { text-align: center; }
    .navbar-links li a { display: block; padding: 1rem; }
    
    .hero h1 { font-size: 2rem; padding: 0 1rem; }
    .grid-3, .grid-2, .golden-rules-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-wrapper { flex-direction: column; gap: 2rem; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    
    .about-text { order: 2; }
    .about-img { order: 1; }
}