/* =====================================================
   KRISPY KOD
   MAIN STYLESHEET
   LIGHT BLUE / YELLOW / WHITE
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--off-white);
    color: var(--dark-blue);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}


/* =====================================================
   COLOURS
===================================================== */

:root {

    /* Main Krispy Kod colours */
    --light-blue: #66c7e8;
    --blue: #28a9d6;
    --dark-blue: #075579;
    --deep-blue: #053d59;

    /* Accent */
    --yellow: #ffd52f;
    --bright-yellow: #ffdf45;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f7fcfe;
    --light-blue-bg: #e8f8fd;
    --pale-yellow: #fff8cf;

    --black: #092f40;
    --grey: #667780;
    --light-grey: #dcecf2;
}


/* =====================================================
   TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
.logo {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 1px;
}

.section-label {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.center-heading {
    text-align: center;
}

.center-heading h2,
.menu-intro h2 {
    font-size: clamp(48px, 7vw, 78px);
    line-height: .9;
}

.center-heading h2 span,
.menu-intro h2 span {
    color: var(--yellow);
}


/* =====================================================
   NAVIGATION
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;

    background: var(--white);

    z-index: 1000;

    border-bottom: 4px solid var(--yellow);

    box-shadow: 0 3px 15px rgba(5, 61, 89, .08);
}

.nav-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO IMAGE */

.logo {
    display: flex;
    align-items: center;

    height: 65px;
}

.logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
}


/* NAVIGATION LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--dark-blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--blue);
}


/* NAV ORDER BUTTON */

.nav-order-btn {
    background: var(--yellow);
    color: var(--dark-blue);

    padding: 12px 20px;

    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;

    border-radius: 4px;

    transition: .2s ease;
}

.nav-order-btn:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}


/* MOBILE MENU */

.mobile-menu-btn {
    display: none;

    border: none;
    background: transparent;

    color: var(--dark-blue);

    font-size: 24px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 780px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            var(--light-blue),
            var(--blue)
        );

    color: white;

    overflow: hidden;
}


/* Yellow decorative circle */

.hero::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -200px;
    bottom: -250px;

    background: var(--yellow);

    border-radius: 50%;

    opacity: .95;
}


/* White decorative circle */

.hero::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: 130px;
    top: 130px;

    border: 40px solid white;

    border-radius: 50%;

    opacity: .18;
}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(255,255,255,.22),
            transparent 35%
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 70px;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--yellow);
    color: var(--dark-blue);

    padding: 8px 14px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;

    margin-bottom: 25px;

    border-radius: 3px;
}


.hero h1 {
    font-size: clamp(70px, 11vw, 140px);
    line-height: .82;

    max-width: 850px;

    color: white;

    text-shadow: 2px 3px 0 rgba(5,61,89,.12);
}


.hero h1 span {
    color: var(--yellow);
}


.hero-text {
    max-width: 570px;

    margin-top: 30px;

    font-size: 18px;
    color: white;
}


.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 16px 26px;

    font-size: 13px;
    font-weight: 900;

    text-transform: uppercase;

    transition: .2s ease;

    border-radius: 4px;
}


.btn-primary {
    background: var(--yellow);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background: white;
    color: var(--dark-blue);
    transform: translateY(-2px);
}


.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-blue);
}


.hero-features {
    display: flex;
    gap: 35px;

    margin-top: 55px;

    flex-wrap: wrap;
}


.hero-features div {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
}


.hero-features i {
    color: var(--yellow);
    font-size: 18px;
}


/* =====================================================
   ORDER STRIP
===================================================== */

.order-strip {
    background: var(--yellow);

    padding: 25px 0;
}

.order-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.small-heading {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;

    color: var(--dark-blue);
}

.order-strip h2 {
    font-size: 36px;
    line-height: 1;

    color: var(--dark-blue);
}


.order-strip-buttons {
    display: flex;
    gap: 10px;
}


.delivery-btn {
    display: flex;
    align-items: center;
    gap: 12px;

    background: var(--dark-blue);
    color: white;

    padding: 12px 18px;

    min-width: 175px;

    border-radius: 4px;

    transition: .2s ease;
}


