/* 
 * Paella Party NJ - Main Stylesheet
 * Based on the architecture plan
 */

/* ===== CSS Variables for Colors and Typography ===== */
:root {
  /* Primary Colors */
  --saffron-yellow: #F5B700; /* Representing the key paella ingredient */
  --terracotta-red: #C64600; /* Reminiscent of Spanish clay cookware */
  --olive-green: #3A5311;    /* Representing Mediterranean ingredients */
  
  /* Secondary Colors */
  --navy-blue: #003459;      /* Representing the Mediterranean Sea */
  --cream: #F5F5DC;          /* For background and negative space */
  --charcoal: #333333;       /* For text and contrast */
  
  /* Utility Colors */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #CCCCCC;
  --dark-gray: #666666;
  
  /* Font Families */
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Open Sans', sans-serif;
  --accent-font: 'Courgette', cursive;
  
  /* Font Sizes */
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --h3-size: 2rem;
  --h4-size: 1.5rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  color: var(--navy-blue);
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

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

a {
  color: var(--terracotta-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--saffron-yellow);
}

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

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--saffron-yellow);
  margin: var(--spacing-xs) auto 0;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: flex-start; /* Align items to the start to prevent stretching */
}

.col {
  padding: 0 15px;
  flex: 1;
}

/* For different column sizes */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Offset classes */
.offset-1 { margin-left: 8.333333%; }
.offset-2 { margin-left: 16.666667%; }
.offset-3 { margin-left: 25%; }
.offset-4 { margin-left: 33.333333%; }
.offset-5 { margin-left: 41.666667%; }
.offset-6 { margin-left: 50%; }
.offset-7 { margin-left: 58.333333%; }
.offset-8 { margin-left: 66.666667%; }
.offset-9 { margin-left: 75%; }
.offset-10 { margin-left: 83.333333%; }
.offset-11 { margin-left: 91.666667%; }

/* Responsive offsets */
@media (max-width: 767px) {
  .offset-md-0 { margin-left: 0; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

/* ===== Header & Navigation ===== */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: var(--spacing-xs);
}

.logo-text {
  font-family: var(--accent-font);
  font-size: 1.8rem;
  color: var(--terracotta-red);
}

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

.nav-item {
  margin-left: var(--spacing-md);
}

.nav-link {
  font-weight: 600;
  color: var(--navy-blue);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--saffron-yellow);
  transition: width var(--transition-medium);
}

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

.hamburger {
  display: none;
  cursor: pointer;
}

.book-now-btn {
  background-color: var(--terracotta-red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.book-now-btn:hover {
  background-color: var(--saffron-yellow);
  color: var(--charcoal);
}

/* ===== Hero Section ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 70px; /* To account for fixed header */
}

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

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-md);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--spacing-md);
}

.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-section .section-title,
.cta-section .cta-title {
  color: var(--white);
  text-align: left;
  margin-bottom: var(--spacing-sm);
}

.cta-section p,
.cta-section .cta-text {
  color: var(--white);
  text-align: left;
}

.cta-section .btn {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--navy-blue);
  border-radius: var(--radius-sm);
  padding: 12px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.cta-section .btn:hover {
  background-color: var(--saffron-yellow);
  color: var(--charcoal);
}

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

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  font-family: var(--accent-font);
}

.hero-btn {
  display: inline-block;
  background-color: var(--saffron-yellow);
  color: var(--charcoal);
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
  margin: 0 10px;
}

