﻿:root {
    --primary-brown: #8B4513;
    --light-brown: #A0522D;
    --tan: #D2B48C;
    --cream: #F5F5DC;
    --dark-text: #3E2723;
    --accent-gold: #C19A6B;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    font-size: 17px;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-brown), var(--light-brown));
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-brand img {
    max-height: 3.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.navbar-item {
    color: var(--cream) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar-item:hover {
    color: var(--accent-gold) !important;
    background-color: rgba(255,255,255,0.1) !important;
}

.navbar-burger {
    color: var(--cream);
}

.hero {
    background: linear-gradient(rgba(62, 39, 35, 0.7), rgba(139, 69, 19, 0.6)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--tan);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.6);
    color: white;
}

.section {
    padding: 4rem 1.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--light-brown);
    margin-bottom: 3rem;
    font-weight: 400;
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.25);
}

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

.card-content {
    padding: 1.8rem;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.feature-icon svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-gold);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--tan);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-brown);
    font-size: 1.1rem;
}

.footer {
    background: linear-gradient(135deg, #3E2723, var(--primary-brown));
    color: var(--cream);
    padding: 3rem 1.5rem 2rem;
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer a {
    color: var(--tan);
    transition: color 0.3s ease;
}

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

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-info svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: var(--accent-gold);
}

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

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
}

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

.stats-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1.2rem;
    color: var(--light-brown);
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1.05rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--tan);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #3E2723, var(--primary-brown));
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cookie-accept {
    background: var(--accent-gold);
    color: white;
}

.btn-cookie-accept:hover {
    background: var(--light-brown);
    transform: scale(1.05);
}

.btn-cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-decline:hover {
    background: white;
    color: var(--primary-brown);
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.policy-content h3 {
    color: var(--light-brown);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.policy-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.policy-content ul, .policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.error-404 {
    text-align: center;
    padding: 5rem 1.5rem;
}

.error-404 h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.error-404 h2 {
    font-size: 2.5rem;
    color: var(--light-brown);
    margin-bottom: 1.5rem;
}

.error-404 p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thank-you-page {
    text-align: center;
    padding: 5rem 1.5rem;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.3);
}

.thank-you-icon svg {
    width: 70px;
    height: 70px;
    fill: white;
}
