/* ========================================
   MAGMAG RESTAURANT - ORGANIZED CSS STRUCTURE
   ========================================
   
   STRUCTURE:
   1. COMMON/GLOBAL STYLES
   2. PAGE-SPECIFIC STYLES  
   3. RESPONSIVE DESIGN
   
   ======================================== */

/* ========================================
   1. COMMON/GLOBAL STYLES
   ======================================== */

/* CSS Variables */
/* The code below defines custom CSS properties for consistent styling. I learned this feature from: https://www.w3schools.com/css/css3_variables.asp */
:root {
    --primary-color: #fdebbc;
    --secondary-color: #ffda7b;
    --accent-color: #d4af37;
    --background-dark: #0A0A0A;
    --background-medium: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #999;
    --border-color: rgba(253, 235, 188, 0.1);
    --border-hover: rgba(253, 235, 188, 0.3);
    --font-primary: 'Forum', serif;
    --font-secondary: 'Lato', sans-serif;
}

/* CSS Reset */
/* The code below removes default browser styling for consistent appearance. I learned this technique from: https://www.w3schools.com/css/css_responsive.asp */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
    line-height: 1.3;
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

h6 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}




/* Body Styles */
/* The code below sets the base styling for the entire webpage. I learned this technique from: https://www.w3schools.com/css/css_background.asp */
body {
    font-family: var(--font-secondary);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 10px;
    min-height: calc(100vh - 20px);
}

/* Custom Scrollbar */
/* The code below customizes the appearance of the browser scrollbar. I learned this feature from: https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-medium);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Container */
/* The code below creates a responsive container for page content. I learned this layout technique from: https://www.w3schools.com/css/css_max-width.asp */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* The code below creates a sticky navigation header with backdrop blur effects. I learned this technique from: https://www.w3schools.com/css/css_positioning.asp */
.header {
    background-color: transparent;
    padding: 0;
    position: sticky;
    top: 80px;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
}

/* Header without banner */
.no-promo-banner .header {
    top: 20px;
}


.header .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.nav {
    background-color: rgba(10, 10, 10, 0.69);
    border: 1px solid rgba(255, 255, 255, 0.41);
    border-radius: 8px;
    padding: 8px 24px;
    position: absolute;
    left: 30px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
/* The code below creates a flexible logo layout using flexbox. I learned this layout method from: https://www.w3schools.com/css/css3_flexbox.asp */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Logo Icon */
.logo-icon {
    width: 28px;
    height: 28px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Logo Text */
.logo-text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Navigation */
/* The code below creates a horizontal navigation menu using flexbox. I learned this navigation technique from: https://www.w3schools.com/css/css_navbar.asp */
.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Navigation Links - Typography and Hover Effects */
/* I learned about/* text-transform: uppercase converts all text to uppercase letters for a consistent look */
/* text-decoration: none removes the default underline from links */
/* transition: color 0.3s ease creates smooth color changes when hovering over links */
.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Navigation Hover and Active States */
/* :hover applies styles when the user hovers over the element */
/* .active class can be applied via JavaScript to indicate the current page */
/* position: relative is needed for pseudo-element positioning (used in the border effect below) */
.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
    position: relative;
}

/* Page-Specific Active Navigation States */
/* a[href="page.html"] selects links with specific href attributes */
/* This approach automatically highlights the current page's navigation link */
/* Each page has a unique body ID (home, menu, blogs, etc.) to target the correct link */
#home .nav-list a[href="index.html"],
#menu .nav-list a[href="menu.html"],
#blogs .nav-list a[href="blogs.html"],
#events .nav-list a[href="events.html"],
#reservation .nav-list a[href="reservation.html"],
#cart .nav-list a[href="cart.html"] {
    color: var(--primary-color);
}


