:root {
    --primary-color: #A3B18A;
    /* Sage Green */
    --secondary-color: #E6D0C9;
    /* Rose Gold/Nude */
    --accent-color: #D4A373;
    /* Golden/Nude darker */
    --bg-color: #FDFBF7;
    /* Warm Off-White */
    --text-color: #2C2C2C;
    /* Dark Graphite */
    --headings-font: 'Forum', cursive;
    --body-font: 'Raleway', sans-serif;
    --border-radius: 4px;
    /* More angular for "Cormorant" luxury feel? Or stick to 16px? User said "zaokraglone rogi" previously. I'll stick to 16px. */
    --border-radius: 16px;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--headings-font);
    font-weight: 600;
    margin-bottom: 20px;
}

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

ul {
    list-style: none;
}

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

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

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

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

.bg-light {
    background-color: #F8F5F2;
    /* Slightly darker than bg-color */
}

.bg-dark {
    background-color: #2C2C2C;
    color: #fff;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
}

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

.btn-primary-sm {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-sm:hover {
    background-color: #8A9A75;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
    background-color: #2C2C2C;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-details span {
    margin-right: 20px;
}

.contact-details i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.social-icons-top a {
    color: #fff;
    margin-left: 15px;
    font-weight: 600;
    font-size: 0.9rem !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border-left: 5px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    animation: slideUp 0.5s ease-out forwards;
    transition: all 0.5s ease;
}

.cookie-banner p {
    margin-right: 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.social-icons-top i {
    font-size: 1.2rem !important;
}

.social-icons-top a:hover {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    position: sticky;
    /*Changed from fixed to sticky to respect top bar*/
    top: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--headings-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Nav Link Animation */
.nav-links a:not(.btn-primary-sm) {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.btn-primary-sm)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary-sm):hover {
    color: var(--primary-color);
}

.nav-links a:not(.btn-primary-sm):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--text-color);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 251, 247, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    cursor: pointer;
}

.mobile-nav-links li {
    margin: 20px 0;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-family: var(--headings-font);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url("hero.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 0px;
    position: relative;
    padding: 0 20px 15vh 20px;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Hover Zoom */
.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.placeholder-img {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.about-img {
    height: 500px;
    background: linear-gradient(135deg, #e6d0c9 0%, #fdfbf7 100%);
    transition: transform 0.5s ease;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

/* Pricing Section */
.pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 30px;
    gap: 15px;
    flex-wrap: wrap;
}

.pricing-tab {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--body-font);
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-color);
}

.pricing-tab.active,
.pricing-tab:hover {
    background: var(--primary-color);
    color: #fff;
}

.pricing-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.pricing-content.active {
    display: block;
}

/* Pricing Item Hover */
.pricing-item {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: default;
}

.pricing-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background-color: #fafafa;
}

.pricing-header {
    display: flex;
    flex-direction: column;
}

.pricing-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-price {
    color: var(--primary-color);
    font-family: var(--headings-font);
    font-weight: 600;
    margin-top: 5px;
}

.pricing-time {
    color: #888;
    font-size: 0.9rem;
}

/* Reviews Section */
/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.review-text {
    font-size: 1.1rem;
    font-family: var(--body-font);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.review-author {
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--body-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Review slider styles removed */

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 0.9rem;
    border: 1px solid #555;
    padding: 8px 15px;
    border-radius: 20px;
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.hours-list span {
    font-weight: 600;
    color: var(--primary-color);
}

.map-placeholder {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }


    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 300px;
    }
}