@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --color-oat-beige: #F5F0E8;
    --color-butter-yellow: #FFB84D;
    --color-ice-blue: #6DB3D4;
    --color-coral: #FF6B6B;
    --color-ink: #2C3E50;
    --color-mint: #9DD8C9;
    --color-light-mint: #E8DFD5;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #FFF;
    color: #333;
    line-height: 1.6;
}

a {
    color: var(--color-ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-ice-blue);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--color-ink);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-ink) !important;
}

.brand-title {
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    margin-left: 2rem;
    font-weight: 500;
    color: #666 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-ink) !important;
}

/* Hero Sections */
.hero-section h1 {
    color: var(--color-ink);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-ink);
    text-balance: balance;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-cta {
    font-size: 1.1rem;
    color: var(--color-ink);
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 1.5rem;
    text-balance: balance;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-ink);
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.small-text {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
}

/* Bubble Blocks & Cards */
.bubble-block {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.format-card {
    transition: transform 0.3s ease;
}

.format-card:hover {
    transform: translateY(-3px);
}

.format-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 0.8rem;
}

.format-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Product Cards */
.product-card {
    background-color: #FFF;
    transition: all 0.3s ease;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 0.8rem;
}

.product-meta {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.product-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.detail-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 10px 20px;
    background-color: var(--color-ice-blue);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.detail-link:hover {
    background-color: var(--color-ink);
    transform: translateX(3px);
}

/* Ingredient Sections */
.ingredient-category {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-ink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
}

.ingredient-list {
    list-style: none;
    padding-left: 0;
}

.ingredient-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #666;
}

.ingredient-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-butter-yellow);
    font-weight: bold;
}

.ingredient-group {
    background-color: #FFF;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 3px solid var(--color-ice-blue);
}

/* Contact & Forms */
.contact-info {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
}

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

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

.contact-form .form-control {
    font-size: 1rem;
    color: #333;
    border: 1px solid #DDD !important;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--color-ice-blue) !important;
    box-shadow: 0 0 0 0.2rem rgba(109, 179, 212, 0.25);
}

.custom-control-label {
    color: #666;
    font-size: 0.95rem;
}

/* Buttons */
.btn {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-primary {
    background-color: var(--color-ink);
    border-color: var(--color-ink);
}

.btn-primary:hover {
    background-color: var(--color-ice-blue);
    border-color: var(--color-ice-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-dark {
    border-color: var(--color-ink);
    color: var(--color-ink);
}

.btn-outline-dark:hover {
    background-color: var(--color-ink);
    border-color: var(--color-ink);
    color: white;
}

/* Footer */
footer {
    margin-top: 4rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #CCC;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: #FFF;
}

.footer-links-legal {
    font-size: 0.9rem;
}

.footer-links-legal a {
    color: #B8E6F5;
    margin-right: 1.5rem;
    text-decoration: none;
}

.footer-links-legal a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    background-color: var(--color-oat-beige);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    margin-bottom: 0;
}

/* Principle Blocks */
.principle-block {
    border-left-width: 4px;
    border-left-style: solid;
    transition: all 0.3s ease;
}

.principle-block:hover {
    transform: translateX(5px);
}

.principle-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-section {
    line-height: 1.8;
}

.legal-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-ink);
    font-weight: 600;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-ink);
    font-weight: 600;
    font-size: 1.1rem;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.6rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1, .hero-title {
        font-size: 2rem;
    }

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

    h3 {
        font-size: 1.2rem;
    }

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

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .product-card {
        padding: 20px 0;
    }

    .contact-form {
        margin-top: 2rem;
    }

    .footer-links-legal a {
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    .cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
    }

    .col-md-6, .col-md-8 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    h1, .hero-title {
        font-size: 1.7rem;
    }

    h2, .section-title {
        font-size: 1.3rem;
    }

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

    .navbar-brand {
        font-size: 1.4rem;
    }

    .py-5 {
        padding: 2rem 0 !important;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    footer {
        margin-top: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main > section {
    animation: fadeIn 0.6s ease-out;
}
