/* COMMUNITY OUTREACH CENTER, INC. — Colorful Illustration / Macaron style */

:root {
    --bg-main: #fff8fb;
    --bg-soft: #fff0f6;
    --surface: #ffffff;
    --surface-soft: #fff9fc;
    --ink: #3d3a5c;
    --ink-soft: #6b6889;
    --outline: #3d3a5c;
    --line: rgba(61, 58, 92, 0.14);

    /* Macaron palette — high saturation */
    --macaron-pink: #ff8fab;
    --macaron-coral: #ff9a76;
    --macaron-lemon: #ffe066;
    --macaron-mint: #7fdbda;
    --macaron-sky: #7ec8e3;
    --macaron-lavender: #c9b1ff;
    --macaron-peach: #ffc4a3;

    --accent: #ff7eb3;
    --accent-strong: #ff5c9a;
    --accent-2: #7ec8e3;
    --accent-3: #ffe066;

    --font-display: "Fredoka", "Comic Sans MS", cursive, sans-serif;
    --font-ui: "Nunito", system-ui, sans-serif;

    --border-cartoon: 3px solid var(--outline);
    --shadow-cartoon: 6px 6px 0 rgba(61, 58, 92, 0.18);
    --shadow-cartoon-sm: 4px 4px 0 rgba(61, 58, 92, 0.14);
    --radius-blob: 28px 8px 24px 12px / 12px 24px 8px 28px;
    --radius-card: 22px 18px 26px 16px / 16px 26px 18px 22px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle at 8% 12%, rgba(255, 142, 171, 0.35), transparent 32%),
        radial-gradient(circle at 92% 18%, rgba(126, 200, 227, 0.38), transparent 34%),
        radial-gradient(circle at 78% 88%, rgba(255, 224, 102, 0.32), transparent 30%),
        radial-gradient(circle at 12% 82%, rgba(201, 177, 255, 0.28), transparent 28%),
        linear-gradient(180deg, #fff8fb 0%, #fff3f9 45%, #f8feff 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: var(--border-cartoon);
    box-shadow: 0 4px 0 rgba(255, 142, 171, 0.25);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 22px;
    background: linear-gradient(145deg, var(--macaron-sky), var(--macaron-mint));
    border: var(--border-cartoon);
    border-radius: 50% 45% 52% 48% / 48% 52% 45% 50%;
    box-shadow: var(--shadow-cartoon-sm);
    animation: wobble 4s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
    max-width: 320px;
    line-height: 1.3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: var(--macaron-lemon);
    border-color: var(--outline);
    transform: translateY(-2px);
    box-shadow: 2px 2px 0 var(--outline);
}

.navbar.scrolled {
    box-shadow:
        0 6px 0 rgba(255, 142, 171, 0.35),
        0 10px 24px rgba(61, 58, 92, 0.12);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    padding: 8px;
    border: var(--border-cartoon);
    border-radius: 12px;
    background: var(--macaron-peach);
    box-shadow: var(--shadow-cartoon-sm);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--outline);
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--surface);
        border-bottom: var(--border-cartoon);
        padding: 22px;
        gap: 10px;
        transform: translateY(-125%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.28s ease, opacity 0.28s ease;
        box-shadow: var(--shadow-cartoon);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
}

/* Hero — illustration scene */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 88px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.memphis-shapes .shape {
    position: absolute;
    opacity: 0.85;
}

.shape-circle {
    border-radius: 50%;
    border: var(--border-cartoon);
    box-shadow: var(--shadow-cartoon-sm);
}

.shape-1 {
    width: 110px;
    height: 110px;
    top: 12%;
    right: 10%;
    background: var(--macaron-pink);
    animation: float 5s ease-in-out infinite;
}

.shape-2 {
    width: 68px;
    height: 68px;
    bottom: 30%;
    left: 8%;
    background: var(--macaron-sky);
    animation: float 6s ease-in-out infinite 0.5s;
}

.shape-3 {
    width: 52px;
    height: 52px;
    top: 40%;
    left: 16%;
    background: var(--macaron-lemon);
    animation: float 4.5s ease-in-out infinite 1s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--macaron-coral);
    filter: drop-shadow(4px 4px 0 rgba(61, 58, 92, 0.2));
    border-radius: 4px;
}

