/* Beauty Studio Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf9f7;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.business-name {
    color: #8b4d6b;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #5d4e37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-nav a {
    text-decoration: none;
    color: #5d4e37;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #8b4d6b;
    color: white;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 70vh;
}

/* Hero Section */
.hero-section {
    text-align: center;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #8b4d6b;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5d4e37;
    margin-bottom: 2rem;
}

/* Page Headers */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8ddd4;
}

.page-header h1 {
    font-size: 2.2rem;
    color: #8b4d6b;
    margin-bottom: 1rem;
    font-weight: 300;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #5d4e37;
}

/* Service Cards */
.services-grid,
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card,
.package {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover,
.package:hover {
    transform: translateY(-5px);
}

.service-card h3,
.package h3 {
    color: #8b4d6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.package ul {
    list-style: none;
    margin: 1rem 0;
}

.package li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package li:before {
    content: "✓";
    color: #8b4d6b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b4d6b;
    margin-top: 1rem;
}

.duration {
    font-weight: bold;
    color: #5d4e37;
    margin-bottom: 0.5rem;
}

/* Buttons */
.cta-button,
.service-link,
.submit-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b4d6b 0%, #a05d71 100%);
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover,
.service-link:hover,
.submit-button:hover {
    background: linear-gradient(135deg, #a05d71 0%, #8b4d6b 100%);
    transform: translateY(-2px);
}

/* Sections */
.services-overview,
.service-details,
.about-preview,
.booking-cta,
.contact-info,
.booking-info {
    margin: 3rem 0;
}

.booking-cta {
    text-align: center;
    background: #f5f1eb;
    padding: 3rem;
    border-radius: 15px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #8b4d6b;
    margin-bottom: 0.5rem;
}

/* Forms */
.inquiry-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5d4e37;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e8ddd4;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4d6b;
}

/* Booking Policies */
.booking-policies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.policy {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.policy h3 {
    color: #8b4d6b;
    margin-bottom: 1rem;
}

.policy ul {
    list-style: none;
}

.policy li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.policy li:before {
    content: "•";
    color: #8b4d6b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Info Sections */
.service-description,
.facial-info,
.massage-info,
.henna-care {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.service-description h2,
.facial-info h2,
.massage-info h2,
.henna-care h2 {
    color: #8b4d6b;
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #5d4e37 0%, #8b4d6b 100%);
    color: white;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    background-color: rgba(255,255,255,0.2);
}

.social-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1); /* Makes the icon white */
    transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(0.8); /* Slightly dimmed on hover */
}

.copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }

    .logo-container {
        margin-bottom: 0.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem 2rem 2rem 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        text-align: left;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .main-content {
        padding: 1rem;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .business-name {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}