.delivery-btn:hover {
    background: var(--blue);
    transform: translateY(-2px);
}


.delivery-btn > i {
    font-size: 24px;
}


.delivery-btn small {
    display: block;

    font-size: 8px;
    font-weight: 700;

    color: #b8d8e4;
}


.delivery-btn strong {
    font-size: 15px;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: var(--off-white);
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;

    align-items: center;
}


.about-image {
    position: relative;
}


.image-card {
    background: var(--dark-blue);

    padding: 15px;

    transform: rotate(-2deg);

    border-radius: 4px;
}


.image-placeholder {
    min-height: 530px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 15px;

    background:
        linear-gradient(
            135deg,
            var(--light-blue),
            var(--blue)
        );

    color: white;

    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
}


.image-placeholder i {
    font-size: 80px;
}


.about-stamp {
    position: absolute;

    right: -25px;
    bottom: -25px;

    width: 130px;
    height: 130px;

    background: var(--yellow);
    color: var(--dark-blue);

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    transform: rotate(10deg);

    border: 6px solid white;

    box-shadow: 0 5px 20px rgba(5,61,89,.15);
}


.about-stamp span {
    font-family: "Bebas Neue";
    font-size: 22px;
    line-height: 1;
}


.about-stamp strong {
    font-family: "Bebas Neue";
    font-size: 30px;
    line-height: 1;
}


.about-stamp small {
    font-size: 8px;
    font-weight: 700;
}


.about-content h2 {
    font-size: clamp(55px, 6vw, 82px);
    line-height: .9;

    margin-bottom: 25px;

    color: var(--dark-blue);
}


.about-content h2 span {
    color: var(--blue);
}


.about-content > p {
    color: #526d78;

    margin-bottom: 15px;

    max-width: 550px;
}


.about-highlights {
    margin-top: 30px;

    display: grid;
    gap: 15px;
}


.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}


.highlight > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);
    color: white;

    font-size: 19px;

    border-radius: 4px;
}


.highlight strong {
    display: block;

    font-size: 13px;

    color: var(--dark-blue);
}


.highlight span {
    display: block;

    color: var(--grey);

    font-size: 11px;
}


/* =====================================================
   MENU INTRO
===================================================== */

.menu-intro {
    background: var(--dark-blue);
    color: white;

    text-align: center;

    padding: 90px 0 70px;
}


.menu-intro p:last-child {
    margin: 25px auto 0;

    color: #c4e1eb;

    max-width: 550px;
}


/* =====================================================
   MENU
===================================================== */

.menu {
    background: var(--off-white);
}


.menu-category {
    margin-bottom: 90px;
}


.category-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    border-bottom: 3px solid var(--dark-blue);

    padding-bottom: 15px;

    margin-bottom: 25px;
}


.category-heading h2 {
    font-size: clamp(45px, 6vw, 70px);
    line-height: .85;

    color: var(--dark-blue);
}


.category-number {
    font-family: "Bebas Neue";

    font-size: 50px;

    color: #c8e2eb;

    line-height: 1;
}


.menu-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


.menu-item {
    background: white;

    padding: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-left: 5px solid transparent;

    box-shadow: 0 2px 8px rgba(5,61,89,.04);

    transition: .2s ease;
}


.menu-item:hover {
    border-left-color: var(--yellow);

    transform: translateX(3px);

    box-shadow: 0 5px 15px rgba(5,61,89,.08);
}


.menu-item h3 {
    font-size: 23px;

    line-height: 1;

    color: var(--dark-blue);
}


.menu-item p {
    color: var(--grey);

    font-size: 11px;

    margin-top: 7px;
}


.menu-item > strong,
.single-price {
    color: var(--blue);

    font-family: "Bebas Neue";

    font-size: 28px;

    white-space: nowrap;
}


.item-prices {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 3px;

    white-space: nowrap;
}


