@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: black;
    line-height: 1.6;
}

:root {
    --nude-color: #E6C9BB;  /* Soft nude/peach color */
    --light-nude-color: #F3E6E0;  /* Light nude color (between tan and peach) */
}

/* Header Styles */
.header {
    text-align: center;
    padding: 2rem 0;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Carousel Styles */
.carousel {
    width: 100%;
    height: 400px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.carousel-placeholder {
    text-align: center;
    color: #666;
}

/* CTA Button Styles */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 200px;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background-color: black;
    color: white;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #333;
}

.calendar-icon {
    width: 16px;
    height: 16px;
}

/* Personal Note Styles */
.personal-note {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.personal-note .salutation {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.2px;
    opacity: 0.9;
}

.note-content {
    margin: 2rem 0;
    line-height: 1.8;
}

.signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 1rem;
    line-height: 1;
    letter-spacing: -0.2px;
    display: block;
    text-align: center;
    opacity: 0.9;
}

.personal-note .closing-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Salon Info Styles */
.salon-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
}

.salon-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.salon-details h2 {
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;  /* This ensures the map doesn't overflow the rounded corners */
}

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

.policy-card {
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.policy-card h3 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.policy-note {
    text-align: center;
    margin-top: 2rem;
    font-style: normal;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    font-weight: 300;
    letter-spacing: 2px;
}

/* Navigation Styles */
nav {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    background-color: white;
}

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

nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--nude-color);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 300;
}

p {
    margin-bottom: 1.5rem;
}

/* Services Styles */
.services-section {
    margin: 4rem 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-item {
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.service-price {
    color: #666;
    font-weight: 400;
}

.service-description {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-note {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-note ul {
    list-style-position: inside;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.service-note li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policies {
        grid-template-columns: 1fr;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .carousel {
        height: 300px;
    }
    
    .salon-info {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
    
    .service-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .service-price {
        font-size: 1rem;
    }

    .cta-button {
        width: 180px;
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }

    .calendar-icon {
        width: 14px;
        height: 14px;
    }

    .floating-button {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* Floating Book Now Button */
.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: black;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Navigation */
.mobile-menu-button {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    padding: 0.8rem;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: black;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    padding: 2rem;
    box-sizing: border-box;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-menu li {
    margin: 2rem 0;
}

.mobile-menu a {
    font-size: 1.5rem;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--nude-color);
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }

    nav.desktop-menu {
        display: none;
    }

    .service-item {
        margin: 1rem 0;
        padding: 1rem;
    }

    .service-title {
        flex-direction: column;
        gap: 0.5rem;
    }

    .floating-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Hide floating button on home page only on mobile */
    .home-page .floating-button {
        display: none;
    }

    main {
        padding: 1rem;
        padding-top: 4rem; /* Add space for hamburger menu */
    }

    .header h1 {
        font-size: 1.8rem;
        margin-top: 1rem; /* Reduced since we added padding-top to main */
    }

    .service-description {
        font-size: 0.9rem;
    }
}

/* Animation for mobile menu button */
.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.info-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-group h3 {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.info-group p {
    margin: 0;
    line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-icons img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .payment-icons {
        gap: 1.5rem;
    }
    
    .payment-icons img {
        height: 30px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
} 