@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-dark: #0f0a0a;
  --bg-dark-accent: #160f0f;
  --bg-light: #faf6f0;
  --primary: #d4af37;
  --primary-hover: #f1c40f;
  --accent: #8b2626;
  --accent-hover: #a83232;
  --text-light: #f5f5f5;
  --text-dark: #2c2525;
  --text-muted-light: #b3a5a5;
  --text-muted-dark: #6e6565;
  --font-title: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(15, 10, 10, 0.75);
  --glass-border: rgba(212, 175, 55, 0.15);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --container-width: 1200px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--primary);
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin: 15px auto 0;
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 50px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: #120c0c;
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
  transform: translateY(-3px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .logo-img {
  height: 42px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--primary);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(15, 10, 10, 0.75), rgba(15, 10, 10, 0.85)), url('assets/hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
}

.hero-tagline {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(22, 15, 15, 0.8);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 320px;
}

.hero-badge i {
  color: var(--primary);
  font-size: 1.5rem;
}

.hero-badge-text p:first-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted-light);
  letter-spacing: 1px;
}

.hero-badge-text p:last-child {
  font-weight: 600;
  font-size: 0.95rem;
}

/* About Section */
.about {
  background-color: var(--bg-dark-accent);
}

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

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: left;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
  margin: 10px 0 0;
}

.about-text p {
  color: var(--text-muted-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  border-left: 2px solid var(--primary);
  padding-left: 15px;
}

.highlight-item h4 {
  font-family: var(--font-title);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.highlight-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--primary);
  color: var(--bg-dark);
  padding: 20px;
  border-radius: 4px;
  box-shadow: var(--card-shadow);
  font-family: var(--font-title);
  text-align: center;
}

.about-image-badge span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

/* Menu Section */
.menu-tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.menu-tab-btn {
  background-color: var(--bg-dark-accent);
  color: var(--text-muted-light);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab-btn:hover {
  border-color: var(--primary);
  color: var(--text-light);
}

.menu-tab-btn.active {
  background-color: var(--primary);
  color: var(--bg-dark);
  border-color: var(--primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  transition: var(--transition);
}

.menu-item {
  background-color: var(--bg-dark-accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.1);
}

.menu-item-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.menu-item-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(139, 38, 38, 0.95);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.menu-item-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.menu-item-title {
  font-size: 1.3rem;
  color: var(--text-light);
}

.menu-item-price {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
}

.menu-item-desc {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.menu-item-tags {
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 0.7rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-muted-light);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.tag-veg {
  background-color: rgba(46, 117, 89, 0.15);
  color: #2ecc71;
}

.tag-gf {
  background-color: rgba(230, 126, 34, 0.15);
  color: #e67e22;
}

/* Call to Action Section (Banner) */
.cta-banner {
  background: linear-gradient(rgba(15, 10, 10, 0.8), rgba(15, 10, 10, 0.85)), url('assets/dessert.jpg') no-repeat center center/cover;
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-banner h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.cta-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 35px;
  color: var(--text-muted-light);
  font-family: var(--font-title);
  font-style: italic;
}

/* Reservation Section */
.reservation {
  background-color: var(--bg-dark);
}

.reservation-wrapper {
  background-color: var(--bg-dark-accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.reservation-form-container {
  padding: 60px;
}

.reservation-form-container h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.reservation-form-container p {
  color: var(--text-muted-light);
  margin-bottom: 35px;
}

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

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

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
}

.form-control {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  border-radius: 4px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Select date picker styling override if supported */
.form-control::-webkit-calendar-picker-indicator {
  filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(350deg);
  cursor: pointer;
}

.reservation-info {
  background: linear-gradient(rgba(139, 38, 38, 0.9), rgba(22, 15, 15, 0.95)), url('assets/interior.jpg') no-repeat center center/cover;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.res-info-block h4 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-title);
}

.res-info-block p {
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 25px;
  font-size: 1rem;
}

.res-info-block p i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
}

.res-testimonial {
  border-left: 2px solid var(--primary);
  padding-left: 20px;
  font-style: italic;
  font-family: var(--font-title);
  font-size: 1.1rem;
}

.res-testimonial-author {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}

/* Success Modal / Banner */
.success-message {
  display: none;
  background: rgba(46, 117, 89, 0.15);
  border: 1px solid #2ecc71;
  color: #2ecc71;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 25px;
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-dark-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 280px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 10, 10, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

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

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

.gallery-overlay h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact & Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-muted-light);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-brand p {
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 25px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background-color: var(--primary);
  margin-top: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-contact-info p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-info p i {
  color: var(--primary);
  margin-top: 4px;
}

.footer-map {
  border-radius: 6px;
  overflow: hidden;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 380px;
  }
  .reservation-wrapper {
    grid-template-columns: 1fr;
  }
  .reservation-info {
    order: -1;
    padding: 40px;
  }
  .reservation-form-container {
    padding: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-accent);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .hero-badge {
    display: none;
  }
}
