/* --- Variables & Reset --- */
:root {
    --primary-color: #8B0000;
    /* Dark Red */
    --primary-dark: #5D0000;
    --accent-color: #CCA43B;
    /* Gold */
    --text-color: #333;
    --text-light: #f4f4f4;
    --background-light: #fdfbf7;
    /* Warm white */
    --background-dark: #1a1a1a;

    --font-heading: 'Rye', serif;
    --font-body: 'Roboto', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

/* Font Face */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Utils --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    height: 4px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.divider-left {
    height: 4px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 10px 0 30px 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    /* Classic slight rounded */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--background-dark);
}

.btn-secondary:hover {
    background-color: #b89332;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-outline-light {
    border-color: var(--text-light);
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.d-block {
    display: block;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--background-dark);
    padding: 60px 40px;
    transition: 0.4s;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
}

/* --- Hero --- */
/* --- Hero --- */
.hero {
    height: 100vh;
    min-height: 600px;
    /* Desktop Background Image */
    background: url('./assets/Images/hero-desktop.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect for desktop */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: var(--text-light);
    padding-top: 80px;
    overflow: hidden;
}

/* Mobile Background Image Override */
@media (max-width: 768px) {
    .hero {
        /* Mobile Specific Background Image */
        background-image: url('./assets/Images/hero-mobile.jpg');
        background-attachment: scroll;
        /* Better performance on mobile */
        background-position: center;
    }
}

/* Visibility Utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}




.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    /* Slightly darker for better text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* Increased for side-by-side */
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    /* Reduced from 4rem for less massive look */
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    /* Align left */
}

/* --- About --- */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    text-align: justify;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* --- Menu Highlights --- */
.menu {
    background-color: var(--background-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.menu-card p {
    color: #666;
    font-size: 0.95rem;
}

.menu-cta {
    text-align: center;
}

/* --- Location --- */
.location {
    background-color: white;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-info h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.5rem;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    border-left: 3px solid var(--accent-color);
    padding-left: 10px;
}

.info-item ul li {
    margin-bottom: 8px;
    color: #555;
}

.location-btns {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.location-map {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #eee;
}

/* --- Reservation --- */
.reservation {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/Images/picanha.jpg') center/cover fixed;
    color: white;
}

.reservation-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--text-color);
}

.reservation .section-header {
    margin-bottom: 30px;
}

.reservation .section-header h2 {
    font-size: 2.2rem;
}

.reservation-form .form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

/* --- Testimonials --- */
.testimonials {
    background-color: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

/* --- Gallery --- */
.gallery {
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Events --- */
.events {
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.events-card h2 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.events-card p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ddd;
}

/* --- Footer --- */
footer {
    background-color: #111;
    color: #bbb;
    padding: 80px 0 20px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-weight: 500;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* --- Responsiveness --- */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content,
    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        margin-bottom: 20px;
    }

    .location-map {
        margin-top: 20px;
        height: 300px;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .sm-hidden {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .reservation-box {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Mobile Fixed CTA (Bottom) */
.mobile-fixed-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-fixed-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--background-dark);
        padding: 15px;
        display: flex;
        justify-content: space-around;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Hero Price Cards */
.hero-cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex: 1;
    /* Take up remaining space */
    flex-wrap: wrap;
    justify-content: flex-end;
    /* Align right on desktop */
}

.price-card {
    background: #fff;
    /* Solid background */
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    /* Stronger shadow */
    border: 3px solid transparent;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.highlight {
    background: linear-gradient(135deg, #ff4d4d, #cc0000);
    /* Brighter Red */
    color: white;
    border-color: #cc0000;
}

.price-card.highlight h3 {
    color: #fffae6;
    opacity: 0.9;
}

.price-card.standard {
    background: #ffffff;
    color: #333;
    border-color: var(--primary-color);
}

.price-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 700;
}

.price-card .price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.price-card .detail {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Reservation Price Box (Refined) */
.reservation-prices-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.res-price-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    border-left: 5px solid var(--primary-color);
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
}

.res-price-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.res-price-item span {
    font-size: 0.9rem;
    color: #555;
    display: block;
    margin-top: 4px;
}

/* --- Responsive Adjustments for Pricing --- */
/* --- Responsive Adjustments for Pricing --- */
@media (max-width: 991px) {

    /* Tablet Breakpoint */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
        max-width: 800px;
    }
}

@media (max-width: 768px) {

    /* Mobile Fold Optimization */
    .hero {
        padding-top: 100px;
        /* Reduced top padding */
        align-items: flex-start;
        /* Push content towards top */
    }

    .hero-content {
        gap: 20px;
        /* Bring text and prices closer */
        margin-top: 20px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        /* Fit single line 'Churrascaria Planalto' */
        margin-bottom: 10px;
    }

    .hero-text .subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-btns {
        display: none;
    }

    .hero-cards-container {
        flex-direction: row;
        /* Keep side-by-side */
        align-items: stretch;
        justify-content: center;
        width: 100%;
        gap: 10px;
        /* Smaller gap */
        margin: 0;
        /* Remove massive margins */
    }

    .price-card {
        width: 48%;
        /* Fit two in a row */
        max-width: none;
        min-width: 0;
        /* Reset min-width */
        padding: 15px 10px;
        /* Compact padding */
    }

    .price-card .price {
        font-size: 2rem;
        /* Smaller font for mobile */
    }

    .price-card h3 {
        font-size: 0.8rem;
    }

    .price-card .detail {
        font-size: 0.75rem;
    }

    .reservation-prices-box {
        flex-direction: column;
        align-items: stretch;
    }

    .res-price-item {
        width: 100%;
        text-align: center;
        border-left: 1px solid #ddd;
        border-top: 5px solid var(--primary-color);
    }
}