:root {
    --primary-color: #b76e79;
    --primary-dark: #9c5963;
    --secondary-color: #F8E2E5;
    --accent-color: #E3BAC6;
    --text-color: #333333;
    --text-light: #777777;
    --background-color: #ffffff;
    --background-alt: #f9f5f6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --footer-color: #333333;
    --footer-text: #f8f8f8;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --border-radius: 8px;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --header-height: 80px;
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

/* Dark Theme Variables */
.dark-theme {
    --primary-color: #d195a0;
    --primary-dark: #b76e79;
    --secondary-color: #3a2a2c;
    --accent-color: #6a464c;
    --text-color: #f0f0f0;
    --text-light: #c0c0c0;
    --background-color: #222222;
    --background-alt: #2d2d2d;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --footer-color: #1a1a1a;
    --footer-text: #f0f0f0;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    border: none;
    font-family: var(--font-main);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

section {
    padding: 3rem 1rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: var(--header-height);
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.theme-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.theme-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background-color: var(--background-alt);
    gap: 2rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow-color);
}

/* Tip of the Day */
.tip-of-the-day {
    background-color: var(--secondary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-speed);
}

.tip-of-the-day h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.tip-content {
    font-style: italic;
}

.tip-of-the-day::before {
    content: """;
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-family: var(--font-accent);
    color: var(--accent-color);
    opacity: 0.3;
}

/* Featured Services */
.featured-services h2, 
.latest-posts h2,
.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, 
.service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.service-card .btn-small {
    margin: 1rem 1.5rem 1.5rem;
}

/* Latest Posts */
.posts-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.latest-posts .btn {
    display: block;
    width: 200px;
    margin: 0 auto;
}

.post-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3, 
.post-card p {
    padding: 0 1.5rem;
}

.post-card h3 {
    margin-top: 1rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.post-card .btn-small {
    margin: 1rem 1.5rem 1.5rem;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    max-width: 350px;
    position: relative;
}

.testimonial::before {
    content: """;
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 4rem;
    font-family: var(--font-accent);
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
}

.quote {
    font-style: italic;
    margin-bottom: 1rem;
}

.client {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* Footer */
footer {
    background-color: var(--footer-color);
    color: var(--footer-text);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.footer-links h4,
.footer-policy h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-policy ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-policy a {
    color: var(--footer-text);
    transition: color var(--transition-speed);
}

.footer-links a:hover,
.footer-policy a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icons a {
    color: var(--footer-text);
    transition: color var(--transition-speed);
}

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

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -5px 10px var(--shadow-color);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.btn-accept:hover {
    background-color: #3d8b40;
}

.btn-settings {
    background-color: transparent;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: 1px solid var(--text-light);
    cursor: pointer;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.btn-settings:hover {
    background-color: var(--text-light);
    color: white;
}

.btn-decline {
    background-color: var(--error-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.btn-decline:hover {
    background-color: #d32f2f;
}

.cookie-content a {
    text-decoration: underline;
    color: var(--primary-color);
}

/* Blog Page Styles */
.blog-header, 
.services-header,
.about-header,
.contact-header {
    text-align: center;
    padding: 3rem 1rem;
    background-color: var(--secondary-color);
    margin-bottom: 2rem;
}

.blog-header h2,
.services-header h2,
.about-header h2,
.contact-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-posts {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    margin-bottom: 4rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.post-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    color: var(--primary-dark);
}

.post-content ul {
    margin: 1rem 0 1rem 2rem;
    list-style-type: disc;
}

.post-content li {
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.service-category {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-category:nth-child(odd) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 3;
}

.service-image {
    flex: 2;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-package {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 10px var(--shadow-color);
}

.service-package h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-package ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style-type: disc;
}

.service-package li {
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.additional-services h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.additional-service {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 10px var(--shadow-color);
    text-align: center;
}

.service-icon {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.additional-service h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.booking-info {
    background-color: var(--secondary-color);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.booking-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* About Page Styles */
.our-story {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.story-content {
    flex: 2;
}

.story-content h3,
.philosophy-content h3,
.team-section h3,
.testimonials h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

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

.philosophy-item {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 10px var(--shadow-color);
    text-align: center;
}

.philosophy-icon {
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.philosophy-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-section {
    margin-top: 4rem;
}

.team-section h3 {
    text-align: center;
}

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

.team-member {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3,
.team-member p {
    padding: 0 1.5rem;
}

.team-member h3 {
    margin-top: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.team-member p:nth-child(3) {
    font-weight: 600;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem 1.5rem;
}

.social-links a {
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: var(--primary-color);
}

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

.cta-section {
    background-color: var(--secondary-color);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.cta-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Contact Page Styles */
.contact-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 2;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-icon {
    margin-right: 1rem;
    min-width: 24px;
    color: var(--primary-color);
}

.info-text h4 {
    margin-bottom: 0.3rem;
    color: var(--primary-color);
}

.social-contact {
    margin-top: 2rem;
}

.contact-form {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-main);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.map-section {
    margin-bottom: 3rem;
}

.map-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.faq-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    background-color: var(--background-alt);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.plus-icon {
    transition: transform var(--transition-speed);
}

.faq-item.active .plus-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed), padding var(--transition-speed);
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 500px;
}

/* Thank You Modal */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.thank-you-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color var(--transition-speed);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-icon {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.close-btn {
    margin-top: 1.5rem;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image {
        max-width: 100%;
    }
    
    .service-category {
        flex-direction: column !important;
    }
    
    .service-info,
    .service-image {
        width: 100%;
    }
    
    .our-story {
        flex-direction: column;
    }
    
    .story-image,
    .story-content {
        width: 100%;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .theme-toggle {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .service-details,
    .philosophy-grid,
    .team-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .service-package,
    .philosophy-item,
    .team-member,
    .testimonial {
        margin-bottom: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
