﻿:root {
    --primary-clay: #8B6F47;
    --secondary-earth: #6B4E3D;
    --accent-terracotta: #D4A574;
    --light-cream: #F5F0E8;
    --dark-brown: #5D3A1A;
    --text-dark: #2C2416;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Arial', sans-serif;
    font-weight: 600;
    color: var(--secondary-earth);
    margin-bottom: 1.2rem;
}

h1 { font-size: 2.8rem; line-height: 1.2; }
h2 { font-size: 2.3rem; line-height: 1.3; }
h3 { font-size: 1.9rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.3rem;
    font-size: 17px;
}

.btn-primary {
    background-color: var(--primary-clay);
    border-color: var(--primary-clay);
    color: white;
    padding: 0.8rem 2rem;
    font-size: 17px;
    border-radius: 0.3rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-earth);
    border-color: var(--secondary-earth);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-outline-primary {
    border-color: var(--primary-clay);
    color: var(--primary-clay);
    padding: 0.8rem 2rem;
    font-size: 17px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-clay);
    border-color: var(--primary-clay);
    color: white;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-size: 16.5px;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-clay);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 78, 61, 0.85), rgba(139, 111, 71, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 3rem 1.5rem;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-clay), var(--accent-terracotta));
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 1rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 1.8rem;
}

.card-title {
    color: var(--secondary-earth);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #555;
    font-size: 16.5px;
    line-height: 1.6;
}

/* Features */
.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-clay), var(--accent-terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-box h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-box p {
    font-size: 16.5px;
    color: #666;
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-terracotta);
}

.author-info h5 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    color: var(--secondary-earth);
}

.author-info p {
    margin-bottom: 0;
    font-size: 15px;
    color: #888;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 78, 61, 0.8), rgba(139, 111, 71, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 500;
    color: var(--secondary-earth);
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 0.3rem;
    padding: 0.8rem 1rem;
    font-size: 16.5px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-clay);
    box-shadow: 0 0 0 0.2rem rgba(139, 111, 71, 0.15);
}

/* Footer */
footer {
    background-color: var(--secondary-earth);
    color: white;
    padding: 3.5rem 0 1.5rem;
}

footer h5 {
    color: var(--accent-terracotta);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

footer p, footer a {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    text-decoration: none;
    line-height: 1.8;
}

footer a:hover {
    color: var(--accent-terracotta);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.7rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 15px;
}

/* Cookie Banner */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-earth), var(--dark-brown));
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

#cookieBanner.show {
    display: block;
}

#cookieBanner p {
    margin-bottom: 1rem;
    font-size: 16px;
}

#cookieBanner .btn {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Page */
.about-image {
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    width: 100%;
    height: auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--primary-clay);
    border-radius: 50%;
    border: 3px solid var(--accent-terracotta);
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.6rem; }

    .hero {
        min-height: 450px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Utility Classes */
.bg-clay {
    background-color: var(--primary-clay);
}

.bg-cream {
    background-color: var(--light-cream);
}

.text-clay {
    color: var(--primary-clay);
}

.mb-6 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}
