/* Main CSS for RosenHaus */

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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

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

.btn-circle {
    display: inline-block;
    padding: 15px 25px;
    border: 2px solid #2f5a2c;
    border-radius: 50px;
    color: #2f5a2c;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-circle:hover {
    background-color: #2f5a2c;
    color: white;
}

/* --- Header --- */
header {
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #2f5a2c;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    max-height: 600px;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-content {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.hero-button {
    margin-top: 30px;
}

/* --- Features Section --- */
.features {
    display: flex;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9f9f5;
}

.features-text {
    flex: 1;
    padding-right: 40px;
}

.features-text h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.features-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* --- Services Section --- */
.services {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 40px;
}

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

.service-item {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
}

/* --- CTA Section --- */
.cta {
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
}

.cta-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(0.7);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* --- Flower Gallery Section --- */
.flower-gallery {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #f9f9f5;
}

.flower-gallery h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 40px;
}

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

.flower-item {
    text-align: center;
}

.flower-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.flower-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.flower-item p {
    color: #666;
}

/* --- Contact Section --- */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.map {
    flex: 1;
    min-width: 300px;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info li {
    line-height: 1.8;
}

.contact-info strong {
    display: block;
    margin-bottom: 5px;
}

/* --- Footer --- */
footer {
    background-color: #2f5a2c;
    color: white;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f9f9f0;
    padding: 15px;
    z-index: 1000;
    display: block;
}

.cookie-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-accept {
    padding: 8px 20px;
    background-color: #2f5a2c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-decline {
    padding: 8px 20px;
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

/* --- About Page Specific --- */
.about-section {
    display: flex;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.team-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-section h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.team-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
}

.about-features {
    margin-top: 0;
}

/* --- Reviews Page Specific --- */
.reviews-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.review-item {
    background-color: #f9f9f5;
    padding: 30px;
    border-radius: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.review-content {
    width: 100%;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.review-author {
    text-align: right;
    color: #2f5a2c;
    font-weight: bold;
}

/* --- FAQ Page Specific --- */
.faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.faq-left {
    flex: 1;
    min-width: 300px;
}

.faq-right {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.faq-accordion {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f9f9f5;
}

.accordion-header h3 {
    font-size: 16px;
    margin: 0;
}

.accordion-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 15px 20px;
    max-height: 200px;
}

/* --- Contact Page Specific --- */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-map {
    margin-bottom: 40px;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.contact-main h1 {
    color: #333;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-details ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-details li {
    flex: 1;
    min-width: 300px;
    line-height: 1.8;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    margin-top: 10px;
}

/* --- Thank You Page Specific --- */
.thank-you {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-content h1 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2f5a2c;
}

/* --- Legal Pages Specific --- */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    color: #2f5a2c;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.legal-text h2 {
    color: #333;
    font-size: 22px;
    margin: 30px 0 15px;
}

.legal-text p,
.legal-text ul {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-text ul {
    padding-left: 20px;
    list-style-type: disc;
}

.legal-text ul li {
    margin-bottom: 5px;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .features,
    .about-section {
        flex-direction: column;
    }

    .features-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .contact-container {
        flex-direction: column;
    }

    .map {
        height: 300px;
    }

    .faq-grid {
        flex-direction: column;
    }

    .footer-content {
        text-align: center;
    }

    .footer-links,
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .flowers-grid,
    .team-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 28px;
    }

    .features-text h2,
    .services h2,
    .cta h2,
    .flower-gallery h2,
    .contact-section h2,
    .team-section h2 {
        font-size: 24px;
    }

    .cookie-content {
        text-align: left;
    }

    .cookie-buttons {
        justify-content: flex-start;
    }
}