@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ========================
   RESET & BASE
======================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --orange-clr: #E96C28;
    --white-clr: #fff;
    --black-clr: #000;
    --gray-clr: #636363;
    --light-gray: #c4c4c4;
    --dawn-pink: #fae7e5;
    --frosted-mint: #dcfef9;
}

html { scroll-behavior: smooth; }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; }

li { list-style: none; }

/* ========================
   TYPOGRAPHY
======================== */
h1 {
    font-size: clamp(1.9rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-top: 1rem;
}

h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); }

h4 { font-weight: 600; }

p {
    color: var(--gray-clr);
    margin-block: 1.2rem;
    max-width: 500px;
    line-height: 1.7;
}

span { color: var(--black-clr); }

/* ========================
   LAYOUT UTILITIES
======================== */
.container {
    width: min(90%, 1200px);
    margin-inline: auto;
}

.row-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.column-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ========================
   BUTTONS
======================== */
button,
.form-btn {
    background: var(--orange-clr);
    color: var(--white-clr);
    border: 0.1rem solid var(--orange-clr);
    padding: 0.6rem 1.6rem;
    border-radius: 5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: "Poppins", sans-serif;
}

button:hover, .form-btn:hover {
    background: #c4501a;
    border-color: #c4501a;
}

[data-type='bordered-btn'] {
    background: transparent;
    color: var(--orange-clr);
}

[data-type='bordered-btn']:hover {
    background: var(--orange-clr);
    color: #fff;
}

.btn-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================
   ICON CIRCLES
