/* CSS Variables based on Fringeny Aesthetic */
:root {
    --primary-color: #E8A090; /* Soft Salmon/Pink */
    --primary-hover: #d48e7e;
    --text-color: #1A1A1A; /* Deep Charcoal */
    --text-light: #5A5A5A;
    --bg-white: #FFFFFF;
    --bg-alt: #F2F5F5; /* Light Sage/Grey-Blue */
    --bg-dark: #2C2C2C;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
    font-style: italic;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

.bg-alt {
    background-color: var(--bg-alt);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--bg-white);
}

.bg-dark h2 {
    color: var(--bg-white);
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
}

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


.btn-large {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.btn-light {
    background-color: var(--bg-white);
    color: var(--text-color);
}

.btn-light:hover {
    background-color: var(--bg-alt);
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-white);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 70px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-svg {
    height: 48px;
    width: auto;
    color: var(--text-color);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.desktop-nav > ul > li {
    position: relative;
}

.desktop-nav .has-dropdown > a::after {
    content: "\25BC";
    font-size: 0.6rem;
    margin-left: 5px;
    vertical-align: middle;
}

.desktop-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
}

.desktop-nav .dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.desktop-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .dropdown li {
    width: 100%;
    margin: 0;
}

.desktop-nav .dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-color);
    letter-spacing: 0;
    line-height: 1.4;
    transition: background-color 0.2s;
}

.desktop-nav .dropdown a:hover {
    background-color: var(--bg-alt);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 0;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

.mobile-nav .mobile-dropdown {
    display: none;
    padding-top: 10px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.mobile-nav .mobile-dropdown.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav .mobile-dropdown li {
    margin-bottom: 12px;
}

.mobile-nav .mobile-dropdown a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light);
}

.mobile-nav .mobile-has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-nav .mobile-has-dropdown > a::after {
    content: "\25BC";
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-nav .mobile-has-dropdown.active > a::after {
    transform: rotate(180deg);
}

.mobile-book-btn {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: var(--header-height);
    overflow: hidden;
}

@keyframes slowUnzoom {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    animation: slowUnzoom 12s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Light overlay */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Intro Section */
.lead-text {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--bg-white);
    transition: var(--transition);
}

.service-img-wrap {
    overflow: hidden;
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
}

.service-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px 20px 20px 0;
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.link-arrow {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-arrow:hover {
    color: var(--primary-color);
}

/* Pricing Section */
.buttons-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Testimonial Section */
.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-light);
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
    color: var(--text-light);
    font-size: 0.85rem;
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .desktop-nav {
        display: none;
    }
    
    .header-actions .btn {
        display: none; /* Hide primary book button in header on mobile */
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hamburger Animation setup */
    .menu-open .hamburger-menu span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-open .hamburger-menu span:nth-child(2) {
        opacity: 0;
    }
    .menu-open .hamburger-menu span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        margin-top: 0; 
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
