/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Restaurant Typography System */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.6;
}

/* Elegant headings using Cormorant Garamond serif */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 2.2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.6rem;
    font-weight: 500;
}

/* Restaurant accent text using Dancing Script */
.script-font,
.restaurant-accent,
.signature-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

/* Enhanced body text readability */
p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Navigation and UI elements */
.nav-link,
.btn,
button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Special restaurant branding */
.restaurant-name,
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Quote and testimonial styling */
.review-text {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
}

/* Menu price styling */
.price,
.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* --- Table of Contents Styling --- */
.toc-wrapper {
    margin: 2.5rem auto 2.5rem auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
    padding: 2rem 2rem 2rem 2rem;
    max-width: 800px;
    border: 1.5px solid #e5e5e5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clear: both;
}
.toc-wrapper h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.table-of-contents {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}
.table-of-contents li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    position: relative;
}
.table-of-contents li:before {
    content: '\2022';
    color: var(--primary-color);
    font-size: 1.1em;
    position: absolute;
    left: -1em;
    top: 0.1em;
}
.table-of-contents a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s, font-weight 0.2s;
    padding: 2px 0;
    border-bottom: 1px dashed #e5e5e5;
}
.table-of-contents a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}
:root {
    --primary-color: #d4202a;
    --secondary-color: #1a1a1a;
    --accent-color: #c9a961;
    --light-gray: #f8f9fa;
    --dark-gray: #666;
    --white: #ffffff;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

/* --- Blog detail cleanup: hide legacy side blocks --- */
.related-posts,
.popular-posts,
.blog-sidebar,
.article-sidebar {
    display: none !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 32, 42, 0.3);
}

.btn-secondary {
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--dark);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px var(--shadow);
}

/* Add a darker semi-transparent background when scrolling on blog pages */
.blog-article .header.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
}

.blog-article .header.scrolled .nav-link,
.blog-article .header.scrolled .logo h1, 
.blog-article .header.scrolled .logo span {
    color: white;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo {
    text-decoration: none;
    color: var(--secondary-color);
}

.nav-brand h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--primary-color);
}

.nav-brand span {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('../images/hero-sushi-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.about-intro p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0;
}

.about-image {
    position: relative;
}

.chef-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 32, 42, 0.3);
}

.badge-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.overlay-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.price {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-cta {
    text-align: center;
}

/* Catering Section */
.catering {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.catering-features h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.catering-packages h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.package-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.package-card {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.package-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.package-card p {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.package-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.catering-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.catering-image {
    position: relative;
}

.catering-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.catering-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(26, 26, 26, 0.9);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
}

.catering-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: var(--white);
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 15px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.star-rating {
    margin-bottom: 0.5rem;
}

.star-rating i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0 2px;
}

.stat-text {
    color: var(--dark-gray);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-right: 3px;
}

.review-text {
    font-size: 1rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    position: relative;
}

.contact-info .section-header {
    margin-bottom: 3rem;
}

.contact-info .section-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info .section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.info-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 0;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(212, 32, 40, 0.3);
}

.info-icon i {
    color: var(--white);
    font-size: 1.4rem;
}

.info-content h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-content p,
.info-content a {
    color: var(--dark-gray);
    text-decoration: none;
    margin-bottom: 0.3rem;
}

.info-content a:hover {
    color: var(--primary-color);
}

.info-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.day {
    font-weight: 500;
    color: var(--secondary-color);
}

.time {
    color: var(--dark-gray);
}

.contact-map {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.map-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 30%, transparent 60%);
    padding: 2rem;
    z-index: 2;
    pointer-events: none;
}

.map-overlay .map-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.map-overlay .map-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.map-actions {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(212, 32, 40, 0.3);
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 32, 40, 0.4);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Utility Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-fade-up.delay-2 {
    animation-delay: 0.4s;
}

.animate-fade-up.delay-3 {
    animation-delay: 0.6s;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Blog Styles */
.blog-main {
    padding-top: 80px;
}

/* --- Blog Hero/Title Area Improvements --- */
/* --- Blog Hero/Title Area Improvements --- */
.blog-hero, .article-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%), url('../images/restaurant-interior/chef-preparing-sushi.jpg') center/cover no-repeat;
    color: #fff;
    margin-bottom: 0;
    padding-top: 90px; /* Reduced header height spacing */
    padding-bottom: 40px; /* Reduced bottom padding */
    margin-top: 0; /* Removed extra margin */
}
.blog-hero .hero-content, .article-hero .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 1.5rem 2rem 1.5rem 2rem;
    background: rgba(0,0,0,0.35);
    border-radius: 22px;
    box-shadow: 0 4px 24px var(--shadow-dark);
    max-width: 850px;
    margin: 0 auto;
}
.blog-hero h1, .article-hero h1 {
    font-size: 2.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    line-height: 1.2;
}
.blog-hero .hero-subtitle, .article-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #f8f8f8;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
/* Table of Contents */
.toc, .table-of-contents {
    list-style: none;
    padding: 25px 30px;
    margin: 25px auto 35px;
    max-width: 90%;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #e73b3b;
}
.toc li, .table-of-contents li { 
    margin: 10px 0; 
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}
.toc li:before, .table-of-contents li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e73b3b;
}
.toc a, .table-of-contents a { 
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}
.toc a:hover, .table-of-contents a:hover { 
    color: var(--primary-color);
    transform: translateX(2px);
}

