/* ========================================
   AMAALA'S DELIGHT - RESTAURANT WEBSITE
   Comprehensive CSS Stylesheet
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */

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

:root {
    /* Color Palette - Warm, elegant restaurant colors */
    --primary-red: #8B0000;
    --dark-red: #6B0000;
    --gold: #D4AF37;
    --light-gold: #F4E5C2;
    --black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background-color: var(--black);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h2 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}
.logo h2:hover{
    color: var(--primary-red);
    cursor: pointer;
    transition: .5s;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    color: var(--light-gold);
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary-red);
  animation: fadeInUp 1.4s ease;
}
.btn:hover {
  background: transparent;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--dark-bg);
}


.btn-secondary:hover {
  background: transparent;
  color: var(--accent-gold);
}
/* Glowing Button */
.btn-glow {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
}
.intro {
  background: var(--light-bg);
  text-align: center;
  color: var(--dark-red);
}

.intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}


.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-red);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 10px auto;
}

.dish-card:hover img {
  transform: scale(1.1);
  transition: .5s;
}



.dish-info {
  padding: 1.5rem;
}

.dish-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.dish-info .tagline {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.3rem;
  color: var(--primary-red);
  font-weight: 600;
}

.why-choose {
  background: var(--dark-bg);
  color: var(--text-light);
}



.opening-hours {
  background: var(--light-bg);
}

.hours-content {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hours-content table {
  width: 100%;
  border-collapse: collapse;
}

.hours-content td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.hours-content td:first-child {
  font-weight: 600;
  color: var(--primary-red);
}

.hours-content td:last-child {
  text-align: right;
  color: #555;
}


.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Floating Food Items Animation */
.floating-items {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 4rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.float-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Fade-in Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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

/* ========================================
   PAGE HERO (Other pages)
   ======================================== */

.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.pexels.com/photos/262978/pexels-photo-262978.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    color: var(--light-gold);
    font-size: 1.3rem;
    font-weight: 300;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), var(--gold));
    margin: var(--spacing-sm) auto;
}

/* ========================================
   INTRO SECTION
   ======================================== */

.intro-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ========================================
   FEATURED DISHES SECTION
   ======================================== */

.featured-dishes {
    padding: var(--spacing-xxl) 0;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.dish-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
}

.dish-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-info {
    padding: var(--spacing-md);
    text-align: center;
}

.dish-info h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.dish-price {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 700;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img{
    width: 80px;
    height: 80px;
}

.feature-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   OPENING HOURS SECTION
   ======================================== */

.opening-hours {
    padding: var(--spacing-xxl) 0;
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
}

.hours-table {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--light-gray);
}

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

.hours-row:hover {
    background-color: var(--light-gray);
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--primary-red);
    font-weight: 500;
}

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

.our-story,
.mission-section {
    padding: var(--spacing-xxl) 0;
}

.story-content,
.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text,
.mission-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-text p,
.mission-text p {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.story-image img,
.mission-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.mission-section {
    background-color: var(--light-gray);
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--text-dark);
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    padding: var(--spacing-xxl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background-color: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img{
    width: 80px;
    height: 80px;
}


.value-card h3 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary-red);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.menu-section {
    padding: var(--spacing-xxl) 0;
}

.menu-category {
    margin-bottom: var(--spacing-xxl);
}

.category-header h2 {
    color: var(--primary-red);
    font-size: 2.2rem;
    margin-bottom: var(--spacing-sm);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.menu-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.menu-item-details {
    padding: var(--spacing-md);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.menu-item-header h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    flex: 1;
}

.menu-item-price {
    color: var(--primary-red);
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: var(--spacing-sm);
}

.menu-item-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.reservation-section {
    padding: var(--spacing-xxl) 0;
}

.reservation-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.reservation-info {
    background-color: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: 12px;
}

.reservation-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    color: var(--text-dark);
}

.info-box {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--primary-red);
}

.info-box h3 {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: var(--spacing-xs) 0;
    color: var(--text-dark);
}

.phone-number {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Form Styles */
.reservation-form-container,
.contact-form-container {
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reservation-form h2,
.contact-form-container h2 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

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

.contact-section {
    padding: var(--spacing-xxl) 0;
}

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

.contact-info {
    background-color: var(--light-gray);
    padding: var(--spacing-xl);
    border-radius: 12px;
}

.contact-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.contact-details {
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.contact-item img{
    width: 40px;
    height: 40px;
    margin-right: var(--spacing-md);
}

.contact-icon {
    font-size: 2rem;
    margin-right: var(--spacing-md);
}

.contact-text h3 {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--text-dark);
    margin: 0;
}

.contact-text a {
    color: var(--primary-red);
    text-decoration: underline;
}

.social-media-section {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.social-media-section h3 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
}

.social-icons-large {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--light-gray);
    border-radius: 6px;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.5rem;
}

.social-name {
    font-weight: 500;
}
.social-icons a img{
    width: 50px;
}

/* Map Section */
.map-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
}

.map-container {
    margin-top: var(--spacing-lg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

.gallery-section {
    padding: var(--spacing-xxl) 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.filter-btn {
    padding: 12px 24px;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 300px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--gold);
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--gold);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--white);
    padding: 10px 0;
    height: 50px;
}

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

.blog-section {
    padding: var(--spacing-xxl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
}

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

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background-color: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-title a {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-red);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.blog-read-more {
    color: var(--primary-red);
    font-weight: 600;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--dark-red);
}

/* ========================================
   BLOG POST TEMPLATE STYLES
   ======================================== */

.blog-post-hero {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}

.blog-post-content {
    padding: var(--spacing-xxl) 0;
}

.blog-post-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.blog-post-category {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.blog-post-title {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: var(--spacing-md);
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    color: var(--text-light);
    font-size: 1rem;
}

.blog-post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-body .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.blog-post-body h2 {
    color: var(--primary-red);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.blog-post-body h3 {
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.blog-post-body ul {
    list-style: disc;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.blog-post-body li {
    margin-bottom: var(--spacing-sm);
}

/* Comments Section */
.blog-comments {
    margin-top: var(--spacing-xxl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--light-gray);
}

.blog-comments h3 {
    color: var(--primary-red);
    margin-bottom: var(--spacing-lg);
}

.comment {
    background-color: var(--light-gray);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.comment-author {
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 4px;
}

.comment-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.comment-text {
    color: var(--text-dark);
    line-height: 1.7;
}

.back-to-blog {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--black);
    color: var(--white);
    padding: var(--spacing-xxl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    font-size: 1.5rem;
}

.social-icons a {
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--dark-gray);
    color: var(--light-gray);
}

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

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-md) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

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

    .dishes-grid,
    .menu-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .story-content,
    .mission-content {
        grid-template-columns: 1fr;
    }

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

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

    /* Blog Post */
    .blog-post-title {
        font-size: 2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn-glow {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .float-item {
        font-size: 2.5rem;
    }

    .blog-post-hero {
        height: 300px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: var(--spacing-sm);
}

.mt-2 {
    margin-top: var(--spacing-md);
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}
