/* =========================================================
   MEGODOGGY
   Clean main stylesheet
   ========================================================= */

:root {
    --cream: #f9ead5;
    --cream-dark: #f1dcc0;
    --peach: #ffc486;
    --peach-light: #ffd29f;
    --orange: #ee7154;
    --orange-dark: #df6046;
    --brown: #24201d;
    --brown-light: #5c5148;
    --white: #ffffff;

    --max-width: 1180px;
    --radius-small: 12px;
    --radius-medium: 24px;
    --radius-large: 40px;
    --shadow: 0 12px 30px rgba(71, 45, 25, 0.12);
}

/* ================= RESET ================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", sans-serif;
    color: var(--brown);
    background: var(--cream);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

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

button,
input {
    font: inherit;
}

/* ================= NAVBAR ================= */

.navbar {
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 70px), var(--max-width));
    z-index: 100;
}

.nav-container {
    min-height: 62px;
    padding: 0 24px;
    background: var(--peach);
    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;

    font-family: "Fredoka", sans-serif;
    font-size: 17px;
    font-weight: 600;
}

.logo-paw {
    font-size: 20px;
}

.logo-small-paw {
    font-size: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;

    font-size: 13px;
    font-weight: 700;
}

.nav-links a {
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: var(--orange-dark);
}

.nav-join {
    padding: 10px 19px;
    background: var(--orange);
    color: white;
    border-radius: 30px;
}

.nav-join:hover {
    color: white !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 25px;
    cursor: pointer;
}

/* ================= LANGUAGE SWITCH ================= */

.language-switch {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 2px;

    font-size: 12px;
    font-weight: 800;
}

.language-btn {
    border: none;
    background: transparent;
    color: var(--brown);
    cursor: pointer;

    font-size: 12px;
    font-weight: 800;

    padding: 4px;
    opacity: 0.5;

    transition: 0.2s ease;
}

.language-btn:hover,
.language-btn.active {
    opacity: 1;
    color: var(--orange);
}

.language-switch span {
    opacity: 0.35;
}

/* ================= HERO ================= */

.hero {
    min-height: 720px;
    position: relative;

    background: var(--cream);
    overflow: hidden;

    display: flex;
    align-items: center;
}

.hero-container {
    width: min(calc(100% - 80px), var(--max-width));
    margin: 0 auto;
    padding-top: 70px;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;

    position: relative;
    z-index: 5;
}

/* ================= HERO TEXT ================= */

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: "Fredoka", sans-serif;
    font-size: clamp(70px, 8vw, 112px);
    line-height: 0.83;
    font-weight: 500;
    letter-spacing: -5px;

    color: var(--orange);

    text-shadow: 5px 6px 0 rgba(150, 74, 53, 0.16);
}

.hero-title span {
    display: block;
}

.hero-text {
    margin-top: 35px;

    font-family: "Fredoka", sans-serif;
    font-size: clamp(22px, 2.1vw, 29px);
    line-height: 1.2;
}

.hero-subtext {
    max-width: 430px;
    margin-top: 10px;

    color: var(--brown-light);

    font-size: 17px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 18px;
    border-radius: 40px;

    font-family: "Fredoka", sans-serif;
    font-size: 15px;
    font-weight: 500;

    transition: 0.25s ease;
}

.btn span {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: white;
    color: var(--orange);

    font-size: 17px;
}

