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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f4f0 0%, #e8ddd4 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a4a3a;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature {
    font-size: 1.1rem;
    color: #2c1810;
    font-weight: 500;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Form Styles */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 450px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    color: #2c1810;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    color: #5a4a3a;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c1810;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e8ddd4;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a574;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #b8935a 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.form-disclaimer {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.form-disclaimer a {
    color: #d4a574;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-section h2 {
    font-size: 2.8rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.about-text p {
    margin-bottom: 25px;
}

.services-list {
    list-style: none;
    margin: 30px 0;
}

.services-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.services-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: #f8f4f0;
}

.testimonials-section h2 {
    font-size: 2.8rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    color: #2c1810;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

.stars {
    color: #d4a574;
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-section h2 {
    font-size: 2.8rem;
    color: #2c1810;
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a3429 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #d4a574;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4a574;
}

/* Legal Sections */
.legal-sections {
    background: #f9f9f9;
}

.legal-section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.legal-section h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 30px;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin: 30px 0 15px;
}

.legal-section p,
.legal-section li {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c1810;
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    margin: 0;
    line-height: 1.4;
}

.cookie-content a {
    color: #d4a574;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-accept {
    background: #d4a574;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #b8935a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .about-images img {
        flex-shrink: 0;
        width: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .about-section,
    .testimonials-section,
    .gallery-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .legal-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
    
    .about-section h2,
    .testimonials-section h2,
    .gallery-section h2,
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
}