.item-prices span {
    color: #71848c;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


.item-prices strong {
    color: var(--blue);

    font-family: "Bebas Neue";

    font-size: 22px;

    margin-left: 5px;
}


/* =====================================================
   ALL DAY SPECIAL
===================================================== */

.featured-menu {
    margin-top: 10px;
}


.special-card {
    background: var(--blue);
    color: white;

    padding: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;

    border-radius: 4px;
}


.special-info h3 {
    font-family: "Bebas Neue";

    font-size: 36px;

    line-height: 1;
}


.special-info p {
    color: #e4f7fc;

    margin-top: 5px;

    font-size: 12px;
}


.price-options {
    display: flex;
    gap: 10px;
}


.price-options div {
    background: var(--dark-blue);

    padding: 15px 22px;

    text-align: center;

    border-radius: 3px;
}


.price-options span {
    display: block;

    font-size: 9px;
    font-weight: 700;

    color: #a9ccd8;

    text-transform: uppercase;
}


.price-options strong {
    display: block;

    color: var(--yellow);

    font-family: "Bebas Neue";

    font-size: 30px;

    line-height: 1;
}


/* =====================================================
   KIDS
===================================================== */

.kids-category {
    background: var(--pale-yellow);

    padding: 35px;

    border: 2px solid var(--yellow);

    border-radius: 4px;
}


.category-description {
    color: #526d78;

    font-size: 13px;

    margin-top: -10px;
    margin-bottom: 20px;
}


/* =====================================================
   MILKSHAKES
===================================================== */

.milkshake-category {
    background: var(--light-blue);

    padding: 35px;

    color: var(--dark-blue);

    border-radius: 4px;
}


.milkshake-category .category-heading {
    border-color: var(--dark-blue);
}


.milkshake-category .category-number {
    color: rgba(5,61,89,.18);
}


.milkshake-flavours {
    color: var(--dark-blue);

    font-size: 13px;

    max-width: 800px;
}


.shake-prices {
    display: flex;

    gap: 12px;

    margin-top: 25px;
}


.shake-prices div {
    background: var(--dark-blue);

    padding: 15px 25px;

    border-radius: 3px;
}


.shake-prices span {
    display: block;

    font-size: 10px;
    font-weight: 700;

    color: white;
}


.shake-prices strong {
    color: var(--yellow);

    font-family: "Bebas Neue";

    font-size: 30px;
}


/* =====================================================
   COMING SOON
===================================================== */

.coming-soon {
    background: var(--yellow);

    padding: 35px;

    display: flex;
    align-items: center;

    gap: 25px;

    border-radius: 4px;
}


.coming-icon {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    background: var(--dark-blue);
    color: var(--yellow);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    border-radius: 4px;
}


.coming-soon h2 {
    font-size: 48px;

    line-height: .9;

    color: var(--dark-blue);
}


.coming-soon p:last-child {
    font-size: 12px;

    margin-top: 4px;

    color: var(--dark-blue);
}


/* =====================================================
   WHY US
===================================================== */

.why-us {
    background: white;
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;

    margin-top: 55px;
}


.why-card {
    background: var(--light-blue-bg);

    padding: 35px 25px;

    text-align: center;

    border-radius: 4px;

    border-bottom: 4px solid var(--yellow);
}


.why-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);
    color: white;

    font-size: 25px;

    border-radius: 50%;
}


.why-card h3 {
    font-size: 25px;

    line-height: 1;

    color: var(--dark-blue);
}


.why-card p {
    color: #617780;

    font-size: 11px;

    margin-top: 12px;
}


/* =====================================================
   ORDER SECTION
===================================================== */

.order-section {
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--dark-blue)
        );

    color: white;

    text-align: center;

    padding: 110px 0;
}


.order-content h2 {
    font-size: clamp(70px, 10vw, 125px);

    line-height: .8;
}


.order-content h2 span {
    color: var(--yellow);
}


.order-content > p:not(.section-label) {
    color: #d8edf4;

    margin: 25px auto;

    font-size: 15px;
}


.order-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}


