﻿:root {
    --primary-color: #e38612;
    --secondary-color: #ffffff;
    --text-light: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.55);
    --card-bg: rgba(255, 255, 255, 0.95);
    --navbar-dark-bg: rgba(20, 20, 20, 0.88);
}

.error, .text-danger {
    color: red;
}

    .error.m-top {
        margin-top: 1rem;
    }

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

section {
    background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url("/images/doodle.png");
    background-repeat: repeat;
    background-size: 900px auto;
    background-position: top left;
    background-attachment: fixed;
}


body {
    font-family: 'Roboto', sans-serif;
}


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


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


    img.photo {
        background: #fff;
        padding: 10px;
        border-radius: 6px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
    }



/* ================= CAROUSEL LISTING ================= */

.carousel-listing {
    width: 100%;
    padding: 4rem 1rem;
}

.carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}


.carousel-track {
    display: flex;
    transition: transform 1.2s ease-in-out; /* slower */
    will-change: transform;
}

.carousel-item {
    flex: 0 0 33.333%;
    padding: 0 12px;
    text-align: center;
}



.carousel-image-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.65) );
    z-index: 2;
}


.carousel-image-box {
    position: relative;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.carousel-title {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 3; /* Above overlay */
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}


.carousel-item:hover img {
    transform: scale(1.05);
}



.carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}



/* ================= RESPONSIVE ================= */

/* Tablet */

@media (max-width: 992px) {

    .carousel-item {
        flex: 0 0 50%;
    }

        .carousel-item img {
            height: 360px;
        }
}


/* Mobile */

@media (max-width: 576px) {

    .carousel-item {
        flex: 0 0 100%;
    }

        .carousel-item img {
            height: 300px;
        }

    .carousel-title {
        font-size: 1.05rem;
    }
}







/*Highlighted content sections*/
.section-header {
    margin-bottom: 2rem;
}

.section-tag {
    font-family: 'Cookie', cursive;
    font-size: 3.2rem;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 0.6rem;
}

.section-header h2 {
    font-weight: 500;
    color: #111;
    font-size: 2.4rem;
}


.highlight-section {
    width: 100%;
    padding: 4rem 1rem;
}

.highlight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-content p {
    color: #444;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

/* Tablet */

@media (max-width: 992px) {

    .section-tag {
        font-size: 2.6rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .highlight-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* Mobile */

@media (max-width: 576px) {

    .section-tag {
        font-size: 2.1rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .highlight-section {
        padding: 3.5rem 1rem;
    }

    .highlight-content {
        text-align: center;
    }
}

.story-signature {
    margin-top: 1.8rem;
    font-family: 'Cookie', cursive;
    font-size: 2.1rem;
    color: #333;
}

.highlight-section .highlight-image-wrapper.right {
    display: flex;
    justify-content: flex-end;
}

.highlight-section .highlight-image-wrapper.left {
    display: flex;
    justify-content: flex-start;
}

.highlight-section .highlight-image-wrapper img {
    max-height: 550px;
}
/* ================= BUTTON SYSTEM ================= */
/* Base Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: all 0.25s ease;
}


/* Primary (Main CTA) */

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}




/* Secondary (Outline / Soft CTA) */

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}



/* Disabled */

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}



/* ================= BUTTONS INSIDE HIGHLIGHT SECTIONS ================= */

.highlight-section .btn {
    margin-top: 1.6rem;
}


/* Mobile */

@media (max-width: 576px) {

    .highlight-section .btn {
        margin-left: auto;
        margin-right: auto;
    }
}



/* ================= STRIPE BUTTON EFFECT ================= */


/* Animation */

@keyframes stripe-slide {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 100% 0;
    }
}


/* Stripe Base */

.btn-stripe {
    position: relative;
    overflow: hidden;
}


    /* Stripe Bar */

    .btn-stripe::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background-image: repeating-linear-gradient( 45deg, rgba(255,255,255,0.8), rgba(255,255,255,0.8) 1px, transparent 2px, transparent 5px );
        background-size: 7px 7px;
        border-top: 1px solid rgba(255,255,255,0.5);
        pointer-events: none;
    }


/* ================= PRIMARY + STRIPE ================= */

.btn-primary.btn-stripe {
    background: var(--primary-color);
    color: #fff;
}


    .btn-primary.btn-stripe:hover {
        background: #cc760f;
        color: #fff;
    }

        .btn-primary.btn-stripe:hover::after {
            background-image: repeating-linear-gradient( 45deg, #ffffff, #ffffff 1px, transparent 2px, transparent 5px );
            border-top-color: rgba(255,255,255,0.8);
            animation: stripe-slide 12s linear infinite;
        }


/* ================= CONTACT SECTION ================= */

.contact-section {
    width: 100%;
    padding: 6rem 1rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Grid Layout */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

/* Card */

.contact-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

/* Card Title */

.contact-card-title {
    font-family: 'Cookie', cursive;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

/* Opening Times */

.opening-times {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.opening-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    color: #111;
}

/* Divider */

.contact-divider {
    height: 1px;
    background: #eaeaea;
    margin: 2rem 0;
}

/* Contact Details */

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
    font-size: 1rem;
}

    .contact-detail img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

/* Form */

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

.form-group input,
.form-group textarea,
.styled-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(227, 134, 18, 0.15);
    }

.contact-form-card .btn {
    margin-top: 1rem;
    width: fit-content;
}

@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-card {
        padding: 2.5rem;
    }

    .contact-card-title {
        font-size: 2.1rem;
    }
}


