/* Global Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37;
    --primary-hover: #e8c45f;
    --dark: #1a1614;
    --darker: #0f0d0c;
    --card-bg: #2a2521;
    --light: #fff;
    --gray: #8a8a8a;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #c9a961;
    --header-bg: #8b4513;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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


/* Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-desktop {
    display: flex;
    gap: 40px;
}

.nav-desktop a {
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active-link {
    color: var(--primary-hover);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: rgba(26, 22, 20, 0.98);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Hero Section */

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

.hero-img {
    position: absolute;
    inset: 0;
    background: url('front1.jpeg') center/cover no-repeat;
    transform: scale(1.03);
    transition: transform 0.3s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    width: 50%;
    margin: 0 auto;
    padding-top: 90px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 24px);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
    color: var(--primary);
}

.cta-btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeInUp 1.4s ease;
    display: inline-block;
    text-align: center;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.location-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1.6s ease;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.location-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.location-value {
    font-size: 15px;
    font-weight: 600;
}


/* About Section */

.about-section {
    padding: 120px 20px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}


/* Feature Image Section */

.feature-image {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.3s;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.feature-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    animation: fadeInUp 1s ease;
    padding: 0 20px;
}

.feature-content h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: var(--primary);
}

.feature-content p {
    font-size: clamp(16px, 2.5vw, 22px);
    letter-spacing: 2px;
    color: var(--light);
}


/* Menu Section */

.menu-section {
    padding: 120px 20px;
    background: #f9f6f1;
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.cat {
    background: transparent;
    color: #888;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
}

.cat:hover,
.cat.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.menu-items {
    position: relative;
    min-height: 600px;
}

.menu-block {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-block.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-card {
    background: #fff;
    padding: 30px;
    border-left: 3px solid var(--primary);
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #fff9f0, #fff);
}

.menu-card-image {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-content {
    flex-grow: 1;
}

.menu-card.featured .menu-card-image {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.menu-card:hover {
    background: #faf8f5;
    transform: translateX(8px);
    box-shadow: -5px 0 20px rgba(212, 175, 55, 0.15);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.menu-card h3 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.menu-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.menu-price {
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}


/* Drinks Section */

.drinks-section {
    padding: 120px 20px;
    background: #fff;
}

.drinks-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.drink-cat {
    background: transparent;
    color: #888;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 30px;
}

.drink-cat:hover,
.drink-cat.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.drinks-items {
    position: relative;
    min-height: 400px;
}

.drink-block {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.drink-block.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.drink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.drink-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.drink-item:hover {
    padding-left: 10px;
    border-color: var(--primary);
}

.drink-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.drink-item-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.drink-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.drink-name {
    font-size: 15px;
    color: var(--dark);
}

.drink-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}


/* Gallery Section */

.gallery-section {
    padding: 120px 20px;
    background: #f9f6f1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay span {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* Testimonials Section */

.testimonials-section {
    padding: 120px 20px;
    background: #fff;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 300px;
}

.testimonial-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-content {
    text-align: center;
    padding: 40px;
}

.testimonial-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--primary);
    font-size: 14px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}


/* Contact Section */

.contact-section {
    padding: 120px 20px;
    background: #f9f6f1;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--dark);
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-cta {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}


/* Footer */

footer {
    background: var(--darker);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 13px;
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}


/* Scroll to Top */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}


/* Lightbox */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.3s;
}

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

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--light);
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: var(--primary);
}


/* Reservation Modal - REDUCED SIZE */

.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px 0;
}

.modal-content {
    background: var(--dark);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    border: 1px solid var(--primary);
    overflow-y: auto;
    max-height: 80vh;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--gray);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--light);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--light);
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--light);
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea::placeholder {
    color: var(--gray);
}


/* Reservation Confirmation */

.reservation-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.confirmation-content {
    background: var(--dark);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 1px solid var(--primary);
}

.confirmation-content h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.confirmation-content p {
    margin-bottom: 15px;
    color: var(--light);
    line-height: 1.6;
}


/* ULTIMATE BUTTON VISIBILITY FIX - ENHANCED */


/* Target the submit button with multiple selectors */

#submitBtn,
.submit-reservation-btn,
.modal-content form button[type="submit"],
.reservation-modal .cta-btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: #d4af37 !important;
    color: #1a1614 !important;
    padding: 15px 40px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.3s !important;
    width: auto !important;
    height: auto !important;
    position: relative !important;
    z-index: 9999 !important;
    margin: 20px auto 0 !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}


/* Disabled state */

#submitBtn:disabled,
.submit-reservation-btn:disabled,
.modal-content form button[type="submit"]:disabled,
.reservation-modal .cta-btn:disabled {
    background-color: #f39c12 !important;
    color: #1a1614 !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
}


/* Submitting state */

#submitBtn.submitting,
.submit-reservation-btn.submitting,
.modal-content form button[type="submit"].submitting,
.reservation-modal .cta-btn.submitting {
    background-color: #f39c12 !important;
    color: #1a1614 !important;
    cursor: not-allowed !important;
}


/* Hover states */

#submitBtn:hover,
.submit-reservation-btn:hover,
.modal-content form button[type="submit"]:hover,
.reservation-modal .cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4) !important;
}

#submitBtn:disabled:hover,
.submit-reservation-btn:disabled:hover,
.modal-content form button[type="submit"]:disabled:hover,
.reservation-modal .cta-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4) !important;
}


/* Force visibility with !important */

.modal-content button,
.reservation-modal button {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* Additional override for any conflicting styles */

form button {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* Debug border to see if button exists - REMOVE AFTER TESTING */

#submitBtn {
    border: 2px solid red !important;
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-content {
        width: 80%;
        padding-top: 60px;
    }
    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .location-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .section-title {
        font-size: 36px;
    }
    .menu-categories {
        gap: 8px;
    }
    .cat {
        padding: 8px 15px;
        font-size: 11px;
    }
    .drinks-categories {
        gap: 10px;
    }
    .drink-cat {
        padding: 8px 20px;
        font-size: 12px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .drink-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .feature-image {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .menu-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .menu-card-image {
        width: 80px;
        height: 80px;
    }
    .drink-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .drink-item-content {
        width: 100%;
    }
    .drink-price {
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .logo img {
        height: 40px;
    }
    .header-content {
        padding: 15px;
    }
    .hero-content {
        width: 90%;
    }
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    .cta-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
    .about-section,
    .menu-section,
    .drinks-section,
    .contact-section,
    .gallery-section,
    .testimonials-section {
        padding: 80px 20px;
    }
    .menu-card {
        padding: 25px;
    }
    .contact-cta {
        padding: 30px;
    }
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}


/* Mobile menu toggle animation */

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Mobile menu active state */

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}


/* Focus styles for accessibility */

.nav-desktop a:focus,
.cta-btn:focus,
.mobile-toggle:focus,
.cat:focus,
.drink-cat:focus,
.scroll-top:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}


/* Print Styles */

@media print {
    header,
    .scroll-top,
    .cta-btn {
        display: none;
    }
}