/*
Theme Name: Shimla Peppers
Theme URI: https://www.shimlapepperswalsall.co.uk
Author: Shimla Peppers Team
Author URI: https://www.shimlapepperswalsall.co.uk
Description: A professional WordPress theme for Shimla Peppers restaurant with online booking functionality
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shimla-peppers
*/

/* ===========================
   CSS RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #8B0000;
    --deep-red: #8B0000;
    --accent-red: #A52A2A;
    --warm-gold: #D4AF37;
    --light-gold: #F5DEB3;
    --dark-brown: #1a1a1a;
    --darker-brown: #0d0d0d;
    --light-cream: #2a2a2a;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --text-dark: #FFFFFF;
    --text-gray: #C0C0C0;
    --text-muted: #999999;
    --bg-dark: #000000;
    --bg-card: #1a1a1a;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
    --gold-glow: rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    overflow-y: auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    -webkit-overflow-scrolling: touch;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

h1, h2, h3, h4, h5, h6,
.site-title,
.hero-title,
.section-title,
.entry-title,
.menu-section-title,
.menu-subsection-title,
.footer-section h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--warm-gold);
    letter-spacing: 0.5px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ===========================
   HEADER STYLES
   =========================== */
.site-header {
    background: linear-gradient(135deg, var(--deep-red) 0%, #000000 100%);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow);
    border-bottom: 2px solid var(--warm-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 8px;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--warm-gold);
}

.header-navigation {
    display: flex !important;
    align-items: center;
    gap: 30px;
}

.primary-menu {
    display: flex !important;
    list-style: none;
    gap: 25px;
}

.primary-menu a {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.primary-menu a:hover {
    background: var(--warm-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.menu-button, .booking-button {
    background: var(--warm-gold);
    color: var(--bg-dark);
    border: 2px solid var(--warm-gold);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.menu-button:hover, .booking-button:hover {
    background: transparent;
    color: var(--warm-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.mobile-menu-toggle {
    display: none;
    background: var(--warm-gold);
    color: var(--bg-dark);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    border-bottom: 3px solid var(--warm-gold);
    min-height: auto;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 L1200,0 L1200,120 Q600,80 0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom center no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
    color: var(--warm-gold);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
    color: var(--off-white);
    font-weight: 300;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: var(--warm-gold);
    color: var(--bg-dark);
    padding: 16px 45px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 25px var(--gold-glow);
    animation: fadeInUp 1s ease 0.6s both;
    border: 2px solid var(--warm-gold);
    transition: all 0.4s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--gold-glow);
    background: transparent;
    color: var(--warm-gold);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--warm-gold);
    border: 2px solid var(--warm-gold);
    backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background: var(--warm-gold);
    color: var(--bg-dark);
}

/* ===========================
   THREE PHOTO SECTION
   =========================== */
.three-photo-section {
    padding: 60px 20px;
    background: var(--bg-dark);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    max-width: 100%;
    width: 100%;
    height: 300px;
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.photo-item img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px 15px;
    color: var(--white);
}

.photo-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* ===========================
   ABOUT US SECTION
   =========================== */
.about-section {
    padding: 80px 20px;
    background: var(--darker-brown);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--warm-gold);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-gold), var(--light-gold));
    border-radius: 2px;
    box-shadow: 0 2px 10px var(--gold-glow);
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: justify;
    font-weight: 300;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text h3 {
    color: var(--warm-gold);
    margin-bottom: 20px;
}

/* ===========================
   OPENING TIMES
   =========================== */
.opening-times-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--deep-red) 0%, #000000 100%);
    color: var(--white);
    border-top: 2px solid var(--warm-gold);
    border-bottom: 2px solid var(--warm-gold);
}

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

.opening-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.time-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.time-day {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.time-hours {
    font-size: 16px;
    opacity: 0.9;
}

/* ===========================
   BOOKING MODAL
   =========================== */
.booking-modal {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--darker-brown);
    z-index: 2000;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal.active {
    bottom: 0;
}

.booking-modal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--warm-gold);
    color: var(--bg-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--deep-red);
    color: var(--warm-gold);
    transform: rotate(90deg);
}

.booking-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.submit-booking {
    background: var(--warm-gold);
    color: var(--bg-dark);
    border: 2px solid var(--warm-gold);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-glow);
    background: transparent;
    color: var(--warm-gold);
}

.booking-notice {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--warm-gold);
    margin-top: 20px;
    color: var(--text-gray);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--warm-gold);
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 15px;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    opacity: 1;
    padding-left: 10px;
    color: var(--warm-gold);
}

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

