@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
    --color-primary: #70C1B3;
    --color-primary-dark: #5AA89A;
    --color-bg: #FFFFFF;
    --color-accent: #6B4F31;
    --color-accent-soft: rgba(107, 79, 49, 0.1);
    --color-neutral: #F5F2ED;
    --color-text: #2D2D2D;
    --color-text-muted: #666666;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    line-height: 1.2;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    border: none;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(112, 193, 179, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Placeholder Styling */
.placeholder {
    background-color: #E5E5E5;
    border: 2px dashed #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder::after {
    content: '📸';
    font-size: 2rem;
    opacity: 0.3;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5fafd 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 120%;
    background: radial-gradient(circle, rgba(112, 193, 179, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image-container {
    height: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* Benefit Bar */
.benefit-bar {
    background-color: var(--color-primary);
    color: white;
    padding: 3rem 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Services */
.services {
    background-color: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 193, 179, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    opacity: 0.5;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
}

.service-card ul li::before {
    content: '→';
    color: var(--color-primary);
}

/* Consolidated About Section */
.about-combined {
    background-color: var(--color-bg);
}

.about-flex {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-image-side {
    flex: 0 0 400px;
}

.bio-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.green-highlight-box {
    background-color: #E8F5E9;
    border-left: 4px solid #4CAF50;
    padding: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.green-highlight-box p {
    color: #2E7D32;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

.about-text-side {
    flex: 1;
}

.bio-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--color-neutral);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.highlight-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Booking & Pricing */
.booking {
    background-color: var(--color-bg);
}

.price-list {
    max-width: 700px;
    margin: 0 auto 5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-info h4 {
    font-size: 1.2rem;
    color: var(--color-accent);
}

.price-amount {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: 1.5rem;
}

.process-stepper {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-neutral);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    background: var(--color-bg);
    padding: 0 20px;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.step-text {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1rem;
}

/* Updated Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    text-align: left;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--color-primary);
}

.footer-microcopy {
    max-width: 400px;
    opacity: 0.7;
    font-style: italic;
}

/* Events Section */
.events {
    background-color: var(--color-neutral);
    text-align: center;
}

.events-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.events-text h3 {
    margin-bottom: 1rem;
}

.events-text p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .about-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image-side {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-contact p,
    .social-link {
        justify-content: center;
    }

    .footer-microcopy {
        margin: 0 auto;
    }
}

/* Image Styles */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.footer-logo {
    color: white;
    margin-bottom: 1rem;
}