/* GLOBAL STYLES */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins/poppins-semibold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins/poppins-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




/* HERO SECTION */
.hero {
    background-image: image-set(url('/assets/img/hero-bg-v2.webp') type("image/webp"),
            url('/assets/img/hero-bg-v2.jpg') type("image/jpeg"));
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
    text-align: center;
    position: relative;
}

/* Inner container to align logo + content as a group */
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO above text */
.logo-inside-hero {
    background: url('/assets/img/ahaara-logo.png') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 540px;
    height: auto;
    aspect-ratio: 540 / 210;
}

/* Content block */
.hero-content {
    padding: 0 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Typography */
.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .btn {
    padding: 14px 28px;
    font-weight: bold;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    min-width: 140px;
    text-align: center;
    text-decoration: none;
}

.btn.order {
    background-color: #f5a623;
    color: white;
}

.btn.menu {
    background-color: #2d6b2d;
    color: white;
}

/* Tabs */
.tab-switch {
    text-align: center;
    margin: 30px 0;
}

.tab-content {
    padding: 20px;
    background: white;
    margin: 0 10%;
    border-radius: 5px;
}

/* === Site Footer === */
.site-footer {
    text-align: center;
    padding: 0px;
    font-size: 14px;
    background: #fff;
    color: #777;
    position: relative;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 0 7px;
}

.footer-right {
    text-align: right;
    flex: 1;
}

.scm-brand-link {
    text-decoration: none;
    color: inherit;
}

.scm-brand-link:hover {
    text-decoration: underline;
    color: #39B54A;
    /* Optional highlight color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-inside-hero {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .hero-inner {
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-content {
        padding: 0 10px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
        /* scalable between small and mid */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-heading {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        font-weight: bold;
        line-height: 1.3;
        margin-bottom: 10px;
        color: white;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        line-height: 1.3;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 300px;
    }

    .tab-content {
        margin: 0 5%;
    }

    .footer-inner {
        padding: 0 7px;
        /* Prevents text from touching screen edges on very small screens */
    }
}