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

:root {
    /* Olemex-Inspired Color Palette */
    --primary-red: #F0403C;
    --primary-green: #599E65;
    --dark-slate: #1e293b;
    --darker-slate: #151d2b;
    --medium-slate: #334155;
    --light-gray: #f9fafb;
    --white: #FFFFFF;
    --text-dark: #272727;
    --border-gray: #e2e8f0;

    /* Derived colors for variety */
    --hover-red: #d63531;
    --hover-green: #4a8554;
    --light-red: #ff5854;

    /* Shadows and Gradients */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Floating animation for images */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating Dots Background */
.floating-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.floating-dots .dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    animation: floatDiagonal linear infinite;
}

@keyframes floatDiagonal {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(300px, -1200px);
        opacity: 0;
    }
}

/* Ensure images and key content stay above floating dots */
.hero,
.gallery,
.gallery-item,
.timeline-section,
.timeline-image,
.special-image,
.location-section,
.location-image,
.logo {
    position: relative;
    z-index: 2;
}

/* Background floating shapes animation */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.floating-shapes .shape {
    position: absolute;
    opacity: 0.06;
    background: var(--primary-red);
}

.floating-shapes .shape.circle {
    border-radius: 50%;
}

.floating-shapes .shape.diamond {
    border-radius: 0;
}

@keyframes floatGently1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(60px, 10px) rotate(0deg);
    }
    75% {
        transform: translate(30px, 30px) rotate(-5deg);
    }
}

@keyframes floatGently2 {
    0%, 100% {
        transform: translate(0, 0) rotate(45deg);
    }
    25% {
        transform: translate(-25px, 20px) rotate(50deg);
    }
    50% {
        transform: translate(-50px, -15px) rotate(45deg);
    }
    75% {
        transform: translate(-25px, -30px) rotate(40deg);
    }
}

@keyframes floatGently3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, 25px) rotate(3deg);
    }
    66% {
        transform: translate(-20px, -20px) rotate(-3deg);
    }
}

@keyframes floatGently4 {
    0%, 100% {
        transform: translate(0, 0) rotate(45deg);
    }
    50% {
        transform: translate(-35px, 35px) rotate(50deg);
    }
}

.floating-shapes .shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 5%;
    top: 15%;
    animation: floatGently1 20s ease-in-out infinite;
}

.floating-shapes .shape:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 85%;
    top: 10%;
    animation: floatGently2 25s ease-in-out infinite;
}

.floating-shapes .shape:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 45%;
    top: 60%;
    animation: floatGently3 22s ease-in-out infinite;
}

.floating-shapes .shape:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 15%;
    top: 70%;
    animation: floatGently4 18s ease-in-out infinite;
}

.floating-shapes .shape:nth-child(5) {
    width: 70px;
    height: 70px;
    left: 75%;
    top: 45%;
    animation: floatGently1 24s ease-in-out infinite;
    animation-delay: -5s;
}

.floating-shapes .shape:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 25%;
    top: 35%;
    animation: floatGently2 28s ease-in-out infinite;
    animation-delay: -10s;
}

.floating-shapes .shape:nth-child(7) {
    width: 40px;
    height: 40px;
    left: 60%;
    top: 20%;
    animation: floatGently3 16s ease-in-out infinite;
    animation-delay: -3s;
}

.floating-shapes .shape:nth-child(8) {
    width: 120px;
    height: 120px;
    left: 90%;
    top: 75%;
    animation: floatGently4 30s ease-in-out infinite;
    animation-delay: -8s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', 'Impact', sans-serif;
    letter-spacing: 1px;
}

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

