/* =========================
   ROOT VARIABLES
========================= */

:root {
    --primary-color: #781414;
    --accent-color: #3C281E;
    --background-color: #F7F4EF;
    --surface-color: #FDFBF8;
    --card-color: #EFE5D9;
    --text-color: #191919;
    --light-text: #FFFFFF;
    --gold-color: #D9A441;
}

/* =========================
   GLOBAL STYLES
========================= */

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: Georgia, serif;
}

.section-title {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

.custom-navbar {
    background: linear-gradient(to right, #8b0f0f, #781414);
    padding: 1rem 2rem;
}

.navbar-brand {
    color: var(--light-text);
    font-size: 2rem;
    font-weight: bold;
}

.nav-link {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-left: 1rem;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: #f8d58b;
}

/* =========================
   HERO CAROUSEL
========================= */

.hero-slide {
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide-1 {
    background-image:
        url('../img/bold_flavor.png');
}

.hero-slide-2 {
    background-image:
        url('../img/Handmade.png');
}

.hero-slide-3 {
    background-image:
        url('../img/OPen_late.png');
}


.hero-overlay {
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    color: white;
    font-size: 5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

/* =========================
   BUTTONS
========================= */

.custom-btn-primary {
    background-color: var(--primary-color);
    border: 2px solid #b43b3b;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 0.75rem;
    font-weight: bold;
    transition: 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.custom-btn-primary:hover {
    background-color: #941c1c;
    color: white;
    transform: translateY(-2px);
}

/* =========================
   FEATURE CARDS
========================= */

.feature-box {
    background-color: var(--surface-color);
    border: 2px solid #e0c9aa;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* =========================
   SPECIALS SECTION
========================= */

.specials-banner {
    background-image:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('../img/garlic_ramen.png');

    background-size: cover;
    background-position: center;

    border-radius: 1rem;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.specials-image {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.specials-overlay {
    padding: 6rem 2rem;
    color: white;
}

.specials-overlay .section-title {
    color: white;
}

/* =========================
   RAMEN CARDS
========================= */

.ramen-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    background-color: var(--surface-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.ramen-card:hover {
    transform: translateY(-8px);
}

.ramen-card img {
    height: 260px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-badge {
    background-color: var(--gold-color);
    color: black;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-card {
    background-color: var(--surface-color);
    border: 2px solid #e0c9aa;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card h5 {
    color: var(--primary-color);
}

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

.footer {
    background: linear-gradient(to right, #8b0f0f, #781414);
    color: white;
    margin-top: 4rem;
}

/* =========================
   MODAL
========================= */

.modal-content {
    border-radius: 1rem;
    border: none;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
}

/* =========================
   MENU HERO
========================= */

.menu-hero {
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('../img/menu_hero.png');

    background-size: cover;
    background-position: center;
}

.menu-hero-overlay {
    padding: 8rem 0;
}

.menu-hero-title {
    font-size: 5rem;
    color: white;
    font-weight: bold;
}

.menu-hero-text {
    color: white;
    font-size: 1.5rem;
}

/* =========================
   MENU PILLS
========================= */

.menu-nav-section {
    background-color: black;
    padding: 1.5rem 0;
}

.menu-pills .nav-link {
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 0.8rem 2rem;
    margin: 0 0.5rem;
    color: white;
    background: transparent;
}

.menu-pills .nav-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* =========================
   MENU CARDS
========================= */

.menu-card {
    background-color: var(--surface-color);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.menu-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-title-row h3 {
    color: var(--primary-color);
}

.menu-title-row span {
    color: var(--primary-color);
    font-weight: bold;
}

.custom-btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-weight: bold;
}

.custom-btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* =========================
   MENU LISTS
========================= */

.menu-list-box,
.dessert-box {
    background-color: var(--surface-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.menu-list-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-list-item:last-child {
    border-bottom: none;
}

.menu-list-item span {
    color: var(--primary-color);
    font-weight: bold;
}

/* =========================
   DESSERT IMAGE
========================= */

.dessert-image {
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* =========================
   ACCORDION
========================= */

.custom-accordion .accordion-button {
    font-weight: bold;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--card-color);
    color: var(--primary-color);
}

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

@media (max-width: 992px) {

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

}

@media (max-width: 768px) {

    .hero-slide,
    .hero-overlay {
        min-height: 550px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .feature-box,
    .testimonial-card,
    .specials-banner {
        padding: 1.5rem;
    }

    .menu-hero-title {
        font-size: 3rem;
    }

    .menu-pills {
        flex-direction: column;
        gap: 1rem;
    }

    .menu-pills .nav-link {
        margin: 0;
    }

}
