@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --sage-green: #9CAF88;
    --dusty-rose: #D4A5A5;
    --off-white: #F5F3EF;
    --charcoal: #2C2C2C;
    --muted-gold: #C9A961;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background-color: var(--off-white);
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
}

header {
    background-color: var(--off-white);
    min-height: 70px;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-green);
    text-decoration: none;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--sage-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--off-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }
}

section {
    margin: 2rem 0;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section.hero {
    margin-top: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--off-white) 0%, #FEFCF8 100%);
    position: relative;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="parchment" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23E8E5E0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23E8E5E0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23parchment)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--charcoal);
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--sage-green);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    animation: fadeInUp 1.4s ease-out;
}

.btn-primary:hover {
    background-color: #8BA076;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--sage-green);
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--dusty-rose);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

footer {
    background-color: var(--charcoal);
    color: var(--off-white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--muted-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column p,
.footer-column a {
    color: var(--off-white);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: var(--muted-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--muted-gold);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--charcoal);
    color: var(--off-white);
    padding: 2rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.popup-text {
    flex: 1;
    min-width: 250px;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
}

.popup-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.popup-btn-accept {
    background-color: var(--sage-green);
    color: white;
}

.popup-btn-accept:hover {
    background-color: #8BA076;
}

.popup-btn-decline {
    background-color: transparent;
    color: var(--off-white);
    border: 2px solid var(--off-white);
}

.popup-btn-decline:hover {
    background-color: var(--off-white);
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .popup-content {
        flex-direction: column;
        text-align: center;
    }

    .popup-buttons {
        width: 100%;
        justify-content: center;
    }

    .popup-btn {
        flex: 1;
    }
}

.legal-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

.legal-page h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--sage-green);
}

.legal-page p,
.legal-page ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 2rem;
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--sage-green);
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.content-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
}

.content-image-wrapper.reverse {
    direction: rtl;
}

.content-image-wrapper.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.1) 0%, rgba(212, 165, 165, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-image:hover::after {
    opacity: 1;
}

.content-text-block {
    padding: 1rem;
}

.content-text-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--sage-green);
}

.content-text-block p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.image-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.image-feature-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.image-feature-item img {
    width: 100%;
    height: auto;
    display: block;
}

.image-feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9), transparent);
    padding: 2rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-feature-item:hover .image-feature-overlay {
    transform: translateY(0);
}

.full-width-image {
    width: 100%;
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.text-content-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.text-content-block p {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

.text-content-block ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 2rem;
    line-height: 2;
}

.text-content-block li {
    margin-bottom: 0.75rem;
}

@media (max-width: 968px) {
    .content-image-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-image-wrapper.reverse {
        direction: ltr;
    }

    .image-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .content-image-wrapper {
        padding: 1rem;
    }

    .text-content-block {
        padding: 1rem;
    }
}