.shape-4 {
    top: 18%;
    left: 24%;
    transform: rotate(-8deg);
    animation: wobble 7s ease-in-out infinite;
}

.shape-5 {
    bottom: 14%;
    right: 18%;
    border-bottom-color: var(--macaron-lavender);
    transform: rotate(12deg);
    animation: wobble 6s ease-in-out infinite 0.8s;
}

.shape-zigzag {
    display: block;
    width: 88px;
    height: 24px;
    top: 28%;
    right: 22%;
    background:
        linear-gradient(135deg, var(--macaron-mint) 25%, transparent 25%) -12px 0,
        linear-gradient(225deg, var(--macaron-mint) 25%, transparent 25%) -12px 0,
        linear-gradient(315deg, var(--macaron-mint) 25%, transparent 25%),
        linear-gradient(45deg, var(--macaron-mint) 25%, transparent 25%);
    background-size: 24px 24px;
    background-color: transparent;
    border: var(--border-cartoon);
    border-radius: 8px;
    transform: rotate(-6deg);
}

.shape-squiggle {
    display: block;
    width: 120px;
    height: 36px;
    bottom: 22%;
    left: 28%;
    background: var(--macaron-peach);
    border: var(--border-cartoon);
    border-radius: 50% 20% 50% 20% / 20% 50% 20% 50%;
    transform: rotate(8deg);
    animation: wobble 5s ease-in-out infinite;
}

.polka-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(var(--macaron-lavender) 2px, transparent 2px),
        radial-gradient(var(--macaron-sky) 1.5px, transparent 1.5px);
    background-size: 28px 28px, 18px 18px;
    background-position: 0 0, 9px 9px;
    opacity: 0.35;
}

.stripes-diag {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        125deg,
        transparent,
        transparent 18px,
        rgba(255, 224, 102, 0.22) 18px,
        rgba(255, 224, 102, 0.22) 20px
    );
    opacity: 0.6;
}

.pixel-scan {
    display: none;
}

.illus-floaters {
    position: absolute;
    inset: 0;
}

.floater {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 64px;
    height: 64px;
    background: var(--surface);
    border: var(--border-cartoon);
    border-radius: 50% 40% 55% 45% / 45% 55% 40% 50%;
    box-shadow: var(--shadow-cartoon-sm);
    animation: float 5s ease-in-out infinite;
}

.floater-1 { top: 20%; right: 28%; animation-delay: 0s; background: #e8f9ff; }
.floater-2 { top: 55%; right: 6%; animation-delay: 0.6s; background: #fff0f5; font-size: 1.7rem; }
.floater-3 { bottom: 18%; left: 12%; animation-delay: 1.2s; background: #fff8e8; font-size: 1.8rem; }
.floater-4 { top: 32%; left: 6%; animation-delay: 0.3s; background: #f3eeff; }
.floater-5 { bottom: 38%; right: 32%; animation-delay: 1.5s; background: #fff9c4; font-size: 1.5rem; color: var(--accent-strong); }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(4deg); }
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(-3deg) scale(1.03); }
    66% { transform: rotate(3deg) scale(0.98); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--ink);
    background: var(--macaron-lemon);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
    border: var(--border-cartoon);
    box-shadow: var(--shadow-cartoon-sm);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: var(--ink);
    margin-bottom: 10px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--accent-strong);
    -webkit-text-fill-color: var(--accent-strong);
    text-shadow: 3px 3px 0 var(--macaron-lavender);
}

.hero-pretitle {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--macaron-sky);
    margin-bottom: 18px;
    font-weight: 600;
    text-shadow: 2px 2px 0 rgba(61, 58, 92, 0.08);
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 720px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.72);
    padding: 14px 18px;
    border: 2px dashed rgba(61, 58, 92, 0.2);
    border-radius: var(--radius-blob);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: var(--border-cartoon);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
    background: linear-gradient(145deg, var(--macaron-pink), var(--macaron-coral));
    color: var(--ink);
    box-shadow: var(--shadow-cartoon);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 rgba(61, 58, 92, 0.22);
}

.btn-secondary {
    background: var(--macaron-mint);
    color: var(--ink);
    box-shadow: var(--shadow-cartoon-sm);
}

