/* ===========================
   FONT IMPORTS
=========================== */
@font-face {
    font-family: 'Gang of Three';
    src: url('assets/fonts/go3v2.ttf') format('truetype');
}

@font-face {
    font-family: 'CS Brain';
    src: url('assets/fonts/CSBrian-Regular.woff2') format('woff2'),
         url('assets/fonts/CSBrian-Regular.woff') format('woff'),
         url('assets/fonts/CSBrian-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


/* ===========================
   GLOBAL RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    overflow-x: hidden;
}

body {
    background: #F9F9F9; /* light gray background */
    font-family: 'CS Brain', sans-serif;
}

/* ===========================
   COLORS VARIABLES (for reference)
=========================== */
:root {
    --primary-color: #D12A18;
    --secondary-color: #203260;
    --accent-light: #FFF8F0;
    --bg-light: #F9F9F9;
}

/* ===========================
   HERO / CAROUSEL
=========================== */
.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(70%);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--accent-light);
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Gang of Three', sans-serif;
    color: var(--primary-color);
}

/* ===========================
   MENU CARDS
=========================== */
.menu-card {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Gang of Three', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background-color: #FFF8F0;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.menu-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    background-color: #203260;
    /* background: url('assets/images/food/food-bg.png') no-repeat center center;
    background-size: cover; */
}

.card-body .card-title {
    
}



/* ===========================
   NAVBAR
=========================== */
.navbar {
    background: var(--primary-color);
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    z-index: 999;
    width: 100vw;
}

.navbar-brand img {
    max-width: 10rem;
    transition: all 0.4s ease;
}

.nav-link {
    color: var(--accent-light);
    font-weight: 500;
    position: relative;
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-light);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler,
.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

/* ===========================
   NAVBAR LARGE SCREENS
=========================== */
@media (min-width: 992px) {
    .navbar {
        padding: 25px 40px;
        max-height: 6rem;
    }

    .navbar-brand img {
        max-width: 15rem;
    }

    .navbar.scrolled {
        max-height: 4rem;
        padding: 0.4rem 1rem;
        background-color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar.scrolled .navbar-brand img {
        max-width: 10rem;
    }

    .nav-link {
        font-size: 1.05rem;
        margin-left: 30px;
    }
}

@media (min-width: 1200px) {
    .navbar {
        padding: 1rem 5rem;
    }
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: var(--secondary-color);
    color: var(--accent-light);
    text-align: center;
    padding: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.brand-name,
.brand-tag {
    font-family: 'Gang of Three', sans-serif;
    color: var(--primary-color);
}

.brand-name { font-size: 2rem; }
.brand-tag  { font-size: 1rem; }

.footer-message {
    font-family: 'CS Brain', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--accent-light);
}

.footer-links {
    margin-top: 1rem;
}

/* Social Icons */
.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.social-icon {
    color: var(--accent-light);
    font-size: 1.5rem;
    height: 5vh;
    width: 5vh;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.social-icon:hover {
    border-color: var(--primary-color);
}

.facebook:hover { color: #1877F2; }
.twitter:hover { color: #1DA1F2; }
.instagram:hover { color: #C13584; }
.linkedin:hover { color: #0077B5; }

.footer-copyright {
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-logo{
    max-width: 12rem;
    margin-bottom: 0.5rem;
}

/* ===========================
   RESPONSIVE FOOTER
=========================== */
@media (max-width: 1024px) {
    .brand-name { font-size: 1.8rem; }
    .brand-tag  { font-size: 0.9rem; }
    .footer-message { font-size: 1.25rem; }
    .social-icon { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .brand-name { font-size: 1.5rem; }
    .brand-tag  { font-size: 0.8rem; }
    .footer-message { font-size: 1rem; }
    .social-icon { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .brand-name { font-size: 1.2rem; }
    .brand-tag  { font-size: 0.7rem; }
    .footer-message { font-size: 0.9rem; }
    .social-icon { font-size: 1.2rem; }
}


/* Contact Section Cards */
.contact-card {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Vertical Divider */
.vertical-divider {
    width: 2px;
    background: #ddd;
    height: 100%;
    align-self: stretch;
}

/* Form Labels & Input */
.form-label {
    font-weight: 600;
    color: #203260;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #D12A18;
    box-shadow: 0 0 0 0.2rem rgba(209, 42, 24, 0.25);
}

/* Button */
.btn-danger {
    background-color: #D12A18;
    border: none;
    font-weight: 600;
    border-radius: 8px;
}

.btn-danger:hover {
    background-color: #B71C12;
}

/* Remove horizontal dividers */
.divider { display: none; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-split {
        flex-direction: column;
    }
    .vertical-divider {
        display: none;
    }
    .contact-card {
        margin-bottom: 2rem;
    }
}

.show-all-review {
    color: #203260;
    text-decoration: none;
    border: 1px solid #203260;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#reviewCarousel .carousel-item img {
    height: 3rem !important;
    width: 3rem !important;
    object-fit: cover;
    border-radius: 50%;   /* makes it circular */
}
