/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #8B0000; /* Deep Red for Restaurant Theme */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Navigation --- */
.navbar {
    background-color: #8B0000;
    color: #fff;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    color: #fff;
    font-size: 1.8rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f1c40f; /* Gold accent hover */
}

/* --- Hero Section --- */
.hero {
    /* Placeholder for a nice restaurant photo */
    background: url('https://mycanh.pages.dev/image_2026-06-01_193039774.png') no-repeat center center/cover;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Darkens image for readable text */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    padding: 0 20px;
}

.hero-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #d32f2f;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #b71c1c;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #8B0000;
    color: #8B0000;
}

.btn-outline:hover {
    background-color: #8B0000;
    color: #fff;
}

.yelp-btn {
    border-color: #D32323;
    color: #D32323;
}
.yelp-btn:hover {
    background-color: #D32323;
    color: #fff;
}

/* --- Info Section --- */
.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem 0;
}

.info-text, .hours-box {
    flex: 1;
    min-width: 300px;
}

.info-text h3, .hours-box h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.hours-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 4px solid #8B0000;
}

.hours-box ul {
    list-style: none;
}

.hours-box li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* --- Location Section --- */
.location-section {
    background-color: #f4f4f4;
    text-align: center;
    padding: 4rem 0;
}

.location-section h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.action-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #1a1a1a;
    color: #fff;
}
