﻿:root {
    --primary-color: #8B4513;
    --secondary-color: #D4A574;
    --accent-color: #FF8C00;
    --light-bg: #FFF8E7;
    --dark-text: #3E2723;
    --light-text: #6D4C41;
}

* {
    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;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

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

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

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link {
    color: var(--light-text);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}

.hero-section {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(255, 248, 231, 0.3));
    padding: 5rem 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

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

.section-padding {
    padding: 5rem 0;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
}

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

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

.card-body {
    padding: 2rem;
}

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

.card-text {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 16px;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

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

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

.contact-info {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

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

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 17px;
}

.contact-info strong {
    min-width: 100px;
    color: var(--primary-color);
}

.form-control {
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.7rem;
}

footer {
    background-color: #3E2723;
    color: #D7CCC8;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

footer a {
    color: #D7CCC8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.7rem;
}

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

footer p {
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(215, 204, 200, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(62, 39, 35, 0.97);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

.cookie-banner p {
    margin-bottom: 1rem;
    font-size: 16px;
}

.cookie-banner .btn {
    margin: 0 0.5rem;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.workshop-detail {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

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

.workshop-detail ul {
    list-style: none;
    padding-left: 0;
}

.workshop-detail ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 17px;
}

.workshop-detail ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.price-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
}

.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

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

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

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.6rem; }

    .section-padding {
        padding: 3rem 0;
    }

    .error-code {
        font-size: 5rem;
    }
}
