/* --- GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* This is the new, modern font! */
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
}

/* --- HEADER & NAV --- */
header {
    background-color: #74421c; /* Convenience Store Brown */
    color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    
    font-size: 1.5rem;
}
.header-logo {
    max-height: 60px; /* This restricts the height so it fits nicely in the header */
    width: auto;      /* This ensures the image doesn't get stretched or squished */
    display: block;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FF0000; /* Sinclair Red */
}

/* --- HERO SECTION --- */
.hero {
    /* To add your business photo, replace the background color with a background-image property:
       background-image: url('your-store-photo.jpg'); */
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('../images/Storefront.jpg');
    background-size: cover;
    background-position: center 45%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    border-bottom: 4px solid #FF0000; /* Sinclair Red Accent */
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- CONTENT SECTIONS --- */
.content-section {
    padding: 4rem 5%;
    text-align: center;
    scroll-margin-top: 80px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #74421c; /* Convenience Store Brown */
}

.bg-light {
    background-color: #f4f4f4;
}

/* --- HOURS SECTION --- */
.hours-box {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 4px solid #008000; /* Sinclair Green Accent */
}

/* --- MENU GRID --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-bottom: 3px solid #008000; /* Sinclair Green Accent */
}

.menu-item h3 {
    margin-bottom: 10px;
    color: #008000; /* Sinclair Green */
}

/* --- ABOUT US --- */
.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

/* ---CAREERS BUTTON --- */
.apply-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 25px;
    background-color: #008000; /*Sinclair Green */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.apply-btn:hover {
    background-color: #74421c; /*Changes to Convenience Store Brown When Clicked */
}

/* --- FOOTER --- */
footer {
    background-color: #74421c; /* Convenience Store Brown */
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 1 rem;
    border-top: 4px solid #008000; /* Sinclair Green Accent */
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
}