/* Navigation hover border effect - contained within nav item */
.nav-list a {
    position: relative;
    overflow: hidden;
    padding: 2px 6px;
    display: block;
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
/* The translateX function moves elements horizontally for centering effects */
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

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

/* ========================================
   2. PAGE-SPECIFIC STYLES
   ======================================== */

/* ========================================
   INDEX PAGE (Homepage)
   ======================================== */

/* Hero Section */
/* The calc() function allows me to perform calculations in CSS, like subtracting 40px from 100vh */
/* Viewport height (vh) units are relative to the height of the browser window */
.hero {
    min-height: calc(100vh - 40px);
    position: relative;
    padding: 0;
    background-color: #0A0A0A;
}

.hero-content {
    /* Grid layout */
    /* The code below creates a responsive grid layout for the hero section. I learned this grid technique from: https://www.w3schools.com/css/css_grid.asp */
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
    align-items: start;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-image {
    position: relative;
    height: 650px;
    background: url('images/thakali.webp');
    background-size: cover;
    background-position: center;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-text {
    font-family: 'Forum', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #fdebbc;
    background-color: transparent;
    align-self: flex-start;
    line-height: 1.1;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
}

/* Sidebar Card - Interactive Image Cards */
/* background-size: cover scales the image to cover the entire container while maintaining aspect ratio */
/* background-position: center centers the background image within the container */
/* overflow: hidden ensures content doesn't extend beyond the rounded corners */
/* cursor: pointer indicates the element is clickable */
/* cubic-bezier(0.4, 0, 0.2, 1) creates a smooth, natural animation curve */
.sidebar-card {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    height: 200px;
    text-decoration: none;
    display: block;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(253, 235, 188, 0.1));
    transition: all 0.4s ease;
    pointer-events: none;
}

.sidebar-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(253, 235, 188, 0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.sidebar-card:hover::before {
    opacity: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(253, 235, 188, 0.2));
}

.sidebar-card:hover::after {
    width: 200px;
    height: 200px;
}

.card-content {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdebbc;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: #0A0A0A;
    padding: 8px 12px;
    border-radius: 6px;
    overflow: hidden;
}

.arrow {
    font-size: 1.1rem;
    margin-left: 8px;
}

.hero-image .social-icons {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 10px 15px;
    background-color: #0A0A0A;
    border-radius: 8px;
    z-index: 2;
}

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

.social-icon {
    width: 28px;
    height: 28px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    font-size: 12px;
}

.social-icon:hover {
    background-color: #fdebbc;
    border-color: #fdebbc;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, #fdebbc 0%, #ffda7b 100%);
    color: #1A1A1A;
    padding: 15px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    /* Shimmer animation */
    /* The code below creates a shimmer effect using CSS animations. I learned this animation technique from: https://www.w3schools.com/css/css3_animations.asp */
    animation: shimmer 3s infinite;
}

/* Shimmer keyframes */
/* The code below defines keyframe animations for the shimmer effect. I learned this keyframe technique from: https://www.w3schools.com/css/css3_animations.asp */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-badge {
    background-color: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    /* Pulse animation */
    /* The code below creates a pulsing effect for the item badges. I learned this animation technique from: https://www.w3schools.com/css/css3_animations.asp */
    animation: pulse 2s infinite;
}

/* Pulse keyframes */
/* The code below defines the keyframe animation for the pulsing effect. I learned this keyframe technique from: https://www.w3schools.com/css/css3_animations.asp */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-text {
    font-size: 16px;
    font-weight: 600;
}

.promo-timer {
    background-color: #1A1A1A;
    color: #fdebbc;
    padding: 8px 16px;
    border-radius: 25px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fdebbc;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}


/* Featured Dishes Section */
.featured-section {
    background-color: #1A1A1A;
    padding: 80px 0;
    margin-top: 25px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-header p {
    color: #CCCCCC;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Dishes Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background-color: #0A0A0A;
    border: 1px solid rgba(253, 235, 188, 0.31);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

/* I learned about CSS/* The translateY function moves elements vertically */
/* Box-shadow creates shadow effects around elements */
.featured-card:hover {
    transform: translateY(-5px);
    border-color: #fdebbc;
    box-shadow: 0 10px 30px rgba(253, 235, 188, 0.2);
}

/* Responsive design for featured grid - moved to consolidated responsive section */

/* I learned about CSS/* Position: relative allows me to position child elements absolutely within this container */
.featured-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

/* I learned about CSS/* Object-fit controls how images are resized to fit their containers */
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* The scale function resizes elements, making them larger or smaller */
.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
/* This creates an overlay effect on the image */
/* I learned about CSS/* Position: absolute removes the element from normal flow and positions it relative to its nearest positioned ancestor */
.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.featured-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    position: relative;
    overflow: visible;
}

.featured-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.featured-content p {
    color: #CCCCCC;
    margin-bottom: 15px;
    line-height: 1.6;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin: 15px 0 10px 0;
}

/* Essential button classes for existing HTML */
.quick-order-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    font-family: var(--font-secondary);
}

/* Hover effects */
.quick-order-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.order-stats {
    margin-top: 5px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.order-count {
    font-size: 11px;
    color: #CCCCCC;
    font-style: italic;
    display: block;
}

/* Essential order-btn for existing HTML - using unified button style */
/* This creates a button with consistent styling across the website */
.order-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

/* Hover effects */
.order-btn:hover {
    background-color: var(--secondary-color);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

/* About Section */
/* This creates a section with consistent background and spacing */
.about-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* Align-items controls how flex/grid items are aligned along the cross axis */
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.about-content p {
    color: #CCCCCC;
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat {
    /* Text-align controls the horizontal alignment of text */
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #fdebbc;
    margin-bottom: 10px;
    font-weight: 400;
}

.stat p {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    border-radius: 10px;
    /* Overflow: hidden clips content that extends beyond the element's boundaries */
    overflow: hidden;
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
/* This creates an overlay effect on the image */
.about-image::before {
    content: '';
    /* Position: absolute removes the element from normal flow and positions it relative to its nearest positioned ancestor */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 400px;
    /* Object-fit controls how images are resized to fit their containers */
    object-fit: cover;
}

.customer-photos {
    margin-top: 40px;
}

.photo-grid {
    display: grid;
    /* Auto-fit creates as many columns as can fit, and minmax sets minimum and maximum column sizes */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.customer-photo {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    border-radius: 15px;
    /* Overflow: hidden clips content that extends beyond the element's boundaries */
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

/* Hover effects */
/* The code below creates interactive hover effects for elements. I learned this hover technique from: https://www.w3schools.com/css/css_pseudo_classes.asp */
.customer-photo:hover {
    /* The scale function resizes elements, making them larger or smaller */
    transform: scale(1.05);
    /* Vendor prefixes ensure compatibility with older browsers */
    -webkit-transform: scale(1.05) translateZ(0);
}

.customer-photo img {
    width: 100%;
    height: 100%;
    /* Object-fit controls how images are resized to fit their containers */
    object-fit: cover;
    /* Image-rendering controls how images are scaled and rendered */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    /* Backface-visibility controls whether the back face of an element is visible during 3D transforms */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* The translateZ function moves elements along the z-axis for 3D effects */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Will-change hints to the browser about upcoming changes for optimization */
    will-change: transform;
    /* Filter applies visual effects like contrast and saturation to elements */
    filter: contrast(1.1) saturate(1.1);
}

.photo-overlay {
    /* Position: absolute removes the element from normal flow and positions it relative to its nearest positioned ancestor */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* Linear gradients create smooth color transitions between two or more colors */
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px;
    color: white;
}

.photo-likes {
    font-size: 14px;
    font-weight: 500;
}

/* Reviews Section */
/* This creates a section with consistent background and spacing */
.reviews-section {
    background-color: #0A0A0A;
    padding: 40px 0 60px 0;
}

.reviews-grid {
    display: grid;
    /* Auto-fit creates as many columns as can fit, and minmax sets minimum and maximum column sizes */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: #0A0A0A;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 30px;
    /* Text-align controls the horizontal alignment of text */
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effects */
.review-card:hover {
    /* The translateY function moves elements vertically */
    transform: translateY(-5px);
    /* Border-color controls the color of the element's border */
    border-color: #fdebbc;
}

.review-stars {
    color: #fdebbc;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review-card p {
    color: #CCCCCC;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.reviewer strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.reviewer span {
    color: #fdebbc;
    font-size: 0.9rem;
}


/* Common Page Hero System */
/* This creates a reusable hero section with consistent styling */
.page-hero {
    /* Linear gradients create smooth color transitions between two or more colors */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    /* Background-size controls how the background image is sized */
    background-size: cover;
    /* Background-position controls where the background image is positioned */
    background-position: center;
    /* Background-repeat controls whether the background image repeats */
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    min-height: 400px;
}

.page-hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
    /* Text-shadow creates a shadow effect behind text to improve readability */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-hero-content p {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    /* Text-shadow creates a shadow effect behind text to improve readability */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Specific hero backgrounds */
/* Background-image sets the background image for an element */
.menu-hero { background-image: url('./images/menu.jpg'); }
.blogs-hero { background-image: url('./images/blog.avif'); }
.cart-hero { background-image: url('./images/menu.jpg'); }
.events-hero { background-image: url('./images/event.jfif'); }
.reservation-hero { background-image: url('./images/reserve.jpg'); }
.about-hero { background-image: url('./images/about.avif'); }
.default-hero { background-image: url('./images/about.avif'); }



.tab-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Hover effects */
/* The :active pseudo-class applies styles when an element is being activated */
.tab-btn:hover,
.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.menu-items {
    background-color: #0A0A0A;
    padding: 40px 0;
    width: 100%;
}



/* ========================================
   MENU PAGE
   ======================================== */

/* MENU GRID - PROPER 4 COLUMN LAYOUT LIKE HUNGRY JACKS */
/* CSS Grid allows me to create complex two-dimensional layouts */
.menu-grid {
    display: grid !important;
    /* The repeat function creates multiple columns with the same size */
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-item {
    background-color: #1A1A1A;
    border-radius: 15px;
    /* Overflow: hidden clips content that extends beyond the element's boundaries */
    overflow: hidden;
    border: 1px solid rgba(253, 235, 188, 0.1);
    /* Height controls the height of an element */
    height: 400px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

/* Hover effects */
.menu-item:hover {
    /* The translateY function moves elements vertically */
    transform: translateY(-5px);
    /* Border-color controls the color of the element's border */
    border-color: #fdebbc;
}

.item-image {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    /* Height controls the height of an element */
    height: 180px;
    /* Overflow: hidden clips content that extends beyond the element's boundaries */
    overflow: hidden;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #2A2A2A;
}

/* Image loading fallback */
.item-image img:not([src]),
.item-image img[src=""],
.item-image img[src*="undefined"] {
    background: linear-gradient(45deg, #2A2A2A 25%, #333 25%, #333 50%, #2A2A2A 50%, #2A2A2A 75%, #333 75%);
    background-size: 20px 20px;
    position: relative;
}

.item-image img:not([src]):after,
.item-image img[src=""]:after,
.item-image img[src*="undefined"]:after {
    content: "🍽️";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fdebbc;
}

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.item-content {
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    display: flex;
    flex-direction: column;
    /* Justify-content controls how flex items are distributed along the main axis */
    justify-content: space-between;
}

.item-header {
    display: flex;
    /* Justify-content controls how flex items are distributed along the main axis */
    justify-content: space-between;
    /* Align-items controls how flex/grid items are aligned along the cross axis */
    align-items: center;
    margin-bottom: 12px;
}

.item-header h3 {
    font-family: 'Forum', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fdebbc;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    margin-right: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 1px;
}

.price {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fdebbc;
    /* White-space: nowrap prevents text from wrapping to the next line */
    white-space: nowrap;
}

.item-content p {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    margin-bottom: 18px;
    line-height: 1.5;
    font-size: 0.95rem;
    font-weight: 400;
}


/* Essential add-to-cart-btn for existing HTML */
/* This creates a button with consistent styling across the website */
.add-to-cart-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
    transition: background-color 0.3s ease;
}

/* Hover effects */
.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
}

/* Menu Item Detail Page Styles */
/* This creates a section with consistent background and spacing */
.menu-item-detail-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.menu-item-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item-image {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    border-radius: 12px;
    /* Overflow: hidden clips content that extends beyond the element's boundaries */
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 400px;
    /* Object-fit controls how images are resized to fit their containers */
    object-fit: cover;
}

.menu-item-badge {
    /* Position: absolute removes the element from normal flow and positions it relative to its nearest positioned ancestor */
    position: absolute;
    top: 15px;
    left: 15px;
    /* Linear gradients create smooth color transitions between two or more colors */
    background: linear-gradient(135deg, #fdebbc, #ffda7b);
    color: #1A1A1A;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-item-info {
    padding: 0;
}

.menu-item-header {
    display: flex;
    /* Justify-content controls how flex items are distributed along the main axis */
    justify-content: space-between;
    /* Align-items controls how flex/grid items are aligned along the cross axis */
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    /* Border-bottom creates a line at the bottom of the element */
    border-bottom: 1px solid rgba(253, 235, 188, 0.2);
}

.menu-item-header h1 {
    font-size: 2.2rem;
    color: #fdebbc;
    font-family: 'Forum', serif;
    margin: 0;
    font-weight: 400;
}

.menu-item-price {
    font-size: 1.8rem;
    color: #fdebbc;
    font-weight: 600;
}

.menu-item-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 25px;
}

.menu-item-actions {
    display: flex;
    gap: 12px;
}

/* Essential menu-item-actions buttons for existing HTML */
/* This creates buttons with consistent styling for the menu item actions */
.menu-item-actions .add-to-cart-btn,
.menu-item-actions .quick-order-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-secondary);
}

.menu-item-actions .add-to-cart-btn {
    /* Background: transparent makes the background see-through */
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Hover effects */
.menu-item-actions .add-to-cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

.menu-item-actions .quick-order-btn {
    /* Linear gradients create smooth color transitions between two or more colors */
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-dark);
}

/* Hover effects */
.menu-item-actions .quick-order-btn:hover {
    /* Linear gradients create smooth color transitions between two or more colors */
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Info Tabs Section */
/* This creates a section with consistent background and spacing */
.info-tabs-section {
    background-color: #1A1A1A;
    padding: 50px 0;
}

.info-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content {
    /* Display: none hides the element completely */
    display: none;
}

.info-tabs input[type="radio"] {
    /* Display: none hides the element completely */
    display: none;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    /* Border-bottom creates a line at the bottom of the element */
    border-bottom: 1px solid rgba(253, 235, 188, 0.2);
    /* Justify-content controls how flex items are distributed along the main axis */
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    /* Background: transparent makes the background see-through */
    background: transparent;
    border: none;
    color: #ccc;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    /* Border-bottom creates a line at the bottom of the element */
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0;
    /* Text-transform controls the capitalization of text */
    text-transform: uppercase;
}

/* Hover effects */
.tab-btn:hover {
    color: #fdebbc;
    background: transparent;
    border-bottom-color: #fdebbc;
}

/* I learned about CSS/* The :checked pseudo-class applies styles when a checkbox or radio button is checked */
/* I learned about CSS/* The ~ selector selects elements that are siblings and come after the first element */
#ingredients-tab:checked ~ .tab-buttons label[for="ingredients-tab"],
#allergens-tab:checked ~ .tab-buttons label[for="allergens-tab"],
#nutrition-tab:checked ~ .tab-buttons label[for="nutrition-tab"] {
    color: #fdebbc;
    background: transparent;
    border-bottom-color: #fdebbc;
    font-weight: 500;
}

.info-content {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    /* Text-align controls the horizontal alignment of text */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}


.ingredients-background {
    background-color: rgba(253, 235, 188, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-top: 20px;
    border: 1px solid rgba(253, 235, 188, 0.2);
    display: block;
}

.nutrition-background {
    background-color: rgba(253, 235, 188, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-top: 20px;
    border: 1px solid rgba(253, 235, 188, 0.2);
    display: none;
}

.allergens-background {
    background-color: rgba(253, 235, 188, 0.05);
    border-radius: 12px;
    padding: 40px;
    margin-top: 20px;
    border: 1px solid rgba(253, 235, 188, 0.2);
    display: none;
}

#ingredients {
    display: block;
}

.tab-content h3 {
    color: #fdebbc;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Forum', serif;
    font-weight: 400;
    /* Text-align controls the horizontal alignment of text */
    text-align: center;
}

#ingredients .ingredients-grid {
    margin-top: 50px;
}

#allergens {
    display: block;
}

#allergens h3 {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
#allergens h3::after {
    content: '';
    /* Position: absolute positions the element relative to its nearest positioned ancestor */
    position: absolute;
    /* Bottom controls the vertical position of a positioned element */
    bottom: -20px;
    /* Left controls the horizontal position of a positioned element */
    left: 0;
    width: 100%;
    /* Height controls the height of an element */
    height: 1px;
    background-color: rgba(253, 235, 188, 0.2);
}

.allergens-list {
    margin-top: 30px;
}

.allergen-item {
    color: #e0e0e0;
    font-size: 1rem;
    /* Text-align controls the horizontal alignment of text */
    text-align: left;
}

.tab-content ul {
    /* List-style controls the appearance of list items */
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-content li {
    color: #ccc;
    padding: 8px 0;
    /* Border-bottom creates a line at the bottom of the element */
    border-bottom: 1px solid rgba(253, 235, 188, 0.1);
    font-size: 1rem;
    line-height: 1.4;
    /* Text-align controls the horizontal alignment of text */
    text-align: center;
}

.tab-content li:last-child {
    /* The :last-child pseudo-class selects the last child element of its parent */
    /* Border-bottom: none removes the bottom border */
    border-bottom: none;
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
.allergen-item::before {
    content: "•";
    color: #fdebbc;
    margin-right: 6px;
    font-weight: bold;
    font-size: 0.9rem;
}

#nutrition {
    display: block;
}

#nutrition .nutrition-grid {
    margin-top: 50px;
}


#nutrition h3 {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
#nutrition h3::after {
    content: '';
    /* Position: absolute positions the element relative to its nearest positioned ancestor */
    position: absolute;
    /* Bottom controls the vertical position of a positioned element */
    bottom: -20px;
    /* Left controls the horizontal position of a positioned element */
    left: 0;
    width: 100%;
    /* Height controls the height of an element */
    height: 1px;
    background-color: rgba(253, 235, 188, 0.2);
}

#ingredients h3 {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
#ingredients h3::after {
    content: '';
    /* Position: absolute positions the element relative to its nearest positioned ancestor */
    position: absolute;
    /* Bottom controls the vertical position of a positioned element */
    bottom: -20px;
    /* Left controls the horizontal position of a positioned element */
    left: 0;
    width: 100%;
    /* Height controls the height of an element */
    height: 1px;
    background-color: rgba(253, 235, 188, 0.2);
}

#ingredients h3 {
    margin-bottom: 15px;
}


/* Ingredients Grid Styles */
.ingredients-grid {
    display: grid;
    /* Grid-template-columns defines the size and number of columns in a grid */
    /* The repeat() function creates a repeating pattern of columns */
    grid-template-columns: repeat(5, 1fr);
    /* Grid-template-rows defines the size and number of rows in a grid */
    /* The repeat() function creates a repeating pattern of rows */
    grid-template-rows: repeat(3, auto);
    /* The gap property creates space between grid items */
    gap: 8px;
    margin-top: 50px;
}

.ingredient-item {
    background-color: rgba(253, 235, 188, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    color: #e0e0e0;
    font-size: 0.9rem;
    /* Text-align controls the horizontal alignment of text */
    text-align: left;
    border: 1px solid rgba(253, 235, 188, 0.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.ingredient-item:hover {
    /* The :hover pseudo-class applies styles when the user hovers over an element */
    background-color: rgba(253, 235, 188, 0.12);
    /* Border-color sets the color of the element's border */
    border-color: rgba(253, 235, 188, 0.4);
}

/* Pseudo-elements allow me to add content that doesn't exist in the HTML */
.ingredient-item::before {
    content: "•";
    color: #fdebbc;
    margin-right: 6px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Nutrition Grid Styles */
.nutrition-grid {
    display: grid;
    /* Grid-template-columns defines the size and number of columns in a grid */
    /* The repeat() function creates a repeating pattern of columns */
    grid-template-columns: repeat(6, 1fr);
    /* The gap property creates space between grid items */
    gap: 8px;
    margin-top: 50px;
}

.nutrition-item {
    background-color: #4a4744;
    border-radius: 6px;
    padding: 8px 12px;
    /* Text-align controls the horizontal alignment of text */
    text-align: center;
    /* Border: none removes the border */
    border: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nutrition-item:hover {
    /* The :hover pseudo-class applies styles when the user hovers over an element */
    background-color: #5a5754;
}

.nutrition-label {
    color: #c0c0c0;
    font-size: 1rem;
    font-weight: 500;
    /* Text-transform controls the capitalization of text */
    text-transform: uppercase;
    margin-bottom: 4px;
}

.nutrition-value {
    color: #e0d7c6;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Show active tab content */
#ingredients-tab:checked ~ .info-content .ingredients-background,
#allergens-tab:checked ~ .info-content .allergens-background,
#nutrition-tab:checked ~ .info-content .nutrition-background {
    /* The :checked pseudo-class applies styles when a checkbox or radio button is checked */
    /* The ~ selector selects elements that are siblings and come after the first element */
    display: block;
}

/* Hide inactive tab content */
#ingredients-tab:checked ~ .info-content .allergens-background,
#ingredients-tab:checked ~ .info-content .nutrition-background,
#allergens-tab:checked ~ .info-content .ingredients-background,
#allergens-tab:checked ~ .info-content .nutrition-background,
#nutrition-tab:checked ~ .info-content .ingredients-background,
#nutrition-tab:checked ~ .info-content .allergens-background {
    /* The :checked pseudo-class applies styles when a checkbox or radio button is checked */
    /* The ~ selector selects elements that are siblings and come after the first element */
    /* Display: none hides the element completely */
    display: none;
}

/* Ensure content inside backgrounds is always visible when background is visible */
.ingredients-background #ingredients,
.allergens-background #allergens,
.nutrition-background #nutrition {
    /* The !important declaration gives a CSS property higher priority */
    display: block !important;
}

@keyframes fadeIn {
    /* Keyframes define the steps of an animation sequence */
    /* Opacity controls the transparency of an element */
    from { opacity: 0; transform: translateY(10px); }
    /* The translateY function moves elements vertically */
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design for Menu Item Detail - moved to consolidated responsive section */

.detail-content {
    display: grid;
    /* Grid-template-columns defines the size and number of columns in a grid */
    grid-template-columns: 1fr 1fr;
    /* The gap property creates space between grid items */
    gap: 60px;
    /* Align-items controls how flex items are aligned along the cross axis */
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.detail-image {
    /* Position: relative allows me to position child elements absolutely within this container */
    position: relative;
    border-radius: 15px;
    /* Overflow: hidden clips content that extends beyond the element's boundaries */
    overflow: hidden;
    /* Height controls the height of an element */
    height: 400px;
}

.detail-image img {
    width: 100%;
    /* Height controls the height of an element */
    height: 100%;
    /* Object-fit controls how images are resized to fit their containers */
    object-fit: cover;
}

.detail-badge {
    /* Position: absolute positions the element relative to its nearest positioned ancestor */
    position: absolute;
    /* Top controls the vertical position of a positioned element */
    top: 20px;
    /* Right controls the horizontal position of a positioned element */
    right: 20px;
    background-color: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}






.info-section {
    /* Background sets the background color or image of an element */
    background: rgba(253, 235, 188, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    /* Display: none hides the element completely */
    display: none;
    /* Min-height sets the minimum height of an element */
    min-height: 300px;
}

.info-section.active {
    display: block;
}

.info-section h3 {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #fdebbc;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 2px solid rgba(253, 235, 188, 0.2);
    padding-bottom: 15px;
}

.info-section ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.info-section li {
    padding: 8px 12px;
    color: #CCCCCC;
    background: rgba(253, 235, 188, 0.08);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    border: 1px solid rgba(253, 235, 188, 0.15);
    transition: all 0.2s ease;
}

.info-section li:hover {
    background: rgba(253, 235, 188, 0.12);
    border-color: rgba(253, 235, 188, 0.25);
}

.info-section li:before {
    content: "•";
    color: #fdebbc;
    font-weight: bold;
    margin-right: 8px;
}

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

.nutrition-item {
    background: rgba(253, 235, 188, 0.1);
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(253, 235, 188, 0.2);
}

.nutrition-item .label {
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nutrition-item .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fdebbc;
    font-family: 'Lato', sans-serif;
}

.allergens-info {
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.allergen-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.allergen-item:last-child {
    border-bottom: none;
}

.allergen-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    font-size: 1.2rem;
}

.allergen-text {
    color: #CCCCCC;
}

/* Responsive for detail page - moved to consolidated responsive section */

/* ========================================
   BLOG PAGE
   ======================================== */

/* Blog Page Styles - using common page-hero system */

.blogs-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background-color: #1A1A1A;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(253, 235, 188, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

/* When the link itself is the blog-card */
a.blog-card {
    text-decoration: none;
    color: inherit;
}

/* Event card links */
a.event-card {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* Related Events Section */
.related-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-event-card {
    background: rgba(253, 235, 188, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    gap: 15px;
    align-items: center;
}

.related-event-card:hover {
    background: rgba(253, 235, 188, 0.08);
    border-color: rgba(253, 235, 188, 0.2);
    transform: translateY(-2px);
}

.related-event-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.related-event-content h4 {
    font-family: 'Forum', serif;
    color: #fdebbc;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.related-event-content p {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.related-event-content p:first-of-type {
    color: #fdebbc;
    font-weight: 500;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #fdebbc;
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 300px;
}


.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-card:not(.featured) .blog-image {
    height: 180px;
}

.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-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-date,
.blog-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #CCCCCC;
    font-weight: 400;
}

.blog-category {
    background-color: rgba(253, 235, 188, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    color: #fdebbc;
}

.blog-content h2 {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fdebbc;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.blog-content h3 {
    font-family: 'Forum', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fdebbc;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.blog-content p {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.read-more {
    font-family: 'Lato', sans-serif;
    color: #fdebbc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: #ffda7b;
}


/* Responsive Blog Styles - moved to consolidated responsive section */

/* Blog Detail Page */
.blog-detail {
    background-color: #0A0A0A;
    padding: 150px 0 40px 0;
    min-height: calc(100vh - 200px);
}

/* Blog Content Info Section */
.blog-content-info {
    background-color: #1A1A1A;
    padding: 60px 0;
}

.blog-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content-section {
    background: rgba(253, 235, 188, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

.blog-content-section h3 {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #fdebbc;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: left;
    border-bottom: 2px solid rgba(253, 235, 188, 0.2);
    padding-bottom: 15px;
}

.blog-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

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

.blog-detail-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-detail-info {
    padding: 20px 0;
}

.blog-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.blog-detail-meta .blog-date,
.blog-detail-meta .blog-category {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #CCCCCC;
    font-weight: 400;
}

.blog-detail-meta .blog-category {
    background-color: rgba(253, 235, 188, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    color: #fdebbc;
}

.blog-detail-info h1 {
    font-family: 'Forum', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fdebbc;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.blog-detail-excerpt {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.blog-detail-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.share-btn,
.bookmark-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.share-btn:hover,
.bookmark-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

/* Blog Content Sections */
#blog-article-content {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    line-height: 1.8;
    font-size: 1rem;
}

#blog-article-content h2 {
    font-family: 'Forum', serif;
    color: #fdebbc;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: 400;
    letter-spacing: 1px;
}

#blog-article-content h3 {
    font-family: 'Forum', serif;
    color: #fdebbc;
    font-size: 1.3rem;
    margin: 25px 0 12px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

#blog-article-content p {
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

#blog-article-content ul, #blog-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

#blog-article-content li {
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

/* Related Posts */
.related-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-post {
    background: rgba(253, 235, 188, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-post:hover {
    background: rgba(253, 235, 188, 0.08);
    border-color: rgba(253, 235, 188, 0.2);
    transform: translateY(-2px);
}

/* Related Post Heading - Typography Styling */
/* I learned about CSS/* text-align: left aligns text to the left side of the container */
.related-post h4 {
    font-family: 'Forum', serif;
    color: #fdebbc;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: left;
}

/* Related Post Paragraph - Typography Styling */
/* I learned about CSS/* line-height: 1.5 creates optimal spacing between lines for readability */
.related-post p {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: left;
}

/* Related Post Meta Information - Small Text Styling */
.related-post .related-meta {
    font-size: 0.8rem;
    color: #999;
    font-family: 'Lato', sans-serif;
    text-align: left;
}

/* Comments Section - Layout Container */
.comments-section {
    margin-top: 20px;
}

/* Comment Form - Styled Container */
/* rgba() allows me to specify colors with transparency (alpha channel) */
/* background: rgba(253, 235, 188, 0.05) creates a very subtle background with 5% opacity */
/* I learned about CSS/* border-radius: 10px creates rounded corners for a modern look */
.comment-form {
    background: rgba(253, 235, 188, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    margin-bottom: 30px;
}

.comment-form h4 {
    font-family: 'Forum', serif;
    color: #fdebbc;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: left;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(253, 235, 188, 0.2);
    border-radius: 6px;
    color: #CCCCCC;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #fdebbc;
    background: rgba(26, 26, 26, 0.9);
}

.comment-form button {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form button:hover {
    background-color: var(--secondary-color);
}

.comments-list {
    margin-top: 20px;
}

.comment-item {
    background: rgba(253, 235, 188, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    margin-bottom: 15px;
}

.comment-author {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #fdebbc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.comment-date {
    font-family: 'Lato', sans-serif;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.comment-text {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Blog Content Responsive - moved to consolidated responsive section */

/* Event Detail Page */
.event-detail {
    background-color: #0A0A0A;
    padding: 150px 0 40px 0;
    min-height: calc(100vh - 200px);
}

.event-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.event-detail-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.event-detail-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fdebbc, #d4af37);
    color: #1A1A1A;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.event-date, .event-time {
    background: rgba(253, 235, 188, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fdebbc;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.event-detail-title {
    font-family: 'Forum', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fdebbc;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.event-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 40px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.event-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.join-event-btn, .share-event-btn {
    flex: 1;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.join-event-btn:hover, .share-event-btn:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

.join-event-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border-color: var(--primary-color);
}

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

/* CSS classes for button animations */
.join-event-btn.joining {
    transform: scale(0.95);
    background: #4CAF50;
    color: white;
    transition: all 0.3s ease;
}

.join-event-btn.joined {
    background: #4CAF50;
    color: white;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Event Info Section */
.event-info {
    background-color: #1A1A1A;
    padding: 60px 0;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-info-section {
    background: rgba(253, 235, 188, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

.event-info-section h3 {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #fdebbc;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: left;
    border-bottom: 2px solid rgba(253, 235, 188, 0.2);
    padding-bottom: 15px;
}

.event-info-section h4 {
    font-family: 'Forum', serif;
    color: #fdebbc;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.event-info-section ul {
    list-style: none;
    padding: 0;
}

.event-info-section li {
    padding: 8px 0;
    color: #CCCCCC;
    border-bottom: 1px solid rgba(253, 235, 188, 0.1);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}

.event-info-section li:last-child {
    border-bottom: none;
}

.event-info-section li:before {
    content: "•";
    color: #fdebbc;
    font-weight: bold;
    margin-right: 10px;
}

.event-info-section p {
    color: #CCCCCC;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Event Detail Responsive - moved to consolidated responsive section */

.blog-detail .tab-content {
    min-height: 400px;
}

/* ========================================
   CART PAGE
   ======================================== */

/* Cart Page Styles - using common page-hero system */

.cart-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-items h2 {
    font-family: 'Forum', serif;
    font-size: 2rem;
    color: #fdebbc;
    margin-bottom: 30px;
    text-align: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: #fdebbc;
    transform: translateY(-2px);
}

.cart-item .item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.cart-item .item-image img {
    width: 100%;
    height: 100%;
    /* Object-fit controls how images are resized to fit their containers */
    object-fit: cover;
}

.cart-item .item-details h3 {
    font-family: 'Forum', serif;
    font-size: 1.3rem;
    color: #fdebbc;
    margin-bottom: 8px;
}

.cart-item .item-details p {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-bottom: 8px;
}


.cart-item .item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fdebbc;
    margin-top: 8px;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.quantity-btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.quantity {
    font-weight: 600;
    color: #fdebbc;
    min-width: 20px;
    text-align: center;
}

.item-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fdebbc;
    min-width: 80px;
    text-align: right;
}

.remove-btn {
    background-color: #ff4444;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.remove-btn:hover {
    background-color: #ff6666;
    transform: scale(1.1);
}

.cart-summary {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: 'Forum', serif;
    font-size: 1.5rem;
    color: #fdebbc;
    margin-bottom: 25px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(253, 235, 188, 0.1);
}

.summary-row.total {
    border-bottom: 2px solid #fdebbc;
    font-weight: 600;
    font-size: 1.2rem;
    color: #fdebbc;
    margin-top: 20px;
    padding-top: 15px;
}

/* Essential checkout-btn for existing HTML - using unified button style */
.checkout-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

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

.continue-shopping-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font-secondary);
}

.continue-shopping-btn:hover {
    background-color: var(--primary-color);
    color: var(--background-dark);
}

/* ========================================
   EVENTS PAGE
   ======================================== */

/* Events Page Styles - using common page-hero system */

.events-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

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

.event-card {
    background-color: #1A1A1A;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(253, 235, 188, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: #fdebbc;
    box-shadow: 0 10px 30px rgba(253, 235, 188, 0.2);
}

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

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

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

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fdebbc, #d4af37);
    color: #1A1A1A;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    font-family: 'Forum', serif;
    font-size: 1.5rem;
    color: #fdebbc;
    margin-bottom: 10px;
}

.event-time {
    color: #fdebbc;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-content p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

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

.newsletter-section {
    background-color: #1A1A1A;
    padding: 60px 0;
}

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

.newsletter-content h2 {
    font-family: 'Forum', serif;
    font-size: 2rem;
    color: #fdebbc;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: #CCCCCC;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: #0A0A0A;
    border: 1px solid rgba(253, 235, 188, 0.3);
    border-radius: 8px;
    color: #CCCCCC;
    font-family: 'Lato', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #fdebbc;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

/* ========================================
   RESERVATION PAGE
   ======================================== */

/* Reservation Page Styles - using common page-hero system */

.reservation-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.reservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.reservation-form-container {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

.reservation-form-container h2 {
    font-family: 'Forum', serif;
    font-size: 2rem;
    color: #fdebbc;
    margin-bottom: 30px;
    text-align: center;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    color: #fdebbc;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    background-color: #0A0A0A;
    border: 1px solid rgba(253, 235, 188, 0.3);
    border-radius: 8px;
    color: #CCCCCC;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fdebbc;
}

/* Essential submit-btn for existing HTML - using unified button style */
.submit-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: var(--font-secondary);
}

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

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

.info-item h4 {
    font-family: 'Forum', serif;
    font-size: 1.3rem;
    color: #fdebbc;
    margin-bottom: 15px;
}

.info-item p {
    color: #CCCCCC;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.info-item li {
    color: #CCCCCC;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.info-item li::before {
    content: "•";
    color: #fdebbc;
    position: absolute;
    left: 0;
}

/* Responsive Design for Cart, Events, and Reservation Pages - moved to consolidated responsive section */

/* Common Page Styles - using consolidated page-hero system above */

.page-section {
    background-color: #0A0A0A;
    padding: 80px 0;
}

.content-card {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    margin-bottom: 20px;
}

.content-card h4 {
    margin-bottom: 15px;
    color: #fdebbc;
}

.content-card p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 10px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Essential primary-btn for existing HTML - using unified button style */
.primary-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

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

.content-list {
    margin: 20px 0;
    padding-left: 20px;
}

.content-list li {
    color: #CCCCCC;
    margin-bottom: 10px;
}

.content-text h2 {
    margin-bottom: 20px;
}

.content-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

/* About Us Page Specific Styles */
.about-story {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.about-story h2 {
    margin-bottom: 30px;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background-color: #1A1A1A;
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 235, 188, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #fdebbc;
}

.feature-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #CCCCCC;
}

.mission-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

/* Contact Page Styles */
.contact-section {
    background-color: #0A0A0A;
    padding: 0;
    min-height: calc(100vh - 40px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: start;
}

.contact-left {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.contact-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('./images/menu.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.contact-overlay {
    font-family: 'Forum', serif;
    font-size: 4.5rem;
    font-weight: 400;
    color: #fdebbc;
    text-align: left;
    letter-spacing: 3px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    position: absolute;
    bottom: 30px;
    left: 30px;
    line-height: 1;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-panel {
    background: rgba(26, 26, 26, 0.6);
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

.info-panel:has(.food-gallery) {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
}

.panel-title {
    font-family: 'Forum', serif;
    font-size: 1.2rem;
    color: #fdebbc;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    padding: 25px 25px 0 25px;
}


.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 25px 25px 25px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(253, 235, 188, 0.1);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

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

.hours-item span:first-child {
    color: #CCCCCC;
    font-weight: 400;
    text-transform: capitalize;
}

.hours-item span:last-child {
    color: #fdebbc;
    font-weight: 500;
    font-size: 0.9rem;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fdebbc;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.map-container {
    margin-top: 0;
    padding: 25px;
}

.map-placeholder {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
}

.map-area {
    background: rgba(253, 235, 188, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #CCCCCC;
    font-family: 'Lato', sans-serif;
    text-align: center;
    border: 1px solid rgba(253, 235, 188, 0.1);
    transition: all 0.3s ease;
}

.map-area:hover {
    background: rgba(253, 235, 188, 0.15);
    border-color: rgba(253, 235, 188, 0.3);
    color: #fdebbc;
}

.route-btn {
    background-color: var(--primary-color);
    color: var(--background-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 25px 25px 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #CCCCCC;
    font-weight: 400;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(253, 235, 188, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(253, 235, 188, 0.2);
}

.social-icon:hover {
    background: rgba(253, 235, 188, 0.2);
    border-color: rgba(253, 235, 188, 0.4);
    transform: translateY(-2px);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-image {
        height: 350px;
    }
    
    .contact-overlay {
        font-size: 2.5rem;
        letter-spacing: 3px;
        bottom: 30px;
        left: 30px;
    }
    
    .food-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .map-areas {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .info-panel {
        padding: 25px;
    }
    
    .panel-title {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .panel-title:before,
    .panel-title:after {
        width: 30px;
    }
}

.blog-detail .tab-panel {
    display: none;
}

.blog-detail .tab-panel.active {
    display: block;
}

.blog-detail .tab-panel h3 {
    font-family: 'Forum', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fdebbc;
    letter-spacing: 1px;
}

.blog-article-content {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    line-height: 1.8;
    font-size: 1rem;
}

.blog-article-content h2 {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    color: #fdebbc;
    margin: 30px 0 15px 0;
    letter-spacing: 1px;
}

.blog-article-content h3 {
    font-family: 'Forum', serif;
    font-size: 1.4rem;
    color: #fdebbc;
    margin: 25px 0 10px 0;
    letter-spacing: 1px;
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-article-content li {
    margin-bottom: 8px;
}

.related-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-post-card {
    background-color: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(253, 235, 188, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.related-post-card:hover {
    transform: translateY(-3px);
}

.related-post-image {
    height: 120px;
    overflow: hidden;
}

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

.related-post-content {
    padding: 15px;
}

.related-post-content h4 {
    font-family: 'Forum', serif;
    font-size: 1.1rem;
    color: #fdebbc;
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-post-content p {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.4;
}

.comment-form {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

.comment-form h4 {
    font-family: 'Forum', serif;
    font-size: 1.3rem;
    color: #fdebbc;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #0A0A0A;
    border: 1px solid #333;
    border-radius: 5px;
    color: #CCCCCC;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #fdebbc;
}

.comment-form button {
    background-color: #fdebbc;
    color: #1A1A1A;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.comment-form button:hover {
    background-color: #ffda7b;
}

.comment-item {
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(253, 235, 188, 0.1);
}

.comment-author {
    font-family: 'Forum', serif;
    font-size: 1.1rem;
    color: #fdebbc;
    margin-bottom: 8px;
}

.comment-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
}

.comment-text {
    font-family: 'Lato', sans-serif;
    color: #CCCCCC;
    line-height: 1.6;
}

/* Responsive for blog detail page - moved to consolidated responsive section */

/* Cart Success Message Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ========================================
   FOOTER (Common to all pages)
   ======================================== */

/* Footer */
.footer {
    background-color: #0A0A0A;
    padding: 60px 0 20px;
    margin-top: 0;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-column h3 {
    font-family: 'Forum', serif;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
}

.footer-column h4 {
    font-family: 'Forum', serif !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.footer-column p {
    color: #CCCCCC;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column ul li a:hover {
    color: #fdebbc;
}

.footer-bottom {
    border-top: 1px dashed #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #CCCCCC;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fdebbc;
}

/* Responsive Design for Common Pages - moved to consolidated responsive section */

/* Responsive Design - moved to consolidated responsive section */

/* Menu List Styles */
.menu-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2.5rem;
    color: #fdebbc;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Forum', serif;
}

.menu-list {
    max-width: 800px;
    margin: 0 auto;
}

.menu-list-item {
    background-color: #0A0A0A;
    border: 1px solid rgba(253, 235, 188, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-list-item:hover {
    border-color: #fdebbc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 235, 188, 0.1);
}

.item-info {
    flex: 1;
    margin-right: 20px;
}

.item-info h3 {
    font-size: 1.4rem;
    color: #fdebbc;
    margin-bottom: 8px;
    font-weight: 500;
}

.item-info p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.badge {
    background: linear-gradient(135deg, #fdebbc, #ffda7b);
    color: #1A1A1A;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.menu-list-item-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-price {
    font-size: 1.3rem;
    color: #fdebbc;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
    display: flex;
    align-items: center;
}

.item-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Legacy menu list buttons - use .btn system instead */

/* ========================================
   3. RESPONSIVE DESIGN
   ======================================== */

/* ========================================
   CONSOLIDATED RESPONSIVE DESIGN
   ======================================== */

/* Tablet and below (768px and below) */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1.1rem; }
    
    /* Layout */
    .container { padding: 0 15px; }
    .header .container { flex-direction: column; gap: 20px; padding: 0 20px; }
    .nav { left: 20px; gap: 20px; padding: 6px 16px; }
    .nav-list { gap: 25px; flex-wrap: wrap; justify-content: center; }
    .nav-list a { font-size: 12px; }
    
    /* Hero Section */
    .hero-content { grid-template-columns: 1fr; gap: 30px; }
    .hero-text { font-size: 2.5rem; }
    
    /* Grids */
    .featured-grid,
    .blogs-grid,
    .events-grid,
    .menu-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .menu-item { height: 350px; }
    
    /* Content Layouts */
    .about-section .container,
    .menu-item-detail-content,
    .event-detail-content,
    .blog-detail-content,
    .cart-content,
    .reservation-content,
    .content-grid { grid-template-columns: 1fr; gap: 30px; }
    
    /* Blog specific */
    .blog-card.featured { grid-column: 1; grid-template-columns: 1fr; }
    .blog-card.featured .blog-image { height: 200px; }
    .blog-content { padding: 20px; }
    .blog-content h2 { font-size: 1.5rem; }
    .blog-content h3 { font-size: 1.3rem; }
    
    /* Menu specific */
    .menu-list-item { flex-direction: column; align-items: flex-start; gap: 15px; }
    .item-info { margin-right: 0; margin-bottom: 10px; }
    .menu-list-item-right { flex-direction: column; align-items: flex-start; gap: 15px; }
    .item-price { margin-right: 0; text-align: left; align-self: flex-start; min-width: auto; }
    .item-actions { width: 100%; justify-content: flex-start; }
    .category-title { font-size: 2rem; }
    
    /* Cart specific */
    .cart-item { grid-template-columns: 80px 1fr; grid-template-rows: auto auto auto; gap: 15px; }
    .cart-item .item-image { width: 80px; height: 80px; }
    .cart-item .item-details { grid-column: 2; }
    .cart-item .item-quantity { grid-column: 1 / -1; justify-content: center; }
    .cart-item .item-total { grid-column: 1 / -1; text-align: center; }
    .cart-item .remove-btn { position: absolute; top: 10px; right: 10px; }
    
    /* Forms */
    .form-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    
    /* Footer */
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    
    /* Contact */
    .contact-content { grid-template-columns: 1fr; gap: 50px; }
    .contact-image { height: 350px; }
    .contact-overlay { font-size: 2.5rem; letter-spacing: 3px; bottom: 30px; left: 30px; }
    .food-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .map-areas { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; }
    .info-panel { padding: 25px; }
    .panel-title { font-size: 1.2rem; letter-spacing: 1.5px; }
    .panel-title:before, .panel-title:after { width: 30px; }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* Hero */
    .hero-text { font-size: 2rem; }
    
    /* Layout */
    .page-hero { padding: 80px 0; }
    .page-hero-content h1 { font-size: 3rem; }
    .page-hero-content p { font-size: 1rem; }
    .page-section { padding: 60px 0; }
    .content-grid { gap: 30px; }
    .content-image img { height: 250px; }
    .content-card { padding: 15px; }
    .primary-btn { padding: 10px 20px; font-size: 0.9rem; }
    
}
