/* =========================================
   HOME PAGE SPECIFIC STYLES
========================================= */

/* Hero Section Overrides */
.hero {
    background-color: transparent; 
    color: var(--text-light);
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8); 
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 35px auto;
    color: var(--text-light);
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.9);
}

.hero .btn-primary {
    background-color: var(--brand-red);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
    background-color: var(--brand-red-hover);
}

/* Menu Preview Header Wrapper */
.menu-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px 120px 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-header h1 {
    font-size: 3rem;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.menu-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview Section */
.about-preview {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/icon.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 77%; 
    opacity: 0.15;
    z-index: -1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--brand-red);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.about-text .btn-secondary {
    margin-top: 15px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Hours & Location Section */
.hours-location {
    padding: 80px 20px;
    background-color: var(--text-light);
}

.hl-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.hl-container > div {
    flex: 1;
    background-color: #f4f4f4;
    padding: 40px;
    border-radius: 12px;
    border-top: 5px solid var(--brand-red);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.hl-container h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-left: 3px solid var(--brand-orange);
    padding-left: 10px;
    text-transform: uppercase;
}

.hl-container p, 
.hl-container ul {
    font-size: 1.1rem;
    color: #555;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hl-container a {
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.hl-container a:hover,
.hl-container a:focus-visible {
    color: var(--brand-red-hover);
    text-decoration: underline;
    outline: 2px solid var(--text-dark);
    outline-offset: 2px;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: #f9f9f9;
    padding: 80px 20px;
    border-top: 1px solid #ddd;
}

.cta h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Home Responsive Overrides */
@media (max-width: 768px) {
    .about-content, 
    .hl-container {
        flex-direction: column;
        gap: 40px;
    }
    .hero h2 {
        font-size: 2.5rem;
    }
}
