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

:root {
    --primary-color: #FDD48A;
    --secondary-color: #513C2F;
    --bg-light: #f5f5f5;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --shadow-light: rgba(255, 255, 255, 0.9);
    --shadow-dark: rgba(81, 60, 47, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-light);
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FFE4B5 100%);
    overflow: hidden;
    padding: 40px 20px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--secondary-color);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
    box-shadow: 8px 8px 20px var(--shadow-dark),
                -8px -8px 20px var(--shadow-light);
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 12px 12px 25px var(--shadow-dark),
                -12px -12px 25px var(--shadow-light);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.animated-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: #fff;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 12px 12px 30px var(--shadow-dark),
                -12px -12px 30px var(--shadow-light);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #ccc;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: 6px 6px 15px var(--shadow-dark),
                -6px -6px 15px var(--shadow-light);
}

.feature-icon {
    width: 30px;
    height: 30px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Counters Section */
.counters-section {
    background: var(--primary-color);
}

.counters-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.counter-card {
    flex: 1;
    min-width: 220px;
    padding: 40px 30px;
    background: var(--primary-color);
    border-radius: 20px;
    text-align: center;
    box-shadow: 10px 10px 25px rgba(81, 60, 47, 0.15),
                -10px -10px 25px rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 35px rgba(81, 60, 47, 0.2),
                -15px -15px 35px rgba(255, 255, 255, 0.9);
}

.counter-icon {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.counter-card p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--secondary-color);
    font-weight: 500;
}

/* DMC Section */
.dmc-section {
    background: #fff;
}

.dmc-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.dmc-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 12px 12px 30px var(--shadow-dark),
                -12px -12px 30px var(--shadow-light);
}

.dmc-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: #ccc;
}

.dmc-text {
    flex: 1;
}

.dmc-text p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.dmc-features {
    margin-top: 30px;
}

.dmc-features h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.feature-list svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.external-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.external-link:hover {
    color: var(--primary-color);
}

/* Mouline Section */
.mouline-section {
    background: var(--bg-light);
}

.mouline-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mouline-card {
    flex: 1;
    min-width: 250px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 25px var(--shadow-dark),
                -10px -10px 25px var(--shadow-light);
    transition: var(--transition);
}

.mouline-card:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 35px var(--shadow-dark),
                -15px -15px 35px var(--shadow-light);
}

.mouline-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #ccc;
}

.mouline-card h3 {
    padding: 20px 20px 10px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--secondary-color);
}

.mouline-card p {
    padding: 0 20px 20px;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--text-light);
}

/* Shop Section */
.shop-section {
    background: #fff;
}

.shop-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 25px var(--shadow-dark),
                -10px -10px 25px var(--shadow-light);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 15px 15px 35px var(--shadow-dark),
                -15px -15px 35px var(--shadow-light);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ccc;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-info p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-price {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.product-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-light);
}

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 10px 10px 25px var(--shadow-dark),
                -10px -10px 25px var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    background: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
}

.price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 10px;
}

.price-period {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.pricing-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 20px var(--shadow-dark),
                -8px -8px 20px var(--shadow-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(253, 212, 138, 0.2);
}

.faq-question h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--text-dark);
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--secondary-color);
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-family: 'Quicksand', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 4px 4px 10px rgba(81, 60, 47, 0.1),
                inset -4px -4px 10px rgba(255, 255, 255, 0.8);
}

.submit-button {
    padding: 15px 35px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Quicksand', sans-serif;
}

.submit-button:hover {
    background: #fff;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.social-links svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.social-links a:hover svg {
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

.cookie-text h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    min-width: 120px;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cookie-btn.accept:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 212, 138, 0.4);
}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--bg-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .about-content,
    .dmc-content {
        flex-direction: column;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .counters-grid {
        gap: 20px;
    }

    .counter-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 640px) {
    section {
        padding: 50px 0;
    }

    .hero-banner {
        min-height: 70vh;
    }

    .counter-card {
        min-width: 100%;
    }

    .mouline-grid,
    .shop-grid,
    .pricing-grid {
        gap: 20px;
    }

    .form-group {
        flex-direction: column;
    }

    .footer-grid {
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}