/* ========================================
   THALIRAAGA - PRODUCTION READY CSS
   Version: 3.0 - Optimized & Clean
   ======================================== */

:root {
  --primary: #8B0000;
  --gold: #DAA520;
  --green: #2E8B57;
  --dark: #1a1a1a;
  --light: #ffffff;
  --cream: #fff8e7;
  --text: #2d2d2d;
  --radius: 14px;
  --transition: 0.3s ease;
}

/* ===== GLOBAL RESETS ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.85;
  font-size: 1.15rem;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  background: var(--primary);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  width: 100%;
}

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

.logo {
  font-size: 2.8rem;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light);
  padding: 8px 16px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 80%;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--gold);
  padding: 8px;
  z-index: 1001;
  position: relative;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.4), rgba(46, 139, 87, 0.4)),
              url('./public/images/buffet.jpg') center/cover no-repeat;
  height: 95vh;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 25px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(139, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 960px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
  font-size: 5.2rem;
  font-weight: 900;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.hero-subtext {
  font-size: 1.8rem;
  margin-top: 20px;
  font-weight: 400;
  opacity: 0.95;
  color: var(--cream);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-note {
  margin-top: 50px;
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-btns {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--gold) 0%, #c69500 100%);
  color: var(--dark) !important;
  border: none;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-width: 220px;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c69500 0%, var(--gold) 100%);
  z-index: -1;
  transition: transform 0.5s ease;
  transform: translateX(-100%);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.4);
  color: var(--dark) !important;
}

.btn-outline {
  background: transparent;
  color: var(--cream) !important;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.btn-outline::before {
  background: var(--gold);
}

.btn-outline:hover {
  color: var(--dark) !important;
  border-color: transparent;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 30px;
  max-width: 1280px;
  margin: auto;
  position: relative;
}

.section-title {
  font-size: 3.5rem;
  text-align: center;
  width: fit-content;
  margin: 0 auto 80px auto;
  padding-bottom: 20px;
  border-bottom: 5px solid var(--gold);
  font-weight: 900;
  color: var(--primary);
  position: relative;
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
}

.intro-text {
  font-size: 1.3rem;
  max-width: 780px;
  margin: 0 auto 30px;
  color: #444;
  font-weight: 400;
}

/* ===== FEATURES LIST ===== */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin: 60px 0;
}

.feature {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--gold));
}

.feature:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--gold);
}

.feature img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 25px;
  transition: transform 0.5s ease;
}

.feature:hover img {
  transform: scale(1.05);
}

.feature h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 800;
  font-family: "Playfair Display", serif;
}

.feature p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

/* ===== MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}

.menu-item {
  background: white;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--gold));
}

.menu-item:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.menu-item.highlight {
  background: linear-gradient(135deg, #fff8e7, #fff);
  border: 3px solid var(--gold);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  border-bottom: 2px dashed #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}

.menu-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  background: linear-gradient(135deg, #f0fff8, #e8f8f0);
  padding: 8px 22px;
  border-radius: 30px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
}

.menu-desc {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
}

.tagline {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 15px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #fffaf0, #fff8e7);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #cfcfcf;
  padding: 70px 0 30px;
  margin-top: 90px;
  font-size: 1rem;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 55px;
}

.footer-brand h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #bbb;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 18px;
  font-weight: 800;
}

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

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1.05rem;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #bbb;
}

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

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  transition: var(--transition);
}

.social-icons a:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
  color: var(--cream);
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  margin-top: 14px;
  font-size: 1rem;
}

.footer-newsletter button {
  width: 100%;
  background: var(--primary);
  color: var(--cream);
  padding: 13px;
  border-radius: 10px;
  border: none;
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-bottom {
  text-align: center;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: #777;
}

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

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .hero-content h1 { font-size: 4.2rem; }
  .hero-subtext { font-size: 1.6rem; }
  .section-title { font-size: 3rem; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
}

@media (max-width: 768px) {
  /* Header */
  .site-header { padding: 15px 0; }
  .header-container { padding: 0 20px; }
  .logo { font-size: 2.2rem; z-index: 1002; }
  
  /* Mobile Navigation */
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.5s ease;
    z-index: 1000;
  }
  
  .nav-wrapper.active { left: 0; }
  
  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 25px;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .nav-links li {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .nav-links a {
    color: #ffffff !important;
    font-size: 1.6rem !important;
    padding: 15px 40px;
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    min-width: 260px;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.18);
    color: var(--gold) !important;
    transform: scale(1.05);
  }
  
  .hamburger { display: block; }
  .hamburger.active { color: var(--light); }
  body.menu-open { overflow: hidden; }
  
  /* Hero */
  .hero {
    height: auto;
    min-height: 60vh;
    padding: 80px 15px 50px;
  }
  
  .hero-content {
    width: 100%;
    padding: 0 10px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-subtext {
    font-size: 1.2rem !important;
    padding: 0 10px;
    margin-bottom: 25px;
  }
  
  .hero-note {
    font-size: 1rem !important;
    padding: 0 10px;
    margin-bottom: 30px;
  }
  
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
  }
  
  /* Buttons */
  .btn,
  .cta-btn,
  .form-submit,
  .quick-btn {
    max-width: 320px;
    width: 100%;
    padding: 14px 20px !important;
    font-size: 1rem !important;
  }
  
  /* Sections */
  .section {
    padding: 60px 15px !important;
  }
  
  .section-title {
    font-size: 2rem !important;
    padding: 0 10px;
    margin-bottom: 40px;
  }
  
  .intro-text {
    font-size: 1.1rem !important;
    padding: 0 10px;
  }
  
  /* Grids */
  .menu-grid,
  .features-list,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }
  
  .menu-item,
  .feature,
  .contact-card {
    padding: 25px 20px !important;
    width: 100%;
  }
  
  .menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .menu-price {
    font-size: 1.6rem !important;
    padding: 8px 18px !important;
    min-width: auto !important;
    align-self: flex-start;
  }
  
  /* Footer */
  .site-footer { padding: 50px 15px 20px !important; }
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding: 0;
  }
  
  .social-icons a {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.3rem !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem !important; }
  .logo { font-size: 1.8rem !important; }
  .section-title { font-size: 1.8rem !important; }
  .menu-price { font-size: 1.5rem !important; }
  .btn { font-size: 0.95rem !important; padding: 12px 18px !important; }
}

/* ===== END OF STYLESHEET ===== */