/* ============================================================
   TUBATSE ROYAL GRILL - MASTER STYLESHEET
   ============================================================ */

:root {
    --gold: #d4af37;
    --gold-hover: #b8962e;
    --charcoal: #121212;
    --flame: #ff4d00;
    --white: #ffffff;
    --light-grey: #f8f9fa;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-grey);
    color: var(--charcoal);
    line-height: 1.6;
}

/* BOOTSTRAP NAV OVERRIDES */
.navbar {
    background: rgba(18, 18, 18, 0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    padding: 1rem 0;
}

.navbar-brand.logo {
    color: var(--gold) !important;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin-left: 20px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Fix for mobile menu background */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--charcoal);
        padding: 20px;
        margin-top: 15px;
        border-radius: 8px;
    }
    .nav-link { margin-left: 0; padding: 10px 0; }
}

/* HERO SECTION */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.btn {
    padding: 12px 35px;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none !important;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* SECTIONS */
.section {
    padding: 100px 8%;
    scroll-margin-top: 80px; /* Important for active scroll script */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.section-title div {
    height: 4px;
    width: 60px;
    background: var(--gold);
    margin: 15px auto;
}

/* MENU GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover { transform: translateY(-10px); }

.menu-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.menu-item-content { padding: 20px; }

.price {
    color: var(--flame);
    font-weight: 800;
    font-size: 1.3rem;
    margin-top: 10px;
}

/* CONTACT */
/* LIGHT THEME CONTACT SECTION */
.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Three Cards at Top */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.c-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.c-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.c-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.c-card p {
    color: #777;
    font-size: 0.95rem;
}

/* The Form Box */
.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    border-bottom: 4px solid var(--gold); /* Subtle "Royal" accent */
}

.custom-input {
    background: #fdfdfd !important;
    border: 1px solid #eee !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-size: 0.95rem;
}

.custom-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1) !important;
}

/* Buttons */
.gold-submit-btn {
    background: var(--charcoal);
    color: var(--gold);
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.gold-submit-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: scale(1.05);
}

.wa-link {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.or-text {
    font-size: 0.8rem;
    color: #bbb;
    letter-spacing: 2px;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .contact-form-box { padding: 30px 20px; }
}
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}



/* FOOTER */
.main-footer {
    background: var(--charcoal);
    color: #bbb;
    padding: 80px 8% 20px;
    margin-top: 80px;
    border-top: 3px solid var(--gold);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- REVIEWS SECTION --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border-top: 5px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-10px);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.reviewer span {
    font-size: 0.8rem;
    color: #999;
}