:root {
    --pri: #FAF5F5;
    --sec: #D4A5A5;
    --acc: #B07878;
    --dark: #5C4040;
    --text-light: #F0EBEB;
    --text-dark: #333;
    --bg-dark: #3D2C2C;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Lora', serif;
}

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

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

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

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--acc);
    color: var(--pri);
    padding: 14px 32px;
    border-radius: 50px;
    text-align: center;
    font-weight: bold;
    border: 2px solid var(--acc);
    transition: background-color 0.3s, color 0.3s;
}

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

.btn.btn-secondary {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--pri);
}

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

.card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #eee;
}

/* Header */
.header-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--dark);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-sticky nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo:hover {
    color: var(--sec);
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--pri);
    font-weight: 500;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--sec);
}

.nav-toggle-checkbox {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background-color: var(--pri);
    height: 3px;
    width: 100%;
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before {
    content: '';
    top: -8px;
}

.nav-toggle-label span::after {
    content: '';
    top: 8px;
}

/* Hero Slider */
.hero-slider {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--pri);
}

.hero-content h1 {
    color: var(--pri);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.alternate-bg {
    background-color: #F8EDED;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.testimonials-carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    margin-bottom: 0.25rem;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #777;
}

/* Gallery Masonry */
.gallery-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.gallery-masonry img {
    width: 100%;
    margin-bottom: 1rem;
    display: block;
    border-radius: 8px;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
}

.process-step {
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border: 3px solid var(--sec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--acc);
}

/* Newsletter */
.newsletter-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--dark);
    color: var(--pri);
}
.newsletter-card h3, .newsletter-card p { color: var(--pri); }

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid var(--sec);
}

/* Partners */
.partner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-logos img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-col h4 {
    color: var(--pri);
    margin-bottom: 1rem;
}

.footer-col p {
    color: #ccc;
}

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

.footer-col ul li a {
    color: #ccc;
    display: block;
    padding: 0.25rem 0;
}

.footer-col ul li a:hover {
    color: var(--sec);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--acc);
}

/* Page Header */
.page-header {
    background-color: var(--bg-dark);
    color: var(--pri);
    text-align: center;
    padding: 3rem 0;
}
.page-header h1, .page-header p { color: var(--pri); }

/* About Page */
.text-columns {
    display: flex;
    gap: 3rem;
}
.text-column { flex: 1; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.gallery-grid img { width: 100%; border-radius: 8px; }

.cta-split-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.cta-split-image { flex: 1; min-height: 400px; background-size: cover; background-position: center; }
.cta-split-content { flex: 1; padding: 2rem; }

/* FAQ Page */
.faq-tabs-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-item summary { font-family: var(--font-heading); font-size: 1.2rem; padding: 1.5rem 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; font-size: 1.5rem; color: var(--acc); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 1.5rem; }

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

/* Contact Page */
.contact-centered { display: flex; gap: 2rem; }
.contact-form-container { flex: 2; }
.contact-details-container { flex: 1; display: flex; flex-direction: column; gap: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; font-family: var(--font-body); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--acc); outline: none; }

/* Legal Pages */
.legal-page .container { max-width: 800px; padding: 4rem 1.5rem; }
.legal-page h2 { margin-top: 2rem; }
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1rem; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--pri);
    padding: 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    gap: 1rem;
}

.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--sec); text-decoration: underline; }
.cookie-banner div { display: flex; gap: 1rem; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--dark);
        text-align: center;
        padding: 1rem 0;
    }
    .nav-menu li { margin: 1rem 0; }
    .nav-toggle-label { display: flex; align-items: center; }
    .nav-toggle-checkbox:checked ~ .nav-menu { display: flex; }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); top: 0; }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }

    .features-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .gallery-masonry { column-count: 2; }
    .process-steps, .text-columns, .cta-split-container, .contact-centered { flex-direction: column; }
    
    .cta-split-image { min-height: 250px; }

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

@media (max-width: 480px) {
    .gallery-masonry { column-count: 1; }
    .testimonial-card { flex-basis: 90%; }
    .newsletter-form { flex-direction: column; }
}