.btn-primary,
.btn-secondary {
    background: var(--orange);
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ================= HERO PHOTOS ================= */

.hero-images {
    position: relative;
    width: 100%;
    height: 430px;

    transform: translateX(-35px);
}

.main-photo {
    position: absolute;

    width: 320px;
    height: 320px;

    right: 55px;
    top: 20px;

    padding: 0;

    background: var(--peach-light);

    transform: rotate(9deg);

    box-shadow: 0 12px 25px rgba(73, 43, 20, 0.08);
}

.main-photo img {
    width: 115%;
    height: 115%;
    object-fit: cover;
    transform: translate(-4%, -4%);
}

.small-photo {
    position: absolute;

    width: 170px;
    height: 190px;

    right: -5px;
    bottom: 25px;

    padding: 10px;

    background: var(--orange);

    transform: rotate(-11deg);

    z-index: 4;

    box-shadow: var(--shadow);
}

.small-photo img {
    width: 120%;
    height: 125%;
    object-fit: cover;
    transform: translate(-4%, -4%);
}

/* ================= HERO DECORATION ================= */

.hero-shape {
    position: absolute;
    background: var(--cream-dark);
    opacity: 0.8;
}

.shape-circle {
    border-radius: 50%;
}

.circle-one {
    width: 80px;
    height: 80px;
    top: 0;
    left: 26%;
}

.circle-two {
    width: 90px;
    height: 90px;
    top: 5px;
    left: 34%;
}

.circle-three {
    width: 60px;
    height: 60px;
    left: 48%;
    top: 250px;
}

.hero-line {
    position: absolute;
    border: 8px solid #efa756;
    border-radius: 50%;
}

.line-left {
    width: 90px;
    height: 150px;
    left: -40px;
    top: 250px;
    transform: rotate(25deg);
}

.line-bottom {
    width: 120px;
    height: 130px;
    left: 44%;
    bottom: -80px;
    transform: rotate(-20deg);
}

.hero-url {
    position: absolute;
    left: 6px;
    bottom: 8px;

    font-size: 14px;
    color: #8c837b;
}

/* ================= GENERAL SECTIONS ================= */

.section {
    padding: 120px 30px;
}

.section-container {
    width: min(100%, var(--max-width));
    margin: auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2,
.about-content h2,
.waitlist-container h2 {
    font-family: "Fredoka", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    font-weight: 500;
}

.section-heading p {
    max-width: 550px;
    margin-top: 20px;

    color: var(--brown-light);

    font-size: 18px;
    line-height: 1.7;
}

/* ================= HOW IT WORKS ================= */

.how-section {
    background: #fff5e8;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 65px;
}

.step-card {
    position: relative;

    min-height: 300px;
    padding: 35px;

    background: var(--cream);
    border-radius: var(--radius-medium);

    transition: 0.3s ease;
}

.step-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.step-number {
    position: absolute;
    top: 25px;
    right: 30px;

    color: #d9c5a9;

    font-family: "Fredoka", sans-serif;
    font-size: 42px;
}

.step-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 20px;
    background: var(--peach);

    font-size: 31px;
}

.step-card h3 {
    margin-bottom: 12px;

    font-family: "Fredoka", sans-serif;
    font-size: 26px;
}

.step-card p {
    color: var(--brown-light);
    line-height: 1.7;
}

/* ================= ABOUT ================= */

.about-section {
    background: var(--cream);
}

.about-container {
    width: min(100%, 1050px);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    max-width: 440px;

    padding: 15px;
    background: var(--peach-light);

    transform: rotate(-4deg);
}

.about-photo img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-badge {
    position: absolute;

    right: 10px;
    bottom: -25px;

    width: 120px;
    height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--orange);
    color: white;

    text-align: center;

    font-family: "Fredoka", sans-serif;

    transform: rotate(8deg);
    box-shadow: var(--shadow);
}

.about-badge:first-letter {
    font-size: 28px;
}

.about-content p {
    margin-top: 22px;

    color: var(--brown-light);

    font-size: 17px;
    line-height: 1.8;
}

.text-link {
    display: inline-block;

    margin-top: 30px;

    color: var(--orange);
    font-weight: 800;

    transition: 0.2s ease;
}

.text-link:hover {
    transform: translateX(5px);
}

/* ================= FEATURES ================= */

.features-section {
    background: #fff5e8;
}

.center {
    text-align: center;
}

.center p {
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
    margin-top: 60px;
}

.feature-card {
    padding: 30px;

    background: var(--cream);
    border-radius: var(--radius-medium);

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    background: var(--peach);
    border-radius: 18px;

    font-size: 28px;
}

.feature-card h3 {
    margin-bottom: 12px;

    font-family: "Fredoka", sans-serif;
    font-size: 23px;
}

.feature-card p {
    color: var(--brown-light);
    line-height: 1.6;
}

/* ================= WAITLIST ================= */