@media (max-width: 576px) {

    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-card-title {
        font-size: 1.9rem;
    }

    .opening-row {
        font-size: 0.95rem;
    }

    .contact-detail {
        font-size: 0.95rem;
    }
}



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

.site-footer {
    background-image: linear-gradient(rgba(255,255,255,0.94), rgba(255,255,255,0.94)), url("/images/doodle.png");
    background-repeat: repeat;
    background-size: 900px auto;
    padding: 4rem 1rem 2rem 1rem;
    border-top: 1px solid #eaeaea;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

    .footer-brand h3 {
        font-family: 'Cookie', cursive;
        font-size: 2.8rem;
        color: var(--primary-color);
        margin-bottom: 0.6rem;
    }

    .footer-brand p {
        color: #444;
        font-size: 1rem;
    }


.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1.4rem;
    color: #111;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

    .footer-column ul li a {
        color: #555;
        transition: color 0.2s ease;
    }

        .footer-column ul li a:hover {
            color: var(--primary-color);
        }


.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #555;
}

    .footer-contact-item img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }


.footer-hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: #555;
}


.footer-social {
    display: flex;
    gap: 1rem;
}

    .footer-social img {
        width: 38px;
        height: 38px;
        background: var(--primary-color);
        padding: 8px;
        border-radius: 50%;
        transition: transform 0.2s ease, background 0.2s ease;
    }

        .footer-social img:hover {
            transform: translateY(-3px);
            background: #cc760f;
        }


.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}


@media (max-width: 576px) {

    .site-footer {
        padding: 3rem 1rem 1.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact-item,
    .footer-hours-row {
        justify-content: center;
    }

        .footer-hours-row{
            justify-content: space-between;
            padding: 0px 50px
        }

        .footer-social {
            justify-content: center;
        }

    .footer-brand h3 {
        font-size: 2.2rem;
    }
}




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

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.2rem 1rem;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
}

    .main-navbar.scrolled {
        background: var(--navbar-dark-bg);
        backdrop-filter: blur(6px);
    }


.navbar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.navbar-logo img {
    height: 55px;
    object-fit: contain;
}


.navbar-links {
    display: flex;
    gap: 2.5rem;
}

    .navbar-links a {
        color: var(--text-light);
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .navbar-links a:hover, .navbar-links a.active {
            color: var(--primary-color);
            font-weight:bold;
        }



.pixel_header_icon > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pixel_header_icon > ul > li {
        display: inline-block;
        margin-left: 18px;
        position: relative;
    }

.pixel_header_icon i {
    font-size: 22px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

    .pixel_header_icon i:hover {
        color: var(--primary-color);
    }


.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50px;
}


.pixel_header_icon > ul > li.pixel_nav_toggle {
    width: 30px;
    padding: 7px 7px 0;
    vertical-align: middle;
    cursor: pointer;
    transform: translateY(-4px);
    display: none;
}

    .pixel_header_icon > ul > li.pixel_nav_toggle > span {
        display: block;
        height: 2px;
        border-radius: 3px;
        background-color: var(--text-light);
        margin-bottom: 4px;
        transition: all 0.2s ease;
    }


.mobile-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100vh;
    background: var(--navbar-dark-bg);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 9998;
}

    .mobile-menu a {
        color: var(--text-light);
        font-size: 1.1rem;
    }

    .mobile-menu.active {
        left: 0;
    }


@media (max-width: 992px) {

    .navbar-links {
        display: none;
    }

    .pixel_header_icon > ul > li.pixel_nav_toggle {
        display: inline-block;
    }
}


@media (min-width: 1024px) {
    .pixel_header_icon > ul {
        border-left: 1px solid #998c8c;
    }
    .navbar-right {
        display: flex;
        gap: 20px;
    }
}


@media (max-width: 430px) {
    .hero .hero-content {
        padding-top: 90px;
    }
}



/* ================= 404 PAGE ================= */

.notfound-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem;
    text-align: center;
}

.notfound-wrapper {
    max-width: 600px;
}

.notfound-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.notfound-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2.2rem;
    line-height: 1.6;
}


@media (max-width: 576px) {

    .notfound-section {
        padding: 4rem 1rem;
    }

    .notfound-text {
        font-size: 1rem;
    }
}



/*Whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.08);
        box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    }
    .whatsapp-float::after {
        content: "Chat with us";
        position: absolute;
        right: 70px;
        background: #333;
        color: #fff;
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 13px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s;
    }

    .whatsapp-float:hover::after {
        opacity: 1;
    }

/* Fullscreen overlay */
.global-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(0, 0, 0, 0.08);
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 576px) {
    .loader-spinner {
        width: 45px;
        height: 45px;
        border-width: 5px;
    }
}