/* Navigation */
.navbar {
    background: var(--darker-slate);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text h1 {
    color: var(--white);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.logo-text .tagline {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 600px;
    background: linear-gradient(rgba(62, 39, 35, 0.5), rgba(62, 39, 35, 0.6), rgba(30, 41, 59, 1)),
                url('https://sandpointjalapenos.com/wp-content/uploads/2015/06/SliderDining-Room-3.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    color: var(--cream);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: var(--hover-red);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

/* Gallery Section */
.gallery {
    padding: 60px 0;
    background: var(--dark-slate);
}

.gallery .container {
    max-width: 100%;
    padding: 0 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    row-gap: 50px;
}

@media (min-width: 2000px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 20px;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.gallery-item:nth-child(1) {
    animation-delay: 0s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(3) {
    animation-delay: 1s;
}

.gallery-item:nth-child(4) {
    animation-delay: 1.5s;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Find Us Section */
.find-us {
    background: var(--dark-slate);
    padding: 80px 0;
    overflow: hidden;
}

.find-us-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: stretch;
}

.info-block {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-block h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    margin-top: 20px;
}

.info-block h3:first-child {
    margin-top: 0;
}

.info-block h3 i {
    color: var(--primary-red);
    margin-right: 10px;
}

.info-block p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
}

.find-us-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.find-us-map iframe {
    display: block;
}

.find-us-map {
    position: relative;
}

/* Directions button */
.directions-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.directions-btn:hover {
    background: var(--hover-red);
    transform: translateY(-2px);
}

.directions-btn i {
    margin-right: 8px;
}

/* Map choice modal */
.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.map-modal.active {
    display: flex;
}

.map-modal-content {
    background: var(--dark-slate);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 300px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.map-modal-content h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.map-choice {
    display: block;
    padding: 15px 20px;
    margin: 10px 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.map-choice:hover {
    transform: scale(1.02);
}

.map-choice i {
    margin-right: 10px;
}

.map-choice.apple-maps {
    background: #000;
    color: #fff;
}

.map-choice.google-maps {
    background: #4285f4;
    color: #fff;
}

.map-choice.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: none;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 768px) {
    .find-us-content {
        grid-template-columns: 1fr;
    }

    .find-us-map iframe {
        height: 300px;
    }

    /* Disable floating animation on mobile */
    .gallery-item {
        animation: none;
    }

    .feature-item,
    .special-card,
    .contact-info {
        transform: none !important;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.divider {
    width: 100px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* About Section */
.about {
    background: var(--dark-slate);
    overflow: hidden;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
}

.about .section-header h2 {
    color: rgba(255, 255, 255, 0.95);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 968px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
}

.feature-item:hover {
    box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-item .icon {
    font-size: 5.5rem;
    display: block;
    margin-bottom: 25px;
    color: white;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.feature-item:hover .icon {
    font-size: 6rem;
    filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.5));
}

.feature-item h3 {
    color: var(--white) !important;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Menu Section */
.menu {
    background: var(--dark-slate);
    overflow: hidden;
}

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

.menu-category-btn {
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-red);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.menu-category-btn:hover,
.menu-category-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    transform: scale(1.05);
}

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

.menu-items.hidden {
    display: none;
}

.menu-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
}

.menu-item:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-red);
    box-shadow: var(--box-shadow-lg);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item h3 {
    color: var(--white);
    font-size: 1.3rem;
}

.menu-item .price {
    color: var(--primary-red);
    font-size: 1.2rem;
    font-weight: bold;
}

.menu-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Specials Section */
.specials {
    background: var(--dark-slate);
    color: white;
    overflow: hidden;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.special-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.1s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
}

.special-card:hover {
    box-shadow: 0 25px 70px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.special-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.special-price {
    color: var(--primary-red);
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0;
}

.special-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--dark-slate);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.banquet-content {
    display: flex;
    justify-content: center;
}

.banquet-tile {
    max-width: 500px;
    text-align: center;
}

.banquet-phone {
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--white) !important;
}

.banquet-phone i {
    color: var(--primary-red);
    margin-right: 8px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 5px solid var(--primary-green);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.contact-info:hover {
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-info > p strong {
    color: var(--primary-red);
}

.hours-list,
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.hours-item span:first-child {
    font-weight: bold;
    color: var(--white);
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.contact-details strong {
    color: var(--primary-red);
}

/* Footer */
.footer {
    background-color: var(--darker-slate);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--darker-slate);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .menu-categories {
        gap: 10px;
    }

    .menu-category-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .features,
    .specials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 50px 0;
    }
}

/* Menu Page Specific Styles */
.menu-page {
    padding: 60px 0;
}

/* Override for standalone menu page - matches dark theme */
.menu.menu-page {
    background: var(--dark-slate);
}

.menu.menu-page .section-header h2 {
    color: var(--white);
}

.menu.menu-page .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.menu-category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.menu.menu-page .category-title {
    color: var(--white);
}

.menu.menu-page .category-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.menu-items-grid .menu-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

@media (max-width: 768px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

/* About Page Styles */
.about-header {
    background: var(--dark-slate);
    padding: 80px 0 40px 0;
    text-align: center;
    overflow: hidden;
}

.about-header h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin: 40px 0 20px 0;
    text-align: center;
}

.banquets-section {
    background: var(--dark-slate);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.banquets-section .section-header h2 {
    color: var(--white);
}

.banquets-content {
    max-width: 800px;
    margin: 0 auto;
}

.banquets-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.banquets-content .btn {
    margin-top: 20px;
}

/* Specials Page Styles */
.specials-header-page {
    background: var(--dark-slate);
    padding: 80px 0 40px 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.specials-header-page h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.specials-header-page p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
}

.specials-content {
    padding: 80px 0;
    background: var(--dark-slate);
    overflow: hidden;
}

.specials-content .section-header h2 {
    color: var(--white);
}

.specials-content .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.special-day {
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.special-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.special-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cta-section {
    background: var(--dark-slate);
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Page Styles */
.contact-header-page {
    background: var(--dark-slate);
    padding: 80px 0 40px 0;
    text-align: center;
    overflow: hidden;
}

.contact-header-page h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-header-page p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.location-section {
    background: var(--dark-slate);
    padding: 80px 0;
    overflow: hidden;
}

.location-section .section-header h2 {
    color: var(--white);
}

.location-section .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.location-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.location-details h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.location-details p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.directions h4 {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
}

.directions ul {
    list-style: none;
    padding: 0;
}

.directions li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.directions li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.order-options {
    background: var(--dark-slate);
    padding: 80px 0;
    overflow: hidden;
}

.order-options .section-header h2 {
    color: var(--white);
}

.order-options .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

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

.order-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 5px solid var(--primary-red);
    text-align: center;
    transition: transform 0.3s ease;
}

.order-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.5);
}

.order-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.order-card p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.order-link {
    color: var(--primary-red);
    font-weight: bold;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .about-header h2,
    .specials-header-page h2,
    .contact-header-page h2 {
        font-size: 2rem;
    }

    .order-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline Section */
.timeline-section {
    background: var(--dark-slate);
    padding: 80px 0;
    overflow: hidden;
}

.timeline-section .section-header h2,
.timeline-section .section-header p {
    color: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-marker {
    position: absolute;
    right: -12px;
    top: 20px;
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(240, 64, 60, 0.5);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -12px;
    right: auto;
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 20px;
    border: 8px solid transparent;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    right: auto;
    border-left-color: transparent;
    border-right-color: var(--white);
}

.timeline-year {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.timeline-content h3 {
    color: var(--primary-red);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

.timeline-image {
    margin: 15px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.timeline-image.image-focus-top img {
    object-position: top;
}

.timeline-image.image-vertical img {
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 60px;
    }

    .timeline-marker {
        left: 8px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-marker {
        left: 8px;
    }

    .timeline-content::before {
        left: -15px;
        right: auto;
        border-left-color: transparent;
        border-right-color: var(--white);
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        border-right-color: var(--white);
    }
}
