@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Mulish:wght@400;600&display=swap');

:root {
    --pri: #FDF5F5;
    --sec: #E8B4B8;
    --acc: #C27D82;
    --dark: #6B4449;
    --bg-dark: #3a2528;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Mulish', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--pri);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--sec);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--pri);
}

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

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    margin-bottom: 1rem;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--acc);
    color: var(--pri);
    border-color: var(--acc);
}

.btn-primary:hover {
    background-color: var(--sec);
    border-color: var(--sec);
    color: var(--dark);
}

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

.btn-secondary:hover {
    background-color: var(--sec);
    color: var(--dark);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
}

/* --- Header --- */
#main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

#main-header.scrolled {
    background-color: var(--bg-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

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

header nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

header nav a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--pri);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

header nav a:hover, header nav a.active {
    color: var(--sec);
    border-bottom-color: var(--sec);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--pri);
    font-size: 2rem;
    cursor: pointer;
}

/* --- Hero Slider --- */
.hero-slider {
    height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}
.hero-slider .container {
    position: relative;
    z-index: 2;
}
.hero-slider h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.hero-slider p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #fff;
}

/* --- Sections --- */
section {
    padding: 5rem 0;
}

.newsletter-fullwidth, .cta-fullwidth {
    background-color: var(--dark);
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    padding: 14px;
    border: 1px solid var(--sec);
    background: var(--bg-dark);
    color: var(--pri);
    width: 300px;
    font-family: var(--font-body);
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* --- Testimonials --- */
.testimonials-single {
    background-color: var(--dark);
}

.testimonial-card-featured {
    background-color: var(--bg-dark);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.testimonial-card-featured blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.testimonial-card-featured cite {
    font-style: normal;
    font-weight: 600;
    color: var(--acc);
}

/* --- Features Alternating --- */
.features-alternating .feature-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.features-alternating .feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.features-alternating .feature-item img {
    width: 80px;
    flex-shrink: 0;
}

/* --- Footer --- */
.footer-centered {
    background-color: var(--dark);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-links, .footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-social p {
    margin-bottom: 0.5rem;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid var(--sec);
    color: var(--sec);
    margin: 0 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-social a:hover {
    background-color: var(--sec);
    color: var(--dark);
}

.copyright {
    font-size: 0.9rem;
    color: var(--pri);
    opacity: 0.7;
}

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    padding: 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

#cookie-banner p {
    margin: 0;
}

.btn-small {
    padding: 8px 16px;
}

/* --- ABOUT PAGE --- */
.page-header {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--dark);
}
.page-header h1 { font-size: 3rem; }

.text-columns-container {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.text-column-content {
    flex: 1;
}

.text-column-image {
    flex: 1;
}
.text-column-image img {
    border-radius: 8px;
}

.features-grid-section {
    background-color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-dark);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.feature-card img {
    width: 60px;
    margin: 0 auto 1rem;
}

.cta-simple {
    text-align: center;
}
.cta-simple p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FAQ PAGE --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--dark);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--pri);
    cursor: pointer;
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--sec);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding: 0 1rem 1.5rem 0;
}

/* --- CONTACT PAGE --- */
.contact-split-container {
    display: flex;
    gap: 3rem;
}
.contact-form-wrapper {
    flex: 1.5;
}
.contact-info-wrapper {
    flex: 1;
}
.contact-info-item {
    margin-bottom: 2rem;
}
.contact-info-item h3 {
    color: var(--sec);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    background-color: var(--dark);
    border: 1px solid var(--acc);
    color: var(--pri);
    font-family: var(--font-body);
    border-radius: 0;
}
.contact-social a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* --- LEGAL PAGES --- */
.legal-content {
    padding: 3rem 0 5rem;
}
.legal-content .container {
    max-width: 800px;
}
.legal-content h2 {
    margin-top: 2rem;
    color: var(--sec);
}
.legal-content ul {
    margin-left: 20px;
    margin-bottom: 1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .section-title { font-size: 2.5rem; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-alternating .feature-item, .features-alternating .feature-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .text-columns-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    header nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }
    header nav.active {
        left: 0;
    }
    header nav ul {
        flex-direction: column;
        text-align: center;
    }

    .contact-split-container {
        flex-direction: column;
    }

    #cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form input {
        width: 100%;
        max-width: 400px;
    }

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