.social-link {
    background: var(--warm-gold);
    color: var(--bg-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--warm-gold);
}

.social-link:hover {
    background: transparent;
    color: var(--warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===========================
   PAGE & SINGLE POST STYLES
   =========================== */
.content-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-content, .single-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.entry-header {
    margin-bottom: 30px;
    text-align: center;
}

.entry-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--warm-gold);
    margin-bottom: 20px;
}

.featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.entry-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    color: var(--text-gray);
    font-size: 14px;
}

.post-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-badge {
    background: var(--warm-gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Single Post Layout */
.single-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.sidebar {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 180px;
}

.sidebar h3 {
    font-size: 22px;
    color: var(--warm-gold);
    margin-bottom: 20px;
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    background: var(--darker-brown);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.recent-post-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--shadow-hover);
}

.recent-post-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.recent-post-date {
    font-size: 12px;
    color: var(--text-gray);
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.nav-link {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.nav-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--warm-gold);
}

.related-posts {
    margin-top: 60px;
}

.related-posts h3 {
    font-size: 32px;
    color: var(--warm-gold);
    text-align: center;
    margin-bottom: 30px;
}

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

.related-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

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

.related-content {
    padding: 20px;
}

.related-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.related-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.related-date {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
    .single-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        overflow-y: auto;
        position: relative;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    html {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    /* Header Mobile Optimization */
    .site-header {
        padding: 10px 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .header-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: -1;
        padding: 20px;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-100%);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, z-index 0s 0.3s;
        display: flex !important;
    }
    
    .header-navigation.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        z-index: 999;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, z-index 0s;
    }
    
    .primary-menu {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .primary-menu li {
        width: 100%;
    }
    
    .primary-menu a {
        font-size: 20px;
        padding: 15px 30px;
        width: 100%;
        display: block;
        background: var(--bg-card);
        border-radius: 10px;
    }
    
    .primary-menu a:hover {
        background: var(--warm-gold);
        color: var(--bg-dark);
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1000;
    }
    
    .booking-button {
        margin-top: 20px;
        padding: 15px 40px;
        font-size: 18px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding: 40px 15px;
        min-height: auto;
        overflow: hidden !important;
        background-attachment: scroll !important;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 10px;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-cta {
        padding: 14px 25px;
        font-size: 15px;
        margin: 8px;
        display: inline-block;
        width: auto;
        max-width: calc(100% - 20px);
    }
    
    /* Photo Grid Mobile */
    .three-photo-section {
        padding: 30px 15px;
        overflow-x: hidden;
        width: 100%;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .photo-item {
        height: 250px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .photo-item img {
        height: 250px;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover;
    }
    
    .photo-overlay {
        padding: 15px 12px;
    }
    
    .photo-title {
        font-size: 18px;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 28px;
        padding-bottom: 15px;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 50px 15px;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .about-text {
        font-size: 15px;
        text-align: left;
    }
    
    .about-text ul {
        grid-template-columns: 1fr !important;
    }
    
    .highlights-list li {
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    .highlights-list i {
        font-size: 16px !important;
    }
    
    /* Opening Times Mobile */
    .opening-times-section {
        padding: 40px 15px;
    }
    
    .opening-times-section div[style*="flex-wrap"] a {
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
    
    .opening-times-grid {
        gap: 15px;
    }
    
    .time-item {
        padding: 15px;
    }
    
    /* Forms Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-booking {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
    
    /* Booking Modal Mobile */
    .booking-modal {
        max-height: 95vh;
    }
    
    .booking-modal-content {
        padding: 30px 15px;
    }
    
    .close-modal {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section {
        padding: 0 15px;
    }
    
    /* Navigation Mobile */
    .post-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Related Posts Mobile */
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Branding Mobile */
    .site-branding {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .site-title {
        font-size: 16px;
    }
    
    .site-logo {
        width: 50px;
        height: 50px;
        padding: 5px;
    }
    
    .site-header {
        padding: 8px 0;
    }
    
    /* Location Map Mobile */
    .location-map-section {
        padding: 50px 15px;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .location-map-section .container > div {
        grid-template-columns: 1fr !important;
        gap: 25px;
        width: 100%;
    }
    
    .location-map-section iframe {
        min-height: 300px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .hero-cta {
        width: 100% !important;
        max-width: 100% !important;
        margin: 8px 0 !important;
    }
    
    /* Blog Section Mobile */
    .posts-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Prevent all sections from overflowing */
    section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure all direct children don't overflow */
    .photo-grid,
    .about-content,
    .opening-times-content,
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Content Area Mobile */
    .content-area {
        margin: 20px auto;
    }
    
    .page-content, .single-content {
        padding: 25px 20px;
    }
    
    /* Entry Title Mobile */
    .entry-title {
        font-size: 28px;
    }
    
    /* Buttons Mobile - Touch Friendly */
    button, .button, a.button, .booking-button, .hero-cta {
        min-height: 44px; /* iOS recommended touch target */
        touch-action: manipulation;
    }
    
    /* Sidebar Mobile */
    .sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .opening-times-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   BLOG POST STYLES
   =========================== */
.posts-grid {
    animation: fadeInUp 0.6s ease;
}

.post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.post-card .entry-title a:hover {
    color: var(--warm-gold);
}

.post-card .read-more:hover {
    background: var(--warm-gold);
    color: var(--bg-dark);
}

.category-badge:hover {
    background: var(--deep-red);
    color: var(--warm-gold);
}

/* Pagination Styles */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-list li a,
.pagination-list li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--bg-card);
    color: var(--text-dark);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-list li a:hover {
    background: var(--warm-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.pagination-list li span.current {
    background: var(--warm-gold);
    color: var(--bg-dark);
}

/* Comment Styles */
.comments-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
}

.comment-list {
    list-style: none;
}

.comment {
    background: var(--darker-brown);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.comment-author {
    font-weight: 700;
    color: var(--warm-gold);
}

.comment-content {
    margin-top: 10px;
    color: var(--text-dark);
}

.comment-reply-link {
    color: var(--warm-gold);
    font-weight: 600;
    text-decoration: none;
}

.comment-reply-link:hover {
    color: var(--light-gold);
}

/* Search Form Styles */
.search-form input[type="search"] {
    transition: all 0.3s ease;
}

.search-form input[type="search"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.search-submit:hover {
    background: var(--warm-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Category List Styles */
.category-list li a:hover {
    transform: translateX(5px);
    background: var(--bg-card);
}

/* Tags Styles */
.tags-wrapper a {
    color: var(--warm-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tags-wrapper a:hover {
    color: var(--light-gold);
}

/* Page Header Styles */
.page-header {
    animation: fadeInDown 0.6s ease;
}

/* ===========================
   MENU PAGE STYLES
   =========================== */
.menu-page .page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: var(--bg-card);
    border-radius: 15px;
}

.menu-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    position: sticky;
    top: 160px;
    z-index: 100;
    box-shadow: 0 5px 20px var(--shadow);
}

.menu-navigation a {
    padding: 10px 20px;
    background: var(--darker-brown);
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.menu-navigation a:hover {
    background: var(--warm-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.menu-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    scroll-margin-top: 200px;
}

.menu-section-title {
    font-size: 36px;
    color: var(--warm-gold);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.menu-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-gold), var(--light-gold));
    border-radius: 2px;
}

.menu-subsection-title {
    font-size: 26px;
    color: var(--warm-gold);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--warm-gold);
}

.section-note {
    text-align: center;
    color: var(--text-gray);
    font-style: italic;
    margin: 10px 0 20px;
}

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

.menu-item {
    background: var(--darker-brown);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-item:hover {
    border-color: var(--warm-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.menu-item-header h3 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
    flex: 1;
    line-height: 1.3;
}

.menu-item-header .price {
    font-size: 18px;
    color: var(--warm-gold);
    font-weight: 700;
    white-space: nowrap;
}

.menu-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

.badge {
    display: inline-block;
    background: var(--warm-gold);
    color: var(--bg-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 5px;
    vertical-align: middle;
}

.menu-notices {
    margin: 60px 0;
    display: grid;
    gap: 25px;
}

.notice-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--warm-gold);
    box-shadow: 0 5px 20px var(--shadow);
}

.notice-box h3 {
    color: var(--warm-gold);
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.menu-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--deep-red) 0%, #000000 100%);
    border-radius: 15px;
    margin: 60px 0;
    color: var(--white);
    border: 2px solid var(--warm-gold);
}

.menu-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.menu-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.menu-cta a {
    color: var(--white);
    text-decoration: underline;
}

/* Menu Page Responsive */
@media (max-width: 768px) {
    .menu-navigation {
        top: 140px;
        padding: 15px;
        gap: 10px;
    }
    
    .menu-navigation a {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-section {
        padding: 25px;
        margin: 40px 0;
    }
    
    .menu-section-title {
        font-size: 28px;
    }
    
    .menu-subsection-title {
        font-size: 22px;
    }
    
    .menu-item {
        padding: 20px;
    }
    
    .menu-cta {
        padding: 40px 20px;
    }
    
    .menu-cta h2 {
        font-size: 28px;
    }
    
    .notice-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-section-title {
        font-size: 24px;
    }
    
    .menu-subsection-title {
        font-size: 20px;
    }
}

/* Location & Map Section */
.location-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 30px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--darker-brown);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.info-box i {
    font-size: 28px;
    color: var(--warm-gold);
    min-width: 30px;
}

.info-box h3 {
    font-size: 20px;
    color: var(--warm-gold);
    margin-bottom: 8px;
}

.info-box p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

.info-box a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box a:hover {
    color: var(--warm-gold);
}

.map-container {
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.directions-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--warm-gold);
    color: var(--bg-dark);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--gold-glow);
    border: 2px solid var(--warm-gold);
}

.directions-button:hover {
    background: transparent;
    color: var(--warm-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-glow);
}

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

/* Location Section Responsive */
@media (max-width: 968px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 25px;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .info-box i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
        width: 100vw;
        overflow-x: hidden !important;
    }
    
    /* Extra Small Mobile Optimization */
    .hero-section {
        padding: 30px 12px !important;
        overflow: hidden !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .hero-title {
        font-size: 22px !important;
        margin-bottom: 12px;
        line-height: 1.3 !important;
        word-break: break-word;
    }
    
    .hero-subtitle {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        padding: 0 5px !important;
    }
    
    .hero-cta {
        padding: 12px 20px !important;
        font-size: 13px !important;
        margin: 6px !important;
        width: auto !important;
        max-width: calc(100% - 24px) !important;
    }
    
    .section-title {
        font-size: 24px !important;
    }
    
    .opening-times-grid {
        grid-template-columns: 1fr;
    }
    
    .site-logo {
        width: 45px !important;
        height: 45px !important;
        padding: 4px !important;
    }
    
    .site-title {
        font-size: 14px !important;
    }
    
    .site-header {
        padding: 6px 0 !important;
    }
    
    .header-content {
        padding: 0 10px !important;
    }
    
    .three-photo-section {
        padding: 20px 12px !important;
    }
    
    .photo-item {
        height: 220px !important;
    }
    
    .photo-item img {
        height: 220px !important;
    }
    
    .photo-overlay {
        padding: 12px 10px !important;
    }
    
    .photo-title {
        font-size: 16px !important;
    }
    
    /* Menu Navigation Mobile */
    .menu-navigation {
        gap: 8px;
        padding: 15px 10px;
        top: 120px;
    }
    
    .menu-navigation a {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    /* Forms Extra Small */
    .booking-modal-content {
        padding: 25px 12px !important;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .booking-notice {
        padding: 12px;
        font-size: 13px;
    }
    
    /* Footer Extra Small */
    .footer-section h3 {
        font-size: 18px !important;
    }
    
    .footer-content {
        gap: 25px !important;
    }
    
    /* Touch Targets - Larger for small screens */
    button, .button, a.button {
        min-height: 48px;
        padding: 14px 20px;
    }
    
    /* Spacing Adjustments */
    .about-section, .opening-times-section {
        padding: 40px 12px !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 12px !important;
        max-width: 100% !important;
    }
    
    .three-photo-section {
        padding: 40px 12px !important;
    }
    
    .photo-grid {
        gap: 15px !important;
    }
    
    /* Menu Items Mobile */
    .menu-item {
        padding: 18px !important;
    }
    
    .menu-item-header h3 {
        font-size: 17px !important;
    }
    
    .menu-item-header .price {
        font-size: 16px !important;
    }
    
    /* Info Boxes Mobile */
    .info-box {
        padding: 18px !important;
        gap: 15px;
    }
    
    .info-box i {
        font-size: 24px !important;
    }
    
    .info-box h3 {
        font-size: 17px !important;
    }
    
    .info-box p {
        font-size: 13px !important;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .booking-modal {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .header-navigation {
        padding: 40px 20px;
        overflow-y: auto;
    }
    
    .primary-menu a {
        padding: 10px 25px;
        font-size: 18px;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets */
    a, button, input[type="submit"], .booking-button {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Remove hover effects on touch devices */
    .photo-item:hover,
    .menu-item:hover,
    .info-box:hover {
        transform: none;
    }
    
    /* Tap highlight color */
    * {
        -webkit-tap-highlight-color: var(--gold-glow);
    }
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari bottom bar */
    .booking-modal {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }
}