/* --- Basic Reset & Dark Mode Colors --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a; /* Dark gray/black */
    color: #f5f5f5; /* Off-white text */
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Header & Nav --- */
header {
    background-color: #000; /* Pure black header */
    padding: 15px 0;
    border-bottom: 3px solid #ff6600; /* Orange accent */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.main-logo {
    height: 80px; /* Adjust based on logo size */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff6600; /* Orange hover */
}

/* Specific Style for the Book Us Nav CTA */
.cta-nav {
    background-color: #f5ba18; /* ryan's bbq */
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
}

.cta-nav:hover {
    background-color: #ff6600; /* Turns Orange on hover */
    color: #000;
}

/* --- Main Content Sections --- */
main {
    margin-top: 110px; /* Offset for fixed header */
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    color: #ff6600; /* Orange titles */
    margin-bottom: 20px;
    text-align: center;
}

/* --- Hero Section --- */
#home.hero {
    /* Generated smoky BBQ image is set here */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero_bbq.jpeg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.btn-main {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e4531e; /* Orange Main Button */
    color: #000;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-main:hover {
    background-color: #f5ba18; /* Yellow Hover */
    color: #fff;
}

/* --- About Us --- */
#about {
    background-color: #111; /* Slightly lighter dark */
}

#about p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    font-size: 1.1rem;
    text-align: center;
}

/* --- Recipes (Placeholder) --- */
#recipes .recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.recipe-card {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.recipe-card h3 {
    color: #ff6600;
    margin-bottom: 10px;
}

/* --- Booking Form --- */
#booking {
    background-color: #000;
}

.form-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #ff6600; /* Orange border */
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ff6600;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    background-color: #111;
    border: 1px solid #444;
    color: #f5f5f5;
    border-radius: 5px;
}

input:focus, textarea:focus {
    border-color: #cc0000; /* Red focus border */
    outline: none;
}

/* --- Footer --- */
footer {
    background-color: #000;
    color: #888;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid #333;
}

.footer-accent {
    height: 40px; /* Provided image 1 as small accent */
    margin-top: 20px;
    opacity: 0.6;
}