.waitlist-section {
    position: relative;

    padding: 120px 30px;

    background: var(--orange);
    color: white;

    text-align: center;

    overflow: hidden;
}

.waitlist-container {
    width: min(100%, 700px);
    margin: auto;

    position: relative;
    z-index: 3;
}

.waitlist-section .eyebrow {
    color: #ffe5ca;
}

.waitlist-container h2 {
    font-size: clamp(45px, 6vw, 75px);
}

.waitlist-container > p {
    max-width: 560px;
    margin: 25px auto;

    color: #fff1e5;

    font-size: 18px;
    line-height: 1.7;
}

.waitlist-form {
    display: flex;

    max-width: 550px;
    margin: 35px auto 0;
    padding: 7px;

    background: white;
    border-radius: 50px;
}

.waitlist-form input {
    flex: 1;
    min-width: 0;

    border: none;
    outline: none;

    padding: 15px 20px;

    background: transparent;
    color: var(--brown);

    font-size: 16px;
}

.waitlist-form button {
    border: none;

    padding: 14px 23px;

    border-radius: 40px;

    background: var(--brown);
    color: white;

    cursor: pointer;

    font-family: "Fredoka", sans-serif;

    transition: 0.2s ease;
}

.waitlist-form button:hover {
    transform: translateY(-2px);
}

.form-message {
    min-height: 25px;
    margin-top: 15px !important;
    font-size: 14px !important;
}

.waitlist-decoration {
    position: absolute;

    font-size: 120px;
    opacity: 0.1;
    z-index: 1;
}

.decoration-left {
    left: 5%;
    top: 15%;
    transform: rotate(-20deg);
}

.decoration-right {
    right: 5%;
    bottom: 10%;
    transform: rotate(20deg);
}

/* ================= FOOTER ================= */

.footer {
    background: #211d1a;
    color: white;
    padding: 65px 30px 20px;
}

.footer-container {
    width: min(100%, var(--max-width));
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand p {
    margin-top: 15px;
    color: #a9a19a;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;

    font-family: "Fredoka", sans-serif;
    font-size: 18px;
    font-weight: 500;

    color: var(--peach);
}

.footer-column a {
    color: #c5beb8;
    font-size: 15px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--peach);
    transform: translateX(3px);
}

.footer-bottom {
    width: min(100%, var(--max-width));
    margin: 50px auto 0;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #817a74;
    font-size: 13px;
}

/* ================= GEORGIAN ================= */

html[lang="ka"] body {
    font-family: "Noto Sans Georgian", "Nunito", sans-serif;
}

html[lang="ka"] .hero-title,
html[lang="ka"] h1,
html[lang="ka"] h2,
html[lang="ka"] h3,
html[lang="ka"] h4,
html[lang="ka"] .logo,
html[lang="ka"] .btn {
    font-family: "Noto Sans Georgian", sans-serif;
}

/* ================= TABLET ================= */

@media (max-width: 900px) {

    .navbar {
        width: calc(100% - 30px);
        top: 20px;
    }

    .nav-container {
        padding: 0 18px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;
        padding: 20px;

        display: none;
        flex-direction: column;

        gap: 20px;

        background: var(--peach);
        border-radius: 25px;

        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .language-switch {
        margin-top: 5px;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 70px;
    }

    .hero-container {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;
        gap: 20px;

        text-align: center;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-images {
        width: 100%;
        max-width: 550px;
        height: 430px;

        margin: 20px auto 0;

        transform: none;
    }

    .main-photo {
        right: 80px;
    }

    .small-photo {
        right: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

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

    .about-image {
        max-width: 500px;
        margin: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .hero-title {
        font-size: 68px;
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 23px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .hero-images {
        height: 360px;
    }

    .main-photo {
        width: 270px;
        height: 225px;
        right: 35px;
    }

    .small-photo {
        width: 140px;
        height: 150px;
        right: -5px;
        bottom: 35px;
    }

    .section {
        padding: 85px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .waitlist-section {
        padding: 90px 20px;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 10px;
        background: transparent;
    }

    .waitlist-form input {
        width: 100%;
        padding: 16px 20px;

        background: white;
        border-radius: 40px;
    }

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

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