.btn-secondary:hover {
    background: var(--macaron-sky);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(61, 58, 92, 0.18);
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.scroll-indicator .arrow {
    width: 12px;
    height: 12px;
    border-right: 3px solid var(--accent-strong);
    border-bottom: 3px solid var(--accent-strong);
    transform: rotate(45deg);
    animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(8px) rotate(45deg); }
}

/* Section headers */

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: "";
    display: block;
    width: 72%;
    height: 8px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, var(--macaron-pink), var(--macaron-lemon), var(--macaron-sky));
    border-radius: 999px;
    border: 2px solid var(--outline);
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 16px auto 0;
}

.section-tag {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--accent-strong);
    margin-bottom: 10px;
    font-weight: 600;
    display: inline-block;
    padding: 4px 12px;
    background: var(--macaron-lavender);
    border: 2px solid var(--outline);
    border-radius: 999px;
    box-shadow: 2px 2px 0 var(--outline);
}

/* Services cards — illustrated panels */

.games-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 142, 171, 0.15), transparent 40%),
        radial-gradient(circle at 90% 40%, rgba(126, 200, 227, 0.18), transparent 38%),
        var(--bg-soft);
    border-top: var(--border-cartoon);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background: var(--surface);
    border: var(--border-cartoon);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-cartoon);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:nth-child(1) { transform: rotate(-1deg); }
.game-card:nth-child(2) { transform: rotate(0.8deg); }
.game-card:nth-child(3) { transform: rotate(-0.6deg); }

.game-card:hover {
    transform: translate(-4px, -4px) rotate(0deg) !important;
    box-shadow: 10px 10px 0 rgba(61, 58, 92, 0.2);
}

.game-card.featured {
    border-color: var(--outline);
    background: linear-gradient(180deg, #fff 0%, #fff5fa 100%);
}

.game-image {
    position: relative;
    height: 168px;
    border-bottom: var(--border-cartoon);
}

.game-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder.game-1 {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 50%),
        linear-gradient(145deg, #b8f0ff, #7ec8e3 55%, #c9b1ff);
}

.game-placeholder.game-2 {
    background:
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.65), transparent 45%),
        linear-gradient(145deg, #ffd6e8, #ff8fab 55%, #ffc4a3);
}

.game-placeholder.game-3 {
    background:
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.6), transparent 48%),
        linear-gradient(145deg, #fff3b0, #ffe066 50%, #7fdbda);
}

.game-icon {
    font-size: 3.2rem;
    filter: drop-shadow(3px 3px 0 rgba(61, 58, 92, 0.2));
    animation: wobble 4s ease-in-out infinite;
}

.game-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.game-badge {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    border: 2px solid var(--outline);
    background: var(--surface);
    color: var(--ink);
    box-shadow: 2px 2px 0 var(--outline);
    font-weight: 600;
}

.game-badge.new {
    background: var(--macaron-sky);
}

.game-badge.popular {
    background: var(--macaron-pink);
}

.game-badge.coming {
    background: var(--macaron-lemon);
}

.game-content {
    padding: 22px 22px 24px;
}

.game-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.game-genre {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent-strong);
    margin-bottom: 10px;
    font-weight: 500;
}

.game-description {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.7;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.feature-tag {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--macaron-peach);
    border: 2px solid var(--outline);
    color: var(--ink);
    box-shadow: 2px 2px 0 rgba(61, 58, 92, 0.12);
}

.game-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-strong);
    text-decoration: none;
}

.game-link:hover {
    text-decoration: underline wavy var(--macaron-lavender);
}

/* About */