.hero-btn:hover {
  background-color: var(--terracotta-red);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-btn.outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.hero-btn.outline:hover {
  background-color: var(--white);
  color: var(--navy-blue);
}

/* ===== About Section ===== */
.about-section {
  background-color: var(--white);
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chef-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.menu-intro-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.about-title {
  color: var(--terracotta-red);
}

.chef-name {
  font-family: var(--accent-font);
  color: var(--olive-green);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.values-list {
  list-style: none;
  margin-top: var(--spacing-md);
}

.values-item {
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
}

.values-item i {
  color: var(--saffron-yellow);
  margin-right: var(--spacing-xs);
  font-size: 1.2rem;
}

/* ===== Menu Section ===== */
.menu-section {
  background-color: var(--cream);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.menu-tab {
  padding: 10px 20px;
  background-color: var(--light-gray);
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.menu-tab.active,
.menu-tab:hover {
  background-color: var(--saffron-yellow);
  color: var(--charcoal);
}

.menu-content {
  display: none;
}

.menu-content.active {
  display: block;
}

.menu-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium);
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item-img {
  height: 200px;
  overflow: hidden;
}

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

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

.menu-item-content {
  padding: var(--spacing-sm);
}

.menu-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xs);
}

.menu-item-name {
  font-size: 1.3rem;
  color: var(--navy-blue);
}

.menu-item-price {
  font-weight: 700;
  color: var(--terracotta-red);
}

.menu-item-desc {
  color: var(--dark-gray);
  font-size: var(--small-size);
}

/* To-Go Menu Table Styles */
.menu-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--spacing-sm); /* Further reduced margin above the table */
    margin-bottom: var(--spacing-sm); /* Further reduced margin below the table */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden; /* Ensures rounded corners apply to table content */
}

.menu-table th,
.menu-table td {
    padding: var(--spacing-xs) var(--spacing-sm); /* Further reduced vertical padding */
    border-bottom: 1px solid var(--light-gray);
    color: var(--terracotta-red); /* Explicitly set text color for consistency */
}

.menu-table th {
    background-color: var(--navy-blue);
    color: var(--white);
    font-family: var(--heading-font); /* Use heading font for distinctiveness */
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--body-size); /* Slightly larger font size */
}

.menu-table tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

.menu-table td:first-child {
    font-weight: 600;
    color: var(--navy-blue);
}

.price-cell {
    text-align: center;
    font-weight: 700;
    color: var(--terracotta-red); /* Set price color */
}

.menu-table small {
    font-weight: 400;
    color: var(--white);
}


