/* 
 * The Queen's Head - West Chiltington
 * Main Stylesheet
 */

/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #d4af37;
    --accent-color: #8b4513;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --off-white: #f5f5f5;
    --text-color: #333;
    --footer-color: #1a2530;
    --heading-font: 'IM Fell English', 'Playfair Display', serif;
    --body-font: 'Libre Baskerville', 'Georgia', serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 1.05rem;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c4zIgfAAAAG3RSTlNAQEAwEAvLKA8QDxwUGRodHR8kKDIsNCsyeOciQ8MCAAACvklEQVQYkX3V6bKrIAwFYNEQEBSsqGjf/0HPhhDtOt3pmfljWV+CEoEIpU9nIMJ4xCP4GSEznyAGRZHEr5RyRC+FaDopN/V4xiN8D3EgDJf1RYzsLgYkKVwfkQn/IZyugHCkZ3KI8BkJJwDv6XCwGr6X4VJ0Cj6FBmQZZiW+3OC6KRRqkUUOXq4r8bRdo0ZNub+tBOxc92QoOh7at3mPs+kZvGM0OJzZpLZ5s+lI4wEz+1bBpXgkTxmPEJJIXlaNTcFxjEIHubgW2ZszYiSARKrj5TBc7j2wDL/aCAMvssjCH0dXtzV47rAxQciLbAJWhJ79y9YQa4a3GEe0xNcAaxKwdaRrEkiiCxYR17Kbd2pScB4h5MMQA3HC3uFLGpfVa7k8CiXAg4zqJd0zCkV2CZfa5rlqi+dQxSilxLYVKwMrhr9hMzkZ5LHF6zgf4HLEgCyzXRoRqsAr/GJ0dUH0UWwEk4QaKGkZxzVaw/rByCEGsswOaVVA1UBm8B45GTjpw/ZVdGJGldKkJ6x93QXGUesPKgFmFRB0gBZUx4/LidANvRJN1TQ0PYJIk+ioXQNFDusfUJ+aOGoZUH3ABDn5dHxwzgY2WrJY/f3PME5GXJtEvCLA9mtH0cexEREm/t1cQxuSfSQ5lqZZgY/W0/5iFWczjEPPXl2m4GQFDoy8u2KR1TVotGjUWmEPWCNgCHpyKbDEcXNtqSi8lOkiM3Wo8x1H3FLKBNwPpzR5RKtxjsCwzv41n9/hWFiLVmIrXsSOL58MjvlxwCy4tCtldYZvmtXI0qG+p6UfmeAFX2tFhUCLq5TFtjXdVXxC0q2xzlqV3HztTqbL7ebYPKSoqh5WGEDKnlU0y2bVJ7Fe2vK0Fd9pCVYvdWk617Ytz9YrHqe3nHV0d7evj/cRgc35ctJ2T6j/pzvGofIIVgj//gPFU5+sokgIPgAAAABJRU5ErkJggg==');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 0.03em;
}

p {
    margin-bottom: 1.2rem;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--secondary-color);
    border-radius: 0;
    font-family: var(--heading-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

section {
    padding: 5rem 0;
    position: relative;
}

.decorative-divider {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: var(--secondary-color);
    width: 30%;
    max-width: 300px;
}

.decorative-divider::before {
    left: 0;
}

.decorative-divider::after {
    right: 0;
}

.decorative-divider span {
    display: inline-block;
    font-size: 1.8rem;
    color: var(--secondary-color);
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.about-section .decorative-divider span {
    background-color: var(--off-white);
}

.menu-section .decorative-divider span {
    background-color: var(--light-color);
}

.gallery-section .decorative-divider span {
    background-color: var(--off-white);
}

.contact-section .decorative-divider span {
    background-color: var(--light-color);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 5%;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.crown-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--primary-color);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.tagline {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-style: italic;
    margin: 0;
    font-family: var(--heading-font);
    text-align: center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-self: start;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    font-family: var(--heading-font);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.social-header {
    display: flex;
    gap: 1rem;
    justify-self: end;
}

.social-header a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.social-header a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: 1rem;
}

.mobile-menu-btn span {
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../media/Front.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--heading-font);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: var(--heading-font);
    letter-spacing: 0.03em;
}

.hero .btn {
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    background-color: var(--off-white);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-content p {
    margin-bottom: 1.3rem;
}

.hours {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Tabs Styling */
.tabs-container {
    width: 100%;
}

.tabs {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    opacity: 0.7;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.tab-btn:hover {
    opacity: 1;
}

.tab-btn.active {
    opacity: 1;
    color: var(--secondary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.hours ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours ul li:last-child {
    border-bottom: none;
}

.hours ul li span {
    font-weight: 600;
    min-width: 100px;
}

/* Menu Section */
.menu-section {
    background-color: var(--light-color);
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.menu-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.menu-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.menu-image {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

.menu-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.menu-image:hover::before {
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-feature:hover .menu-image {
    transform: scale(1.02);
}

.menu-description h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.menu-description p {
    margin-bottom: 1.3rem;
}

.menu-note {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
}

.menu-options {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
}

.menu-option {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.menu-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.menu-option:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-option:hover::before {
    left: 100%;
}

.menu-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.menu-option h4 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
    font-size: 1.1rem;
}

.menu-option p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Menu Modal */
.menu-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.menu-modal-content {
    position: relative;
    background-color: var(--light-color);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

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

.menu-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

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

.menu-modal-body {
    padding: 0;
    text-align: center;
}

.menu-modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--off-white);
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.gallery-item {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* Events Section */
.events-section {
    background-color: var(--light-color);
    position: relative;
}

.events-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.events-carousel-container {
    position: relative;
    padding: 0 60px;
    margin: 0 auto 2rem;
}

.events-carousel {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.events-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.event-card {
    /* Flex properties are set dynamically in JavaScript */
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.event-content {
    padding: 1.5rem;
}

.event-date {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--light-color);
    font-family: var(--heading-font);
}

.event-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.events-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    opacity: 1;
    background-color: var(--secondary-color);
}

@media (max-width: 992px) {
    .event-card {
        min-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .event-card {
        min-width: calc(100% - 20px);
        flex: 0 0 calc(100% - 20px);
    }
    
    .events-carousel-container {
        padding: 0 40px;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
}

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

.contact-info h2 {
    margin-bottom: 2rem;
    position: relative;
    font-size: 2.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.w3w {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.contact-form {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 4px;
    font-family: var(--body-font);
}

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

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

.contact-form .btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.contact-form .btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Map */
.map-container {
    width: 100%;
    height: 450px;
}

/* Footer */
footer {
    background-color: var(--footer-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--secondary-color);
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 1px dotted var(--secondary-color);
    padding-bottom: 2px;
}

.footer-bottom a:hover {
    color: var(--light-color);
    border-bottom-color: var(--light-color);
}

/* Responsive */
@media (max-width: 992px) {
    .about-section .container,
    .menu-feature,
    .contact-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 900px) {
    .menu-options {
        flex-wrap: wrap;
    }
    
    .menu-option {
        flex: 0 0 calc(33.333% - 1rem);
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .menu-option {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        grid-template-columns: auto 1fr auto;
    }
    
    .main-nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav.mobile-active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        padding: 2rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .logo {
        justify-self: center;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .social-header {
        gap: 0.5rem;
    }
    
    .social-header a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    /* Tabs responsive styling */
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .hours ul li {
        flex-direction: column;
        padding-bottom: 0.8rem;
    }
    
    .hours ul li span {
        margin-bottom: 0.3rem;
        font-weight: 700;
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}