/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

:root {
  --primary-gold: #D4AF37;
  --dark-gold: #B8941F;
  --charcoal: #1a1a1a;
  --soft-black: #2a2a2a;
  --cream: #F5F5DC;
  --off-white: #FAFAF8;
  --accent-burgundy: #800020;
  --light-gray: #E8E8E8;
}

body {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: var(--soft-black);
  scroll-behavior: smooth;
  background: var(--off-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

/******************************************
/* HEADER STYLES
/*******************************************/

.main-header {
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.95));
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  height: 90px;
}

.logo {
  text-align: left;
}

.logo-text {
  color: var(--primary-gold);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 2px;
  font-family: 'Cormorant Garamond', serif;
}

.logo-subtitle {
  color: var(--cream);
  font-size: 0.75rem;
  margin: -5px 0 0 2px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-gold);
}

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

.reserve-btn {
  background: var(--primary-gold);
  color: var(--charcoal);
  padding: 0.8rem 2rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-gold);
}

.reserve-btn:hover {
  background: transparent;
  color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.8)),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="0.5" fill="rgba(212,175,55,0.08)"/><circle cx="50" cy="50" r="0.3" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  padding: 3rem;
  position: relative;
  z-index: 3;
  animation: fadeInUp 1.2s ease-out;
}

.hero-welcome {
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
}

.highlight {
  color: var(--primary-gold);
  font-style: italic;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.cta-button {
  padding: 1rem 2.5rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid;
}

.cta-button.primary {
  background: var(--primary-gold);
  color: var(--charcoal);
  border-color: var(--primary-gold);
}

.cta-button.primary:hover {
  background: var(--dark-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.cta-button.secondary:hover {
  background: var(--cream);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.hero-awards {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.award-icon {
  font-size: 1.8rem;
  filter: grayscale(100%) brightness(2);
}

.award-text {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--cream);
}

/******************************************
/* ABOUT SECTION
/*******************************************/

.about-section {
  background: var(--off-white);
  padding: 8rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--soft-black) 100%);
  position: relative;
  overflow: hidden;
}

.chef-image {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(42, 42, 42, 0.8) 100%),
              url('data:image/svg+xml,<svg width="600" height="600" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="chefBg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231a1a1a;stop-opacity:1" /><stop offset="100%" style="stop-color:%232a2a2a;stop-opacity:1" /></linearGradient><pattern id="texture" x="0" y="0" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="rgba(212,175,55,0.02)"/><circle cx="2" cy="2" r="0.5" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="600" height="600" fill="url(%23chefBg)"/><rect width="600" height="600" fill="url(%23texture)"/><g transform="translate(300, 250)"><ellipse cx="0" cy="0" rx="120" ry="140" fill="%232a2a2a" opacity="0.6"/><ellipse cx="0" cy="-20" rx="70" ry="70" fill="%23333"/><rect x="-80" y="50" width="160" height="120" fill="%23f5f5f5" rx="5"/><rect x="-70" y="60" width="140" height="100" fill="%23fff" rx="3"/><polygon points="-40,170 40,170 50,190 -50,190" fill="%23444"/><rect x="-60" y="185" width="120" height="30" fill="%23333"/><circle cx="-25" cy="-15" r="3" fill="%23D4AF37"/><circle cx="25" cy="-15" r="3" fill="%23D4AF37"/><path d="M -20,-5 Q 0,5 20,-5" stroke="%23D4AF37" stroke-width="2" fill="none"/><rect x="-20" y="75" width="40" height="8" fill="%23D4AF37" rx="2"/><rect x="-15" y="90" width="30" height="6" fill="%23D4AF37" rx="1"/><text x="0" y="260" font-family="Cormorant Garamond, serif" font-size="24" fill="%23D4AF37" text-anchor="middle" font-weight="600">CHEF</text></g><circle cx="480" cy="120" r="40" fill="none" stroke="%23D4AF37" stroke-width="2" opacity="0.3"/><circle cx="480" cy="120" r="30" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.2"/><circle cx="120" cy="480" r="35" fill="none" stroke="%23D4AF37" stroke-width="2" opacity="0.3"/><circle cx="120" cy="480" r="25" fill="none" stroke="%23D4AF37" stroke-width="1" opacity="0.2"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.image-overlay {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
}

.image-text {
  color: var(--primary-gold);
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--charcoal);
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', serif;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-features {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-text h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
}

.feature-text p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/******************************************
/* MENU SECTION
/*******************************************/

.menu-section {
  background: var(--charcoal);
  padding: 8rem 0;
  color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-title {
  color: var(--cream);
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(245, 245, 220, 0.7);
  margin-top: 1rem;
  font-weight: 300;
}

.menu-categories {
  margin-bottom: 4rem;
}

.category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-link {
  background: transparent;
  color: var(--cream);
  padding: 0.8rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
}

.category-link:hover,
.category-link.active {
  background: var(--primary-gold);
  color: var(--charcoal);
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.menu-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-gold);
}

.item-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.appetizer-1 {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9)),
              url('data:image/svg+xml,<svg width="300" height="250" xmlns="http://www.w3.org/2000/svg"><rect width="300" height="250" fill="%231a1a1a"/><text x="150" y="125" font-family="serif" font-size="80" fill="%23D4AF37" text-anchor="middle" dominant-baseline="middle">🍽️</text></svg>');
  background-size: cover;
  background-position: center;
}