/* ===== Gallery Section ===== */
.gallery-section {
  background-color: var(--white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.gallery-filter-btn {
  padding: 8px 20px;
  background-color: var(--light-gray);
  border: none;
  cursor: pointer;
  margin: 5px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background-color: var(--saffron-yellow);
  color: var(--charcoal);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  height: 250px;
  cursor: pointer;
  transition: transform var(--transition-medium);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

.gallery-icon {
  color: var(--white);
  font-size: 2rem;
}

.gallery-container {
  padding: var(--spacing-md) 0;
}

.page-banner {
  background-color: #F0F0F0;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
}

/* ===== Services Section ===== */
.services-section {
  background-color: var(--cream);
}

.services-intro-section .row {
  justify-content: center;
}

.service-section .row {
  align-items: flex-start;
}

.service-section .col {
  flex-shrink: 0;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--spacing-md);
  transition: transform var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

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

.service-title {
  color: var(--navy-blue);
  margin-bottom: var(--spacing-xs);
}

.service-desc {
  margin-bottom: var(--spacing-sm);
}

.service-features {
  list-style: none;
  margin-bottom: var(--spacing-sm);
}

.service-feature {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.service-feature i {
  color: var(--saffron-yellow);
  margin-right: 10px;
}

.service-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--navy-blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.service-link:hover {
  background-color: var(--terracotta-red);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background-color: var(--white);
  text-align: center;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

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

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-family: var(--accent-font);
  font-size: 3rem;
  color: var(--saffron-yellow);
  position: absolute;
  opacity: 0.3;
}

.testimonial-text::before {
  top: -20px;
  left: -15px;
}

.testimonial-text::after {
  bottom: -40px;
  right: -15px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--navy-blue);
}

.testimonial-role {
  font-size: var(--small-size);
  color: var(--dark-gray);
}

/* ===== Contact Section ===== */
.contact-section {
  background-color: var(--cream);
}

.contact-info {
  margin-bottom: var(--spacing-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.contact-icon {
  color: var(--terracotta-red);
  font-size: 1.5rem;
  margin-right: var(--spacing-sm);
}

.contact-text h4 {
  margin-bottom: 5px;
}

.contact-form {
  background-color: var(--white);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-family: var(--body-font);
  font-size: var(--body-size);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--saffron-yellow);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--terracotta-red);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.submit-btn:hover {
  background-color: var(--saffron-yellow);
  color: var(--charcoal);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  height: 60px;
  margin-bottom: var(--spacing-xs);
}

.footer-logo-text {
  font-family: var(--accent-font);
  font-size: 1.8rem;
  color: var(--saffron-yellow);
}

.footer-desc {
  margin-bottom: var(--spacing-md);
  color: var(--medium-gray);
}

.footer-title {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

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

.footer-link {
  margin-bottom: 10px;
}

.footer-link a {
  color: var(--medium-gray);
  transition: color var(--transition-fast);
}

.footer-link a:hover {
  color: var(--saffron-yellow);
}

.social-links {
  display: flex;
  margin-top: var(--spacing-sm);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: background-color var(--transition-fast);
}

.social-link:hover {
  background-color: var(--saffron-yellow);
}

.social-link i {
  color: var(--white);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-sm);
  margin-top: var(--spacing-lg);
  text-align: center;
  color: var(--medium-gray);
  font-size: var(--small-size);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1023px) {
  :root {
    --h1-size: 3rem;
    --h2-size: 2.2rem;
    --h3-size: 1.8rem;
    --h4-size: 1.3rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --h4-size: 1.2rem;
    --body-size: 0.95rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left var(--transition-medium);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: var(--spacing-sm) 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  :root {
    --h1-size: 2.2rem;
    --h2-size: 1.8rem;
    --h3-size: 1.3rem;
    --h4-size: 1.1rem;
    --body-size: 0.9rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* Event Packages Section */
#event-packages {
    padding: 60px 0;
    background-color: #f8f8f8; /* Light background for contrast */
}

#event-packages h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

#event-packages .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.package-category {
    margin-bottom: 40px;
}

.package-category h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.package-tier {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.package-tier:hover {
    transform: translateY(-5px);
}

.package-tier h4 {
    color: #c0392b; /* A reddish color, adjust to match existing theme */
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.package-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-tier ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
}

.package-tier ul li:last-child {
    border-bottom: none;
}

.package-promo {
    border: 2px solid var(--terracotta-red);
    background: linear-gradient(135deg, rgba(255, 237, 204, 0.95), rgba(255, 223, 186, 0.9));
    box-shadow: 0 15px 30px rgba(198, 70, 0, 0.18);
    padding: 30px;
}

.special-promo-row {
    margin-top: 3rem;
}

.promo-badge {
    display: inline-block;
    background-color: var(--terracotta-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.package-promo h4 {
    color: var(--navy-blue);
    margin-top: 0;
}

.package-promo ul li {
    color: var(--charcoal);
    border-bottom: 1px dashed #eee;
    padding: 10px 0;
}

.package-promo ul li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials {
    margin-top: 60px;
    background-color: #eee; /* Slightly darker background for testimonials */
    padding: 40px 20px;
    border-radius: 8px;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Style for individual testimonials (assuming a structure like blockquote or similar) */
.testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    padding: 15px;
    border-left: 4px solid #c0392b; /* Match package tier color */
    max-width: 800px;
    color: #555;
    line-height: 1.6;
}

.testimonials blockquote footer {
    margin-top: 10px;
    text-align: right;
    color: #777;
    font-style: normal;
}

/* Additional Services Section */
.additional-services {
    margin-top: 40px;
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

/* Style for additional services content (adjust based on actual HTML structure) */
.additional-services p,
.additional-services ul {
    color: #666;
    line-height: 1.6;
}

/* Contact Information Section */
.contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #555;
}

/* Style for contact information content (adjust based on actual HTML structure) */
.contact-info p {
    color: #666;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .package-category > div { /* Target package tiers directly within category */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .package-tier {
        margin-bottom: 0; /* Remove bottom margin when using grid gap */
    }
}

@media (max-width: 767px) {
    #event-packages {
        padding: 40px 0;
    }

    #event-packages h2 {
        margin-bottom: 30px;
    }

    .testimonials h3,
    .contact-info h3 {
        margin-bottom: 20px;
    }

    .package-tier {
        padding: 20px;
    }

    .testimonials {
        padding: 30px 15px;
    }
}
/* Wedding Package Inclusions Header Style */
.package-tier h5 {
    font-size: 1.3rem; /* Slightly larger than h5, smaller than h4 */
    color: var(--navy-blue); /* Match heading color */
    margin-bottom: var(--spacing-xs); /* Adjust spacing */
}