/* ---------- Root ---------- */
:root {
    --white: #ffffff;
    --brand-dark: #261736;
    --accent: #704c9e;
    --light-bg: #faf8fd;
    --purple: #704c9e;
    --lavender: #a57bc6;
    --light: #e3daee;
    --dark: #2b2b2b;
    --brand-dark: #261736;
    --brand-purple: #704c9e;
    --brand-lavender: #a57bc6;
    
    /* Flavour accents */
    --strawberry: #D61F3B;
    --strawberry-glow: #FF4D6D;

    --chocolate: #5B1E1E;
    --caramel: #C48A3A;

    --mixfruit-blue: #1E88E5;
    --mixfruit-purple: #8E44AD;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--light-bg);
    color: #222;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: Poppins, sans-serif;
    letter-spacing: -0.02em;
}

/* ---------- HEADER ---------- */
header {
    background: var(--brand-dark);
    padding: 16px 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 24px;
}

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

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
}

/* ---------- LOGO ---------- */
.logo-wrapper {
    height: 42px;
    display: flex;
    align-items: center;
    width: 200px;
    transition: all 0.5s ease;
}

.theme-white {
      --c1: #ffffff;
      --c2: #ffffff;
      --c3: #ffffff;
      --c4: #ffffff;
      --c5: #ffffff;
    }


.logo-frame {
    height: 42px;
    display: flex;
    align-items: center;
}

.logo-frame img {
    height: 100%;
    width: auto;
    object-fit: contain;
}


/* ---------- FOOTER ---------- */
footer {
    background: var(--brand-dark);
    color: white;
}

/* GRID ONLY — no padding, no width */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 48px 0;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 16px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    display: flex;
    justify-content: space-between;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

.footer-muted {
    text-align: left;
    margin-top: 24px;
    font-size: 12px;
    opacity: .7;
}

.copyright {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
    opacity: .7;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 16px 0;
    color: rgba(255, 255, 255, .7);
}

/* Typography Configuration */
.footer-brand,
.footer-icons h3,
.footer-container h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-text,
.footer-bottom,
.contact-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.newsletter button,
.footer-icons a {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter input {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: none;
}

.newsletter button {
    background: var(--brand-lavender);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}