/* Root Variables */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #f1c5c1;
    --text-color: #333;
    --border-color: #e0e0e0;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Urbanist', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

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

/* Header / Navigation */
.header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo h1 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.header-nav {
    display: flex;
    gap: 2rem;
    font-family: var(--font-primary);
}

.header-nav a {
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.header-nav a:hover {
    opacity: 0.7;
}

.header-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.header-burger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu a {
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #666;
}

.hero-image {
    overflow: hidden;
    border-radius: 20px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cookies Section */
.cookies-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    text-transform: lowercase;
}

.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.cookie-package {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-image {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    height: 300px;
}

.cookie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cookie-package h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.cookie-package p {
    margin-bottom: 1rem;
    color: #666;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.gallery-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.gallery-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    align-items: start;
}

.contact-text h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-text h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 400;
}

.form-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-wrapper iframe {
    width: 100%;
    max-width: 600px;
}
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    padding: 0.875rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background-color: #f5f0ed;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 900"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="30" fill="none" stroke="%23f1c5c1" stroke-width="1" opacity="0.5"/></pattern></defs><rect width="1200" height="900" fill="url(%23pattern)"/></svg>');
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.about-image {
    overflow: hidden;
    border-radius: 20px;
}

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

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: #fff;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.7;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 0.5rem 1.5rem;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #f0f0f0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .header-nav {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .form-wrapper iframe {
        max-width: 350px;
    }

    .header-burger {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

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

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cookies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 150px;
    }

    .contact-text h2 {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero,
    .cookies-section,
    .contact-section,
    .about-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .header-logo h1 {
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .section-header h2 {
        font-size: 1.25rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.625rem;
    }

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

    .newsletter-form button {
        width: 100%;
    }
}
