/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        linear-gradient(
            180deg,
            #fffaf7 0%,
            #fdf7ff 50%,
            #f5fbff 100%
        );
    color: #2f2f2f;
    overflow-x: hidden;
}

/* ==========================
   BACKGROUND BLOBS
========================== */

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .18;
    z-index: -1;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: #ff8db2;
    top: -120px;
    left: -120px;
}

.blob-2 {
    width: 450px;
    height: 450px;
    background: #84d8ff;
    bottom: -140px;
    right: -120px;
}

/* ==========================
   NAV
========================== */

.nav {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    padding: 32px 24px;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

/* ==========================
   HERO
========================== */

.hero {
    min-height: 100vh;
    padding: 0 24px 80px;
}

.hero-container {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;

    background: rgba(255,255,255,.75);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,.5);

    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.hero-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ff5b94;
    margin-top: 12px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 560px;
    color: #666;
}

/* ==========================
   BUTTONS
========================== */

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 18px 28px;
    border-radius: 18px;
    font-weight: 700;
    transition: .25s ease;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        #ff6ca8,
        #ff8f5e
    );
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255,255,255,.65);
    color: #222;
    border: 1px solid rgba(255,255,255,.7);
    backdrop-filter: blur(16px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* ==========================
   HERO IMAGE
========================== */

.hero-image img {
    width: 100%;
    border-radius: 36px;
    display: block;

    box-shadow:
        0 30px 80px rgba(0,0,0,.12);
}

/* ==========================
   SECTION
========================== */

section {
    padding: 100px 24px;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: auto auto 70px;
}

.mini-title {
    color: #ff5b94;
    font-weight: 700;
}

.section-heading h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    margin: 12px 0 18px;
}

.section-heading p {
    line-height: 1.8;
    color: #666;
}

/* ==========================
   TREATS GRID
========================== */

.treats-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
}

.treats-image img {
    width: 100%;
    border-radius: 36px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.10);
}

.features {
    display: grid;
    gap: 22px;
}

.feature-card {
    background: rgba(255,255,255,.7);
    border-radius: 28px;
    padding: 30px;

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255,255,255,.8);

    transition: .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card span {
    font-size: 2rem;
}

.feature-card h4 {
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* ==========================
   NOTIFY
========================== */

.notify-section {
    display: flex;
    justify-content: center;
}

.notify-card {
    width: 100%;
    max-width: 850px;

    background: white;
    border-radius: 40px;
    padding: 60px;

    text-align: center;

    box-shadow:
        0 25px 80px rgba(0,0,0,.08);
}

.notify-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
}

.notify-card p {
    margin: 20px auto 30px;
    max-width: 560px;
    color: #666;
}

.notify-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.notify-form input {
    width: 340px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.notify-form button {
    border: none;
    padding: 18px 28px;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #ff6ca8,
            #ff8f5e
        );

    color: white;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================
   FOOTER
========================== */

.footer {
    text-align: center;
    padding: 60px 24px;
}

.footer h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
}

.footer p {
    margin: 12px 0 24px;
    color: #666;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.socials a {
    color: #ff5b94;
    text-decoration: none;
    font-weight: 700;
}

/* ==========================
   ANIMATION
========================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   RESPONSIVE
========================== */

/* ==========================
   ABOUT SECTION
========================== */

.about-section {
    padding: 100px 24px;
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: stretch;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 12px 0 22px;
    line-height: 1.1;
}

.about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 700px;
}

.about-card {
    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255,255,255,.72);
    backdrop-filter: blur(20px);

    border-radius: 34px;
    padding: 42px;

    border: 1px solid rgba(255,255,255,.85);

    box-shadow:
        0 20px 60px rgba(0,0,0,.06);
}

.about-card h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* ==========================
   MISSION SECTION
========================== */

.mission-section {
    padding: 0 24px 100px;
}

.mission-card {
    max-width: 1250px;
    margin: 0 auto;

    text-align: center;

    background: rgba(255,255,255,.72);
    backdrop-filter: blur(20px);

    border-radius: 40px;
    padding: 70px 60px;

    border:
        1px solid rgba(255,255,255,.8);

    box-shadow:
        0 25px 70px rgba(0,0,0,.07);
}

.mission-card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 12px 0 22px;
}

.mission-card p {
    color: #666;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto 22px;
}

/* ==========================
   RESPONSIVE FIXES
========================== */

@media (max-width: 992px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content,
    .mission-card {
        text-align: center;
    }

    .about-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .mission-card {
        padding: 50px 28px;
    }
}

@media (max-width: 992px) {

    .hero-container,
    .treats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .notify-card {
        padding: 40px 28px;
    }

    .notify-card h3 {
        font-size: 2rem;
    }

.about-container {
    grid-template-columns: 1fr;
}

.about-content,
.mission-card {
    text-align: center;
}

}

@media (max-width: 640px) {

    .logo {
        font-size: 1.2rem;
    }

    .section-heading h3 {
        font-size: 2rem;
    }

    .notify-form input {
        width: 100%;
    }


}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-family: 'Fredoka', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.logo-bomb-pop {
    width: 42px;
    height: auto;
    object-fit: contain;

    transition: transform .25s ease;
}

.logo-bomb-pop:hover {
    transform: rotate(-8deg) scale(1.08);
}

#success-message {
    margin-top: 18px;
    font-weight: 600;
    font-size: 1rem;
    color: #34a853;
    min-height: 24px;
}