.toc-wrapper {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    padding: 16px 20px;
    margin: 12px 0 24px;
}

/* Ensure TOC appears full-width within content column, not in sidebar */
.article-content .toc-wrapper, .blog-content .toc-wrapper { 
    width: 100%; 
    margin: 2rem 0;
}

/* TOC heading style */
.toc-title, h3.toc-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 0.8rem;
}

/* Improved spacing between hero and breadcrumb */
.blog-hero { 
    margin-bottom: 0; 
    padding: 140px 0 80px;
}
.blog-post-main {
    padding-top: 2.5rem;
    position: relative;
    background-color: #fff;
    z-index: 10;
}
.blog-post-main .breadcrumb {
    padding: 0 0 2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Hide legacy side blocks */
.related-articles, .popular-posts, .sidebar-widget h4:has(+ .popular-posts) { 
    display: none !important; 
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.blog-listing-container {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card.featured .blog-image {
    height: auto;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2,
.blog-content h3 {
    margin-bottom: 0.8rem;
}

.blog-content h2 a,
.blog-content h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover,
.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #000000 !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.blog-categories {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.blog-categories h3 {
    margin-bottom: 1rem;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-link {
    padding: 0.5rem 1rem;
    background: white;
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-link:hover,
.category-link.active {
    background: var(--primary-color);
    color: white;
}

.newsletter-signup {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
}

.newsletter-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 2rem auto 0;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

/* Blog Reservation Section */
.blog-reservation-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.blog-reservation-section .reservation-content h2 {
    color: var(--text-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-reservation-section .reservation-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reservation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.reservation-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.reservation-buttons .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.reservation-buttons .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 32, 42, 0.3);
}

.reservation-buttons .btn-secondary {
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--dark);
    border: 2px solid var(--secondary-color);
}

.reservation-buttons .btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Article Styles */
.blog-article {
    padding-top: 0;
}

.blog-article .main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../images/blog-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.blog-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.blog-meta span {
    color: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0.8rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: inline-block;
}

.breadcrumb-nav {
    background: rgba(0, 0, 0, 0.03);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb li {
    color: var(--dark-gray);
}

.breadcrumb li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--dark-gray);
}

.breadcrumb .current {
    color: var(--secondary-color);
    font-weight: 500;
}

.blog-container {
    padding: 60px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-content {
    background: white;
    max-width: 100%;
}

.article-intro {
    margin-bottom: 3rem;
}

.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.content-section h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.content-section h4 {
    color: var(--secondary-color);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.4rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.content-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-sidebar {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.toc {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.popular-post:hover {
    transform: translateX(5px);
}

.popular-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-post span {
    font-size: 0.95rem;
    line-height: 1.4;
}

.article-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('../images/article-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: white;
}

.article-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

.article-container {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-intro {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark-gray);
    line-height: 1.6;
}

.article-image {
    margin: 3rem 0;
    text-align: center;
}

.article-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-image figcaption {
    margin-top: 1rem;
    font-style: italic;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.article-content h2 {
    margin: 3rem 0 1.5rem 0;
    color: var(--secondary-color);
}

.article-content h3 {
    margin: 2rem 0 1rem 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-conclusion {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.article-cta {
    background: var(--secondary-color);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta .btn {
    margin: 0.5rem;
}

.related-articles {
    margin: 3rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-card {
    text-decoration: none;
    color: var(--secondary-color);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-3px);
}

.related-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-card h4 {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.article-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.toc {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.8rem;
}

.toc a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: var(--secondary-color);
    transition: opacity 0.3s ease;
}

.popular-post:hover {
    opacity: 0.8;
}

.popular-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-post span {
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-sidebar {
        padding-left: 0;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 60px;
    }
    
    .blog-hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .blog-hero .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 1.8rem;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
    }
    
    .toc, .table-of-contents {
        padding: 20px;
        max-width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Enhanced heading styles for blog posts */
.section-heading {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2.5rem 0 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-gray);
    letter-spacing: 0.5px;
}

.sub-heading {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.blog-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
}

.blog-content .lead {
    font-size: 1.2rem;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Improve spacing in blog posts */
.blog-post-main {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.blog-hero {
    padding-top: 140px;
    padding-bottom: 80px;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}
