/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Ranch Theme */
:root {
    --ranch-brown: hsl(25, 62%, 35%);
    --dark-brown: hsl(20, 50%, 12%);
    --chocolate: hsl(25, 75%, 47%);
    --sandy-brown: hsl(27, 87%, 67%);
    --peru: hsl(30, 59%, 53%);
    --burlywood: hsl(34, 57%, 70%);
    --cream: hsl(43, 33%, 96%);
    
    --background: hsl(43, 33%, 96%);
    --foreground: hsl(20, 14%, 4%);
    --card: hsl(0, 0%, 100%);
    --border: hsl(214, 32%, 91%);
    --muted: hsl(210, 25%, 92%);
    --muted-foreground: hsl(210, 3%, 46%);
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --radius: 0.75rem;
}

/* Base Typography */
body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--ranch-brown);
    color: white;
}

.btn-primary:hover {
    background-color: var(--chocolate);
    transform: scale(1.05);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--ranch-brown);
}

.btn-secondary {
    background-color: var(--sandy-brown);
    color: var(--dark-brown);
}

.btn-secondary:hover {
    background-color: var(--burlywood);
    transform: scale(1.05);
}

.btn-outline-secondary {
    background-color: transparent;
    border: 2px solid var(--sandy-brown);
    color: var(--sandy-brown);
}

.btn-outline-secondary:hover {
    background-color: var(--sandy-brown);
    color: var(--dark-brown);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.logo {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ranch-brown);
    margin: 0;
}

.nav-desktop {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2.5rem;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-brown);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ranch-brown);
}

.nav-mobile {
    display: block;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--dark-brown);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: var(--ranch-brown);
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    background-color: white;
    border-top: 1px solid var(--border);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-brown);
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--ranch-brown);
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }
    
    .nav-mobile {
        display: none;
    }
}

/* Main Content */
.main-content {
    padding-top: 4rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.60);
    /* background: linear-gradient(135deg, rgba(47, 27, 20, 0.8), rgba(139, 69, 19, 0.6)); */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 4rem;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 64rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.chevron-down {
    width: 2rem;
    height: 2rem;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translateX(-50%) translate3d(0, -10px, 0);
    }
    70% {
        transform: translateX(-50%) translate3d(0, -5px, 0);
    }
    90% {
        transform: translateX(-50%) translate3d(0, -2px, 0);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--ranch-brown);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
}

.about-image {
    position: relative;
}

.restaurant-image {
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
}

.since-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--ranch-brown);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.since-year {
    font-size: 1.5rem;
    font-weight: 700;
}

.since-label {
    font-size: 0.875rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--ranch-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #6b7280;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

/* Menu Header */
.menu-header {
    padding: 4rem 0;
    background: #f9fafb;
    text-align: center;
}

.menu-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.menu-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

/* Menu Content */
.menu-content {
    padding: 8.2rem 0;
    background-color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.menu-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ranch-brown);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sandy-brown);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.item-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.item-price {
    color: var(--ranch-brown);
    font-weight: 700;
    margin-left: 1rem;
}

.menu-notes {
    text-align: center;
    background-color: #f9fafb;
    border-radius: var(--radius);
    margin-top: 3rem;
}

.notes-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ranch-brown);
    margin-bottom: 1rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-content: center;
}

.note-item {
    font-size: 1.2rem;
    color: #6b7280;
    grid-column: 2 / 3;
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hours Content */
.hours-content {
    padding: 4rem 0;
    background-color: white;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hours-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 2rem;
    height: 2rem;
    color: var(--ranch-brown);
    margin-right: 0.75rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ranch-brown);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
}

.day {
    font-weight: 500;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    text-align: left;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.event-description {
    color: #6b7280;
}

.reservation-card {
    background-color: var(--ranch-brown);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 3rem;
}

.reservation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.reservation-icon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
}

.reservation-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reservation-note {
    color: var(--sandy-brown);
}

.additional-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ranch-brown);
}

.info-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.info-features {
    list-style: none;
    padding: 0;
}

.info-features li {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.event-features p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Gallery */
.gallery-content {
    padding: 4rem 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.zoom-icon {
    width: 2rem;
    height: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .zoom-icon {
    opacity: 1;
}

.gallery-cta {
    padding: 4rem 0;
    background-color: var(--ranch-brown);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--sandy-brown);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 50;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 1rem;
}

.lightbox-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.25rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 2rem;
    height: 2rem;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
}

/* Contact */
.contact-content {
    padding: 4rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ranch-brown);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    color: var(--ranch-brown);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.contact-detail {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail-sub {
    color: #6b7280;
}

.map-placeholder {
    background-color: #e5e7eb;
    border-radius: var(--radius);
    height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-icon {
    width: 4rem;
    height: 4rem;
    color: #9ca3af;
    margin: 0 auto 1rem;
}

.map-title {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ranch-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.form-submit {
    background-color: var(--ranch-brown);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover:not(:disabled) {
    background-color: var(--chocolate);
    transform: scale(1.05);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-loading {
    display: none;
}

.form-submit:disabled .submit-text {
    display: none;
}

.form-submit:disabled .submit-loading {
    display: inline;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Toast */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    background-color: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    max-width: 20rem;
}

.toast.success {
    border-color: #10b981;
    background-color: #ecfdf5;
}

.toast.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

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

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6b7280;
    margin-left: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-brown);
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--sandy-brown);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
}

.social-link {
    color: var(--sandy-brown);
    transition: color 0.2s ease;
}

.social-link:hover {
    color: white;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style-type: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--sandy-brown);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.contact-info {
    color: var(--sandy-brown);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.hours-info {
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid var(--ranch-brown);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--sandy-brown);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive text sizes */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .menu-title {
        font-size: 3rem;
    }
}

.menu-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.menu-btn {
  display: inline-block;
  background: var(--ranch-brown);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
  width: 300px;
  text-align: center;
}

.menu-btn2 {
  display: inline-block;
  background: var(--ranch-brown);
  color: #fff;
  text-decoration: none;
  padding: .5rem .5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
  width: 150px;
  text-align: center;
}

.menu-btn:hover {
  background: var(--chocolate);
}
/* Mobile optimization */
@media (max-width: 768px) {
  .menu-links {
    flex-direction: column;
    align-items: center;
  }
}

.icon {
    color: var(--sandy-brown);
}