.about-section {
    padding: 96px 0;
    border-top: var(--border-cartoon);
    background:
        radial-gradient(circle at 85% 15%, rgba(201, 177, 255, 0.35), transparent 42%),
        radial-gradient(circle at 10% 85%, rgba(255, 224, 102, 0.28), transparent 38%),
        var(--bg-main);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-description {
    font-family: var(--font-ui);
    color: var(--ink-soft);
    margin-bottom: 14px;
    font-size: 16px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px;
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-item {
    padding: 16px;
    background: var(--surface);
    border-radius: var(--radius-blob);
    border: var(--border-cartoon);
    box-shadow: var(--shadow-cartoon-sm);
    transition: transform 0.2s ease;
}

.value-item:nth-child(odd) {
    transform: rotate(-0.8deg);
}

.value-item:nth-child(even) {
    transform: rotate(0.8deg);
}

.value-item:hover {
    transform: translate(-2px, -2px) rotate(0deg);
    box-shadow: 6px 6px 0 rgba(61, 58, 92, 0.16);
}

.value-icon {
    font-size: 1.6rem;
    filter: drop-shadow(2px 2px 0 rgba(61, 58, 92, 0.15));
}

.value-item h4 {
    font-family: var(--font-display);
    margin: 8px 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.value-item p {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.about-visual {
    position: relative;
    height: 332px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-card);
    border: var(--border-cartoon);
    box-shadow: var(--shadow-cartoon);
}

.visual-card.card-1 {
    width: 86%;
    height: 172px;
    top: 0;
    right: 0;
    background: linear-gradient(140deg, var(--macaron-sky), var(--macaron-lavender));
    transform: rotate(2deg);
    animation: float 6s ease-in-out infinite;
}

.visual-card.card-2 {
    width: 70%;
    height: 132px;
    bottom: 60px;
    left: 0;
    background: linear-gradient(120deg, var(--macaron-pink), var(--macaron-peach));
    transform: rotate(-3deg);
    animation: float 5s ease-in-out infinite 0.5s;
}

.visual-card.card-3 {
    width: 48%;
    height: 88px;
    bottom: 0;
    right: 10%;
    background: var(--macaron-lemon);
    transform: rotate(4deg);
    animation: float 4.5s ease-in-out infinite 1s;
}

/* Contact */

.contact-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 142, 171, 0.2), transparent 50%),
        linear-gradient(180deg, var(--bg-main) 0%, #f0fffe 100%);
    border-top: var(--border-cartoon);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.14fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 26px;
    padding: 14px;
    background: var(--surface);
    border: 2px solid var(--outline);
    border-radius: var(--radius-blob);
    box-shadow: var(--shadow-cartoon-sm);
}

.info-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(2px 2px 0 rgba(61, 58, 92, 0.15));
}

.info-text h4 {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--accent-strong);
    font-weight: 600;
}

.info-text p,
.info-text a {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.65;
}

.info-text a:hover {
    color: var(--accent-strong);
    text-decoration: underline wavy var(--macaron-pink);
}

.info-note {
    font-size: 14px;
    color: var(--ink-soft);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.social-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 999px;
    border: 2px solid var(--outline);
    background: var(--macaron-mint);
    box-shadow: 2px 2px 0 var(--outline);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--outline);
    background: var(--macaron-sky);
}

.contact-form {
    background: var(--surface);
    border: var(--border-cartoon);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: var(--shadow-cartoon);
    position: relative;
}

.contact-form::before {
    content: "✎";
    position: absolute;
    top: -18px;
    right: 24px;
    font-size: 28px;
    background: var(--macaron-lemon);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-cartoon);
    border-radius: 50%;
    box-shadow: var(--shadow-cartoon-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid var(--outline);
    border-radius: 14px;
    background: #fffdf8;
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9a97b5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-strong);
    box-shadow: 4px 4px 0 rgba(255, 92, 154, 0.25);
    transform: translate(-1px, -1px);
}

/* Footer */

.footer {
    padding: 58px 0 26px;
    border-top: var(--border-cartoon);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 224, 102, 0.3), transparent 45%),
        radial-gradient(circle at 80% 100%, rgba(201, 177, 255, 0.25), transparent 40%),
        var(--bg-soft);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-description {
    font-family: var(--font-ui);
    color: var(--ink-soft);
    font-size: 14px;
    margin-top: 12px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-strong);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-strong);
    text-decoration: underline wavy var(--macaron-pink);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.newsletter-form input {
    padding: 12px 14px;
    border: 2px solid var(--outline);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-family: var(--font-ui);
    font-size: 14px;
}

.newsletter-form .btn-primary {
    width: 100%;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 2px dashed rgba(61, 58, 92, 0.25);
    text-align: center;
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--ink-soft);
}