======================== */
.icons-link {
    background: var(--orange-clr);
    width: 2.3rem;
    aspect-ratio: 1;
    border-radius: 50%;
    margin-right: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.icons-link:hover { transform: translateY(-10%); }

.fa-solid,
.fa-brands {
    font-size: 1rem;
    color: var(--white-clr);
}

/* ========================
   HEADER / NAVBAR
======================== */
header {
    height: 13vh;
    min-height: 60px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-txt {
    font-size: 1.5rem;
    color: var(--orange-clr);
    font-weight: bold;
}

.navlist {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navlinks {
    color: var(--black-clr);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.active, .navlinks:hover { color: var(--orange-clr); }

.nav-icons { display: flex; align-items: center; }

/* Hamburger */
.hamburger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1100;
}

.burger {
    background: var(--black-clr);
    width: 1.8rem;
    height: 0.18rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.open .burger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .burger:nth-child(2) { opacity: 0; }
.hamburger.open .burger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   HERO SECTION
======================== */
.hero-section {
    min-height: calc(100vh - 13vh);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-block: 3rem;
}

.content { flex: 1; min-width: 0; }

.watch {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 0;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--dawn-pink);
    width: 80%;
    height: 60%;
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

/* ========================
   STORE / OTHER SECTIONS
======================== */
.other-section { padding-block: 4rem; }

[data-type='centered-txt'] {
    text-align: center;
    max-width: 600px;
    margin-block: 0.5rem;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.card {
    width: clamp(10rem, 40%, 15rem);
    text-align: center;
    border-radius: 1rem;
    box-shadow: rgba(0,0,0,0.1) 0px 2px 8px;
    transition: 0.25s ease;
}

[data-type='category'] { padding-block: 2rem; }

.card:hover {
    box-shadow: rgba(50,50,93,0.2) 0px 13px 27px -5px,
                rgba(0,0,0,0.25) 0px 8px 16px -8px;
    transform: translateY(-3px);
}

/* ========================
   ABOUT SECTION
======================== */
.img-container { flex: 1; min-width: 0; }

.img-container img {
    width: 100%;
    max-width: 450px;
    border-radius: 1rem;
}

.about-content { flex: 1; min-width: 0; }

/* ========================
   FEATURED FOOD
======================== */
.image-part img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 0.8rem 0.8rem 0 0;
}

.detail { padding: 0.7rem 1rem 0; text-align: left; }

[data-type='item'] { padding-bottom: 1rem; overflow: hidden; }

/* ========================
   APP SECTION
======================== */
.other-section-container { padding-block: 4rem; }

.app-img {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    height: auto;
}

.app-img img { height: 3.5rem; width: auto; }

/* ========================
   BEST FOOD
======================== */
.rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.rating img { width: 6rem; height: auto; }

.rating h4 { color: var(--orange-clr); font-size: 1.3rem; }

/* ========================
   NEWSLETTER
======================== */
.form-container {
    margin-top: 1.2rem;
    border: 0.02rem solid var(--light-gray);
    height: 3.5rem;
    border-radius: 5rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 480px;
}

input[type='email'] {
    flex: 1;
    height: 100%;
    border-radius: 5rem 0 0 5rem;
    border: none;
    font-size: 0.95rem;
    padding-left: 1.2rem;
    min-width: 0;
    font-family: "Poppins", sans-serif;
}

input:focus { outline: none; }

.newsletter-msg {
    margin-top: 0.6rem;
    font-size: 0.88rem;
    min-height: 1.2rem;
    text-align: center;
}

/* ========================
   FOOTER
======================== */
footer { margin-bottom: 1.5rem; padding-top: 1rem; }

.footer-links {
    font-size: 0.92rem;
    color: var(--gray-clr);
    transition: color 0.2s;
}

.footer-links:hover { color: var(--orange-clr); }

.footer-list { margin-top: 1rem; }

.footer-list li { margin-block: 0.5rem; }

[data-type='balanced-txt'] { max-width: 280px; }

footer .card-container {
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

footer .column { min-width: 100px; }

.line {
    width: 100%;
    height: 0.09rem;
    background: var(--light-gray);
    margin-block: 2rem;
}

/* ========================
   CONTACT SECTION
======================== */
.contact-section {
    position: relative;
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, #fff8f5 0%, #fff 50%, #f3fff9 100%);
    overflow: hidden;
}

.contact-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
}

.shape-1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #ffd4bf, #fae7e5);
    top: -100px; left: -100px;
}

.shape-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #dcfef9, #b2f5ea);
    bottom: -80px; right: 100px;
}

.shape-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #ffe4c4, #ffd4a0);
    top: 50%; right: -60px;
}

.contact-section .container { position: relative; z-index: 1; }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: stretch;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(233,108,40,0.08), 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* Left Info Panel */
.contact-info {
    background: linear-gradient(160deg, var(--orange-clr) 0%, #c4501a 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    bottom: -80px; right: -80px;
}

.contact-info::after {
    content: '';
    position: absolute;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: 20px; right: 30px;
}

.contact-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 5rem;
    border: 1px solid rgba(255,255,255,0.25);
    width: fit-content;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.contact-title em { font-style: normal; color: rgba(255,255,255,0.75); }

.contact-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0;
}

.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.detail-icon {
    width: 2.3rem;
    height: 2.3rem;
    background: rgba(255,255,255,0.15);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.detail-icon .fa-solid { font-size: 0.85rem; color: #fff; }

.contact-detail-item strong {
    display: block;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.1rem;
}

.contact-detail-item p {
    color: rgba(255,255,255,0.78);
    font-size: 0.85rem;
    margin: 0;
    max-width: none;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.contact-socials > span {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

.social-icons { display: flex; gap: 0.6rem; }

.social-btn {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.social-btn .fa-brands { font-size: 0.85rem; color: #fff; }

.contact-deco-cake {
    position: absolute;
    bottom: 1.5rem;
    right: 1.8rem;
    font-size: 3rem;
    opacity: 0.2;
    transform: rotate(-10deg);
    pointer-events: none;
}

/* Right Form Panel */
.contact-form-panel {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.form-header { margin-bottom: 1.8rem; }

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black-clr);
}

.form-header p {
    color: var(--gray-clr);
    font-size: 0.88rem;
    margin: 0.2rem 0 0;
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* Floating labels */
.floating-group { position: relative; width: 100%; }

.floating-group.full-width { grid-column: 1 / -1; }

.floating-input {
    width: 100%;
    border: 1.5px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 1.1rem 1rem 0.4rem 1rem;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
    color: var(--black-clr);
    background: #fafafa;
    transition: all 0.25s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.floating-input:focus {
    border-color: var(--orange-clr);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(233,108,40,0.1);
}

.floating-textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 1.4rem;
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 0.88rem;
    color: var(--gray-clr);
    pointer-events: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.floating-group:has(.floating-textarea) .floating-label {
    top: 1.4rem;
    transform: none;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
    top: 0.4rem;
    transform: none;
    font-size: 0.68rem;
    color: var(--orange-clr);
    font-weight: 600;
}

.floating-select { padding-top: 1.1rem; cursor: pointer; }

.floating-label-select {
    top: 50%;
    transform: translateY(-50%);
}

.floating-select:focus + .floating-label-select,
.floating-select.has-value + .floating-label-select {
    top: 0.4rem;
    transform: none;
    font-size: 0.68rem;
    color: var(--orange-clr);
    font-weight: 600;
}

/* Checkbox */
.form-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.4rem;
}

.consent-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--gray-clr);
    cursor: pointer;
    line-height: 1.4;
}

.consent-check input[type="checkbox"] { display: none; }

.checkmark {
    width: 1.1rem;
    height: 1.1rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.consent-check input[type="checkbox"]:checked + .checkmark {
    background: var(--orange-clr);
    border-color: var(--orange-clr);
}

.consent-check input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Submit button */
.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: var(--orange-clr);
    color: #fff;
    border: none;
    padding: 0.75rem 1.8rem;
    border-radius: 5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
}

.contact-submit-btn:hover {
    background: #c4501a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,108,40,0.35);
}

.contact-submit-btn:active { transform: translateY(0); }
.contact-submit-btn .btn-icon .fa-solid { color: #fff; font-size: 0.88rem; }

.form-response-msg {
    font-size: 0.86rem;
    min-height: 1.2rem;
    padding: 0.2rem 0;
}

.form-response-msg.error { color: #e53e3e; }
.form-response-msg.success { color: #38a169; }

.form-success {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-success h3 { font-size: 1.5rem; color: var(--black-clr); }
.form-success p { color: var(--gray-clr); font-size: 0.95rem; margin-top: 0.5rem; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { transform: scale(0.3); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}


/* =========================================
   RESPONSIVE — TABLET (≤ 960px)
========================================= */
@media (max-width: 960px) {

    .row-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .img-container img { max-width: 100%; }

    .about-content, .content,
    .img-container, .image-container {
        width: 100%;
        flex: unset;
    }

    .image-container::before { display: none; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .contact-info { padding: 2.5rem 2rem; }
    .contact-form-panel { padding: 2.5rem 2rem; }
    .contact-title { font-size: 1.5rem; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 768px)
========================================= */
@media (max-width: 768px) {

    /* Hamburger visible */
    .hamburger { display: flex; }

    /* Full-screen mobile nav */
    .navlist {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1050;
    }

    .navlist.show { display: flex; }

    .navlinks { font-size: 1.3rem; }

    .nav-icons { display: none; }

    /* Hero stacks */
    .hero-section {
        flex-direction: column-reverse;
        min-height: auto;
        padding-block: 2.5rem;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-section .content { text-align: center; }
    .watch { justify-content: center; }
    .btn-container { justify-content: center; }
    p { margin-inline: auto; }

    /* Sections */
    .other-section { padding-block: 3rem; }
    .other-section-container { padding-block: 3rem; }

    /* Cards — 2 per row */
    .card { width: calc(50% - 0.75rem); min-width: 130px; }

    /* App store images center */
    .app-img { justify-content: center; }

    /* Footer columns stack */
    footer .card-container {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    footer .column { width: 100%; }

    /* Contact */
    .contact-section { padding: 3.5rem 0 4rem; }
    .contact-wrapper { border-radius: 1rem; }
    .contact-info { padding: 2rem 1.5rem; gap: 1.5rem; }
    .contact-title { font-size: 1.35rem; }
    .contact-form-panel { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; gap: 1rem; }
    .form-footer-row { flex-direction: column; align-items: flex-start; }
    .contact-submit-btn { width: 100%; justify-content: center; }

    /* Newsletter pill → stacked */
    .form-container {
        flex-direction: column;
        height: auto;
        border-radius: 1rem;
        padding: 0.6rem;
        gap: 0.5rem;
        max-width: 100%;
    }

    input[type='email'] {
        width: 100%;
        border-radius: 0.75rem;
        padding: 0.75rem 1rem;
        height: 3rem;
        border: 0.02rem solid var(--light-gray);
    }

    .form-btn {
        width: 100%;
        border-radius: 0.75rem;
        text-align: center;
    }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
========================================= */
@media (max-width: 480px) {

    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.25rem; }

    /* Cards — 1 per row */
    .card { width: 100%; max-width: 300px; }
    .card-container { gap: 1rem; }

    .contact-info { padding: 1.8rem 1.2rem; }
    .contact-form-panel { padding: 1.8rem 1.2rem; }
    .floating-input { font-size: 0.85rem; }
    .floating-label { font-size: 0.82rem; }
    .contact-deco-cake { font-size: 2rem; }

    footer .card-container { gap: 1.5rem; }
}