:root {
    --primary-green: #32A45C;
    --secondary-green: #4a7863;
    --light-green: #e8f3ec;
    --accent-gold: #c8b273;
    --text-dark: #333333;
    --text-light: #f8f8f8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

/* Header Styles */
header {
    background-color: var(--primary-green);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: var(--accent-gold);
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 5px 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

nav ul li a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('salon-interior.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Section Titles */
.section-title {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 40px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: var(--light-green);
}

.service-category {
    margin-bottom: 50px;
}

.service-category h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
    padding: 0 10px;
}

.service-category h3 span {
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
    display: block;
    margin-top: 5px;
}

.service-table {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: var(--shadow);
    background-color: white;
}

th, td {
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
    word-wrap: break-word;
}

th {
    background-color: var(--primary-green);
    color: white;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e8f3ec;
}

.add-ons table {
    min-width: 500px;
}

/* Policies Section */
.policies {
    padding: 60px 0;
    background-color: white;
}

.policy-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-card {
    background-color: var(--light-green);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.policy-card h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.3;
}

.policy-card ul {
    list-style-position: inside;
}

.policy-card li {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: var(--light-green);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-green);
    margin: 20px 0 10px;
    font-size: 18px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .logo {
    font-size: 22px;
    margin-bottom: 15px;
}

.social-links {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 16px;
    margin: 5px 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--accent-gold);
}

footer p {
    font-size: 14px;
    margin-top: 10px;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    /* Header Mobile */
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    nav ul {
        justify-content: center;
        margin: 0;
    }
    
    nav ul li {
        margin: 5px 8px;
    }
    
    nav ul li a {
        font-size: 13px;
        padding: 5px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 350px;
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    /* Sections Mobile */
    .services,
    .policies,
    .contact {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    /* Service Tables Mobile */
    .service-category h3 {
        font-size: 18px;
        padding: 0 15px;
    }
    
    .service-category h3 span {
        font-size: 13px;
    }
    
    .service-table {
        margin: 0 -10px;
        padding: 0 10px;
    }
    
    table {
        min-width: 500px;
        font-size: 13px;
    }
    
    th, td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    th {
        font-size: 11px;
    }
    
    /* Policy Cards Mobile */
    .policy-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .policy-card h3 {
        font-size: 18px;
    }
    
    .policy-card li {
        font-size: 14px;
    }
    
    /* Contact Mobile */
    .contact-info {
        padding: 20px;
        margin: 0 10px;
    }
    
    .contact-info h3 {
        font-size: 16px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
    
    .map-container {
        height: 250px;
        margin: 0 10px;
    }
    
    /* Button Mobile */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-category h3 {
        font-size: 16px;
    }
    
    table {
        min-width: 450px;
    }
    
    th, td {
        padding: 6px 4px;
        font-size: 11px;
    }
    
    .policy-card,
    .contact-info {
        padding: 15px;
    }
    
    .map-container {
        height: 200px;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 250px;
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}