.big-order-btn {
    min-width: 300px;

    background: var(--yellow);

    color: var(--dark-blue);

    padding: 18px 22px;

    display: flex;
    align-items: center;

    gap: 15px;

    text-align: left;

    border-radius: 4px;

    transition: .2s ease;
}


.big-order-btn:hover {
    background: white;

    color: var(--dark-blue);

    transform: translateY(-3px);
}


.big-order-btn > i:first-child {
    font-size: 28px;
}


.big-order-btn div {
    flex: 1;
}


.big-order-btn small {
    display: block;

    color: #55717d;

    font-size: 8px;

    font-weight: 700;
}


.big-order-btn strong {
    font-family: "Bebas Neue";

    font-size: 28px;

    line-height: 1;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: var(--deep-blue);

    color: white;

    padding-top: 70px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding-bottom: 60px;
}


.footer-brand p {
    color: #a5c5d0;

    font-size: 12px;

    margin-top: 15px;
}


.social-links {
    display: flex;

    gap: 10px;

    margin-top: 25px;
}


.social-links a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--dark-blue);

    color: white;

    transition: .2s ease;

    border-radius: 4px;
}


.social-links a:hover {
    background: var(--yellow);

    color: var(--dark-blue);
}


.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.footer-column h3 {
    color: var(--yellow);

    font-size: 20px;

    margin-bottom: 8px;
}


.footer-column a,
.footer-column p {
    color: #a5c5d0;

    font-size: 11px;
}


.footer-column a:hover {
    color: white;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);

    padding: 20px 0;
}


.footer-bottom .container {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    color: #7294a0;

    font-size: 10px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .nav-links {
        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        background: white;

        display: none;

        flex-direction: column;

        padding: 25px;

        gap: 20px;

        border-top: 1px solid var(--light-grey);

        box-shadow: 0 8px 20px rgba(5,61,89,.1);
    }


    .nav-links.active {
        display: flex;
    }


    .nav-order-btn {
        display: none;
    }


    .mobile-menu-btn {
        display: block;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .about-image {
        max-width: 600px;

        margin: 0 auto;

        width: 100%;
    }


    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =====================================================
   TABLET / MOBILE
===================================================== */

@media (max-width: 700px) {

    .section {
        padding: 70px 0;
    }


    .navbar {
        height: 75px;
    }


    .logo {
        height: 60px;
    }


    .logo img {
        height: 52px;
    }


    .nav-links {
        top: 75px;
    }


    .hero {
        min-height: 700px;
    }


    .hero h1 {
        font-size: 78px;
    }


    .hero-text {
        font-size: 15px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    .hero-features {
        gap: 15px;

        flex-direction: column;
    }


    .order-strip-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .order-strip-buttons {
        width: 100%;

        flex-direction: column;
    }


    .delivery-btn {
        width: 100%;
    }


    .menu-grid {
        grid-template-columns: 1fr;
    }


    .special-card {
        flex-direction: column;

        align-items: flex-start;
    }


    .price-options {
        width: 100%;
    }


    .price-options div {
        flex: 1;
    }


    .kids-category,
    .milkshake-category {
        padding: 25px 18px;
    }


    .shake-prices {
        flex-direction: column;
    }


    .shake-prices div {
        display: flex;

        align-items: center;

        justify-content: space-between;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .order-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .big-order-btn {
        min-width: 0;

        width: 100%;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-bottom .container {
        flex-direction: column;

        text-align: center;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }


    .logo img {
        height: 48px;
    }


    .hero h1 {
        font-size: 67px;
    }


    .hero-badge {
        font-size: 9px;
    }


    .category-heading h2 {
        font-size: 45px;
    }


    .category-number {
        font-size: 35px;
    }


    .menu-item {
        padding: 18px 15px;
    }


    .menu-item h3 {
        font-size: 20px;
    }


    .item-prices span {
        font-size: 8px;
    }


    .special-info h3 {
        font-size: 29px;
    }


    .about-stamp {
        width: 105px;
        height: 105px;

        right: -5px;
    }


    .about-stamp strong {
        font-size: 25px;
    }


    .coming-soon {
        align-items: flex-start;

        padding: 25px 18px;
    }

}
