/* Design System v2.5 - Cherie Polish */
@import url('fonts.css');
@import url('fontawesome.css');

:root {
    --color-primary: #111111;
    /* Deep Black */
    --color-background: #ffffff;
    --color-text: #4A4A4A;
    --color-white: #ffffff;
    --color-accent: #A89F91;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 6rem;

    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* LAYOUT UTILS */
.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HEADER - STICKY & TRANSPARENT */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    color: var(--color-white);
    /* Default to white for Hero */
}

header.scrolled {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-body);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    color: inherit;
}

.nav-center {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: inherit;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
}

/* HERO SECTION - Full Screen with Overlay */
.hero {
    position: relative;
    height: 100vh;
    background: url('img/home_hero.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
}

/* Dark Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 15px 35px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--color-white);
}

.btn-transparent {
    background-color: transparent;
    color: var(--color-white);
}

.btn-transparent:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Hero Footer Overlay */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 3rem 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    text-align: center;
    color: var(--color-white);
    font-size: 0.9rem;
}

.info-col h4 {
    color: var(--color-white);
    /* Override default primary color */
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-col p {
    margin-bottom: 0.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* SERVICE MENU ICONS SECTION */
.service-menu-section {
    padding: 6rem 0;
    text-align: center;
}

.service-menu-title {
    font-size: 3.5rem;
    margin-bottom: 4rem;
}

.service-icons-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.service-icon-item:hover,
.service-icon-item.active {
    opacity: 1;
}

.service-icon-circle {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon-circle svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.5px;
    /* Matching the requested thicker linear style */
}

.service-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}

.service-icon-item.active .service-label {
    border-color: var(--color-primary);
}

.quote-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 500;
    color: var(--color-primary);
}

.btn-black {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

.btn-black:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Subpage Specific Styles */
.subpage-hero-quote {
    font-family: var(--font-heading);
    font-size: 4rem;
    /* Match homepage scale closer */
    max-width: 900px;
    margin: 0 auto 4rem auto;
    line-height: 1.1;
    color: var(--color-white);
    text-shadow: none;
    /* Explicitly requested: No shadow */
    font-weight: 400;
}

.service-list-container {
    max-width: 800px;
    width: 92%;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.service-category-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-lg);
    color: var(--color-primary);
}

.service-category-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.8;
}

.service-group {
    margin-bottom: var(--spacing-lg);
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Fine separator */
}

.service-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-row-info {
    flex: 1;
    padding-right: 2rem;
}

.service-row-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
    display: block;
}

.service-row-meta {
    font-size: 0.85rem;
    color: #888;
    font-weight: 300;
    display: block;
}

.service-row-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    /* Spacious gap */
}

.service-row-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-primary);
    min-width: 50px;
    text-align: right;
}

.service-plus-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ccc;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

/* Accordion Styles */
.service-row.accordion-enabled {
    flex-wrap: wrap;
    cursor: pointer;
}

.service-description {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 0;
}

.service-row.active .service-description {
    max-height: 400px;
    opacity: 1;
    margin-top: 1rem;
}

.service-row.active .service-plus-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}



/* MOBILE RESPONSIVE */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .container,
    .service-list-container,
    .form-container {
        width: 85%;
    }

    header {
        padding: 15px 0;
        background-color: var(--color-white);
        color: var(--color-primary) !important;
    }

    .nav-center {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        gap: 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-center.open {
        display: flex;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Fix Hero clipping on small screens */
    .hero {
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 120px; /* Clear the fixed header */
    }

    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .subpage-hero-quote {
        font-size: 2rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-footer {
        position: relative;
        background: #111;
        padding: 2rem 0;
        width: 100%;
    }

    .hero-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-icons-grid {
        gap: 2rem;
    }

    .service-icon-item {
        width: 45%;
    }

    /* Better spacing and text fitting for service rows on mobile */
    .service-row {
        padding: 1rem 0;
        align-items: center;
    }
    .service-row-info {
        padding-right: 1rem;
    }
    .service-row-right {
        gap: 1rem;
    }
    .service-row-name {
        font-size: 1rem;
        word-wrap: break-word;
        white-space: normal;
    }
    .service-row-price {
        font-size: 1rem;
        min-width: auto;
    }
    .service-row-meta {
        font-size: 0.8rem;
    }
    .service-plus-icon {
        font-size: 1.25rem;
    }

    /* Fix promo section text sizes */
    .promo-section h2 {
        font-size: 1.8rem !important;
    }
    .promo-section p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 0.5rem;
    }

    .service-category-title {
        font-size: 2rem;
    }
}

/* Main Footer */
.main-footer {
    background-color: #111;
    /* Dark Background */
    padding: 5rem 0 3rem 0;
    color: #fff;
    /* White Text */
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-menu a:hover {
    color: #fff;
    opacity: 1;
}

.footer-newsletter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-newsletter-text {
    margin-bottom: 1.5rem;
    color: #aaa;
}

.footer-form {
    display: flex;
    border: 1px solid #fff;
    margin-bottom: 2rem;
}

.footer-input {
    flex: 1;
    border: none;
    padding: 12px;
    background: transparent;
    font-family: var(--font-body);
    outline: none;
    color: #fff;
}

.footer-input::placeholder {
    color: #888;
}

.footer-btn {
    background: transparent;
    border: none;
    border-left: 1px solid #fff;
    padding: 0 20px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}

.footer-btn:hover {
    background-color: #fff;
    color: #111;
}

.footer-social {
    font-size: 1.2rem;
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #fff;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-form {
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Booking Page Specific Hero */
.booking-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-color: #111;
    /* Match footer dark */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 2rem;
}

.booking-hero-content {
    text-align: center;
    z-index: 2;
}

.booking-hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-white);
    font-weight: 400;
}

.booking-hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    z-index: 1;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .booking-hero-title {
        font-size: 3rem;
    }

    .booking-hero-image {
        width: 250px;
        opacity: 0.5;
        /* Fade out on smaller screens for readability */
    }
}