.appetizer-2 {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9)),
              url('data:image/svg+xml,<svg width="300" height="250" xmlns="http://www.w3.org/2000/svg"><rect width="300" height="250" fill="%231a1a1a"/><text x="150" y="125" font-family="serif" font-size="80" fill="%23D4AF37" text-anchor="middle" dominant-baseline="middle">🦞</text></svg>');
  background-size: cover;
  background-position: center;
}

.appetizer-3 {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9)),
              url('data:image/svg+xml,<svg width="300" height="250" xmlns="http://www.w3.org/2000/svg"><rect width="300" height="250" fill="%231a1a1a"/><text x="150" y="125" font-family="serif" font-size="80" fill="%23D4AF37" text-anchor="middle" dominant-baseline="middle">🍄</text></svg>');
  background-size: cover;
  background-position: center;
}

.appetizer-4 {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9)),
              url('data:image/svg+xml,<svg width="300" height="250" xmlns="http://www.w3.org/2000/svg"><rect width="300" height="250" fill="%231a1a1a"/><text x="150" y="125" font-family="serif" font-size="80" fill="%23D4AF37" text-anchor="middle" dominant-baseline="middle">🦪</text></svg>');
  background-size: cover;
  background-position: center;
}

.item-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--charcoal);
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.item-details {
  padding: 2rem;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
  padding-bottom: 1rem;
}

.item-name {
  font-size: 1.5rem;
  margin: 0;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.item-price {
  font-size: 1.3rem;
  color: var(--primary-gold);
  font-weight: 600;
  margin-left: 1rem;
}

.item-description {
  font-size: 0.95rem;
  color: rgba(245, 245, 220, 0.7);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/******************************************
/* BOOKING SECTION
/*******************************************/

.booking-section {
  background: var(--off-white);
  padding: 8rem 0;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.booking-info-card {
  background: white;
  padding: 3rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--primary-gold);
}

.info-section {
  margin-bottom: 3rem;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-title {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-value:hover {
  color: var(--primary-gold);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.hours-row.closed {
  opacity: 0.5;
}

.day {
  font-weight: 500;
  color: var(--charcoal);
}

.time {
  color: #666;
}

.booking-form-card {
  background: white;
  padding: 3rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--primary-gold);
}

#bookingForm label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--light-gray);
  background: white;
  color: var(--charcoal);
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 2rem;
}

.form-actions .cta-button {
  width: 100%;
  padding: 1.2rem;
  cursor: pointer;
  border: none;
}

.booking-message {
  margin-top: 1.5rem;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  border-radius: 0;
}

.booking-message.error {
  background: #ffe6e6;
  color: #cc0000;
  border: 1px solid #cc0000;
}

.booking-message.success {
  background: #e6f7e6;
  color: #006600;
  border: 1px solid #006600;
}

/******************************************
/* TESTIMONIALS SECTION
/*******************************************/

.testimonial-section {
  background: var(--charcoal);
  padding: 8rem 0;
  color: var(--cream);
}

.testimonial-section .section-title {
  color: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.quote-icon {
  font-size: 4rem;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 300;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.customer-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.customer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.3rem;
  display: block;
}

.rating {
  color: var(--primary-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

/******************************************
/* PRIVATE DINING SECTION
/*******************************************/

.private-dining-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--soft-black) 100%);
  padding: 8rem 0;
  color: var(--cream);
}

.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-title-white {
  font-size: 3rem;
  font-weight: 500;
  color: var(--cream);
  margin: 1rem 0 2rem 0;
  line-height: 1.3;
  font-family: 'Cormorant Garamond', serif;
}

.private-description {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245, 245, 220, 0.8);
  margin-bottom: 2rem;
  font-weight: 300;
}

.private-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 3rem 0;
}

.private-features li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--cream);
}

.private-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.private-room {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9)),
              url('data:image/svg+xml,<svg width="600" height="600" xmlns="http://www.w3.org/2000/svg"><rect width="600" height="600" fill="%231a1a1a"/><text x="300" y="300" font-family="serif" font-size="120" fill="%23D4AF37" text-anchor="middle" dominant-baseline="middle">🍷</text></svg>');
  background-size: cover;
  background-position: center;
}

/******************************************
/* FOOTER
/*******************************************/

.main-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-title {
  font-size: 2rem;
  color: var(--primary-gold);
  margin: 0 0 1rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.footer-heading {
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0 0 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 245, 220, 0.7);
  margin: 0.5rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(245, 245, 220, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: rgba(245, 245, 220, 0.5);
  font-size: 0.9rem;
}

/******************************************
/* ANIMATIONS
/*******************************************/

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 1024px) {
  .header-container {
    padding: 1rem 2rem;
  }

  .nav-list {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .about-grid,
  .private-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .booking-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    height: auto;
    padding: 1rem;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .reserve-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
  }

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

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

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-title-white {
    font-size: 2.2rem;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .container {
    padding: 0 1.5rem;
  }
}

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

  .logo-text {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
