/* =====================================================
   BAKSO PAK BOS — PREMIUM STYLE
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;

    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo span {
    color: #e21b1b;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    position: relative;

    color: #bdbdbd;
    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.navbar nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #e21b1b;

    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: #fff;
}

.navbar nav a:hover::after {
    width: 100%;
}

.nav-button {
    padding: 11px 20px;

    background: #e21b1b;
    border: 1px solid #e21b1b;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 25px rgba(226, 27, 27, 0.18);

    transition: 0.3s ease;
}

.nav-button:hover {
    background: #ff2929;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(226, 27, 27, 0.3);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 7% 80px;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(226, 27, 27, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(226, 27, 27, 0.06),
            transparent 30%
        ),
        #080808;
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: 100px;

    background: rgba(226, 27, 27, 0.12);

    filter: blur(120px);
    border-radius: 50%;

    animation: floatingGlow 6s ease-in-out infinite;
}

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0.015) 50%,
            transparent 100%
        );

    pointer-events: none;
}

.hero-content {
    max-width: 720px;

    position: relative;
    z-index: 2;

    animation: heroEnter 1s ease forwards;
}

.small-title {
    color: #e21b1b;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(60px, 9vw, 110px);

    line-height: 0.88;

    font-weight: 900;
    letter-spacing: -5px;
}

.hero h1 span {
    color: #e21b1b;
}

.tagline {
    margin-top: 30px;

    font-size: 24px;
    font-weight: 800;
}

.description {
    max-width: 570px;

    margin-top: 15px;

    color: #999;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 8px;

    font-weight: 700;
    font-size: 14px;

    transition: 0.3s ease;
}

.primary-button {
    background: #e21b1b;
    color: #fff;

    box-shadow: 0 10px 30px rgba(226, 27, 27, 0.2);
}

.primary-button:hover {
    background: #ff2929;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(226, 27, 27, 0.35);
}

.secondary-button {
    border: 1px solid #333;
    color: #fff;
    background: rgba(255,255,255,0.02);
}

.secondary-button:hover {
    border-color: #e21b1b;
    color: #e21b1b;
    transform: translateY(-3px);
}


/* =====================================================
   SECTION
===================================================== */

.menu-section,
.about-section,
.location-section {
    padding: 115px 7%;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading p,
.section-label {
    color: #e21b1b;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 3px;
}

.section-heading h2,
.about-content h2 {
    margin-top: 10px;

    font-size: clamp(35px, 5vw, 55px);

    line-height: 1.05;
    letter-spacing: -1px;
}

.section-heading span {
    display: block;

    max-width: 600px;

    margin: 15px auto 0;

    color: #888;
}


/* =====================================================
   MENU
===================================================== */

.menu-section {
    background: #101010;
}

.menu-container {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    max-width: 1200px;
    margin: auto;
}

.menu-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #191919,
            #121212
        );

    border: 1px solid #292929;

    border-radius: 18px;

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.18);
}

.menu-card:hover {
    transform: translateY(-10px);

    border-color: rgba(226, 27, 27, 0.65);

    box-shadow:
        0 20px 55px rgba(0,0,0,0.45),
        0 0 25px rgba(226,27,27,0.07);
}

.menu-image {
    width: 100%;
    height: 235px;

    overflow: hidden;

    background: #191919;
}

.menu-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.08);
}

.menu-info {
    padding: 26px;
}

.menu-info h3 {
    font-size: 21px;
    font-weight: 800;
}

.menu-info p {
    min-height: 48px;

    color: #929292;

    font-size: 14px;

    margin-top: 8px;
}

.menu-bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 22px;
}

.menu-bottom strong {
    color: #ff2929;
    font-size: 19px;
    font-weight: 900;
}

.menu-bottom button {
    border: none;

    background: #e21b1b;
    color: #fff;

    padding: 10px 18px;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 800;

    transition: 0.3s ease;
}

.menu-bottom button:hover {
    background: #ff2929;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(226,27,27,0.25);
}


/* =====================================================
   WHY US
===================================================== */

.why-section {
    padding: 115px 7%;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(226,27,27,0.06),
            transparent 35%
        ),
        #080808;
}

.why-container {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.why-card {
    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #111111
        );

    border: 1px solid #292929;

    border-radius: 18px;

    transition: 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);

    border-color: rgba(226,27,27,0.55);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.35);
}

.why-number {
    color: #e21b1b;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;

    margin-bottom: 12px;
}

.why-card p {
    color: #909090;
    font-size: 14px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    min-height: 550px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(226,27,27,0.09),
            transparent 30%
        ),
        #0b0b0b;
}

.about-content {
    max-width: 650px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p:not(.section-label) {
    color: #999;

    margin-bottom: 15px;

    max-width: 600px;
}


/* =====================================================
   LOCATION
===================================================== */

.location-section {
    background: #101010;
}

.location-box {
    max-width: 750px;

    margin: auto;

    padding: 48px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #191919,
            #121212
        );

    border: 1px solid #292929;

    border-radius: 18px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25);
}

.location-box h3 {
    font-size: 28px;
}

.location-box p {
    color: #929292;

    margin: 12px 0 28px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 55px 7%;

    text-align: center;

    background: #050505;

    border-top: 1px solid #202020;
}

.footer-logo {
    font-size: 21px;
    font-weight: 900;
}

footer p {
    color: #e21b1b;

    margin-top: 8px;

    font-weight: 700;
}

footer span {
    display: block;

    margin-top: 25px;

    color: #5f5f5f;

    font-size: 13px;
}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes heroEnter {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatingGlow {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .navbar {
        padding: 0 5%;
    }

    .navbar nav {
        gap: 16px;
    }

    .menu-container {
        grid-template-columns: 1fr 1fr;
    }

    .why-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .navbar {
        height: 65px;

        padding: 0 5%;
    }

    /*
       NAVIGASI SEMENTARA DISEMBUNYIKAN.
       Nanti kita buat hamburger menu.
    */

    .navbar nav {
        display: none;
    }

    .nav-button {
        padding: 9px 14px;

        font-size: 12px;
    }

    .logo {
        font-size: 17px;
    }


    /* HERO */

    .hero {
        min-height: 90vh;

        padding: 110px 5% 70px;
    }

    .hero h1 {
        font-size: 65px;

        letter-spacing: -3px;
    }

    .small-title {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .tagline {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;

        text-align: center;
    }


    /* SECTIONS */

    .menu-section,
    .about-section,
    .location-section {
        padding: 85px 5%;
    }

    .why-section {
        padding: 85px 5%;
    }


    /* MENU */

    .menu-container {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .menu-image {
        height: 220px;
    }

    .menu-info {
        padding: 23px;
    }


    /* WHY */

    .why-container {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .why-card {
        padding: 28px;
    }


    /* HEADINGS */

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 38px;
    }

    .section-heading span {
        font-size: 14px;
    }


    /* LOCATION */

    .location-box {
        padding: 32px 20px;
    }

    .location-box h3 {
        font-size: 24px;
    }

    .location-box p {
        font-size: 14px;
    }


    /* FOOTER */

    footer {
        padding: 45px 5%;
    }
}


/* =====================================================
   SMALL PHONE
===================================================== */

@media (max-width: 380px) {

    .logo {
        font-size: 15px;
    }

    .nav-button {
        padding: 8px 11px;

        font-size: 11px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .tagline {
        font-size: 18px;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 33px;
    }

    .menu-image {
        height: 200px;
    }
}
