
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --nav-bg:    #374151;
  --footer-bg: #374151;
  --body-btn:  #4B5563;
  --nav-btn:   #D4AF37;
  --gold:      #C8A96A;
  --gold2:     #D4AF37;
  --white:     #ffffff;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,0.65);
  --img-bg:    #374151;
  --border:    rgba(200,169,106,0.25);
}

html, body {
  height: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  background: #1F2933;
  color: #ffffff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 16px;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  background: var(--footer-bg);
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer span {
   color: var(--gold); 
}


nav {
  background: #374151;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  gap: 0.6rem;
  cursor: pointer;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  border-radius: 50px;
  margin: 10px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--nav-btn);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
}

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

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--nav-btn);
  color: #000000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-btn img {
  width: 60px;
  height: 60px;
}

.social-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.page-header {
  background: #374151;
  padding: 3rem 2rem;
  text-align: center;
}

.page-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3px;
}

.page-header p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-weight: 300;
}


.btn {
  padding: 0.75rem 2rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-order {
  background: var(--gold);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
}

.btn-order:hover {
   background: var(--gold2);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--gold2);
  color: var(--white);
}

.success-msg {
  background: rgba(200,169,106,0.15);
  border: 1px solid rgba(200,169,106,0.4);
  color: var(--gold);
  padding: 1rem;
  text-align: center;
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  height: 460px;
  background: #1F2933;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/home.png") center center / cover no-repeat;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.welcome-section {
  background: #374151;
  color: white;
  padding: 48px 2rem;
  text-align: center;
}

.welcome-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.welcome-section p {
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

.home-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 2rem;
}

.info-card {
  background: var(--img-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.info-card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 48px auto;
  padding: 0 2rem;
}

.service-card {
  background: var(--img-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.service-card .price {
  color: var(--gold2);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}

.service-card ul li:last-child {
   border: none; 
}

.service-card ul li::before {
  content: '—  ';
  color: var(--gold);
}

.equipment-section {
  padding: 2rem 2rem 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.equipment-section h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.equip-card {
  background: var(--img-bg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.equip-img {
  height: 140px;
  background: var(--img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.75;
  border-bottom: 1px solid var(--border);
}

.equip-body {
  padding: 1rem; 
}

.equip-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.equip-body p {
   color: var(--muted); font-size: 0.85rem;
}

.equip-body .price {
  color: var(--gold2);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}


.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #374151;
  border-bottom: 2px solid var(--border);
  padding: 0 2rem;
}

.menu-tab {
  padding: 1rem 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: var(--muted);
  transition: all 0.2s;
  background: none;
}

.menu-tab:hover {
   color: var(--white); 
}

.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu-content {
  display: none;
  padding: 48px 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.menu-item {
  background: var(--img-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s;
}

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

.menu-item-img {
  height: 180px;
  background: var(--img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-item-body {
   padding: 1.2rem; 
}

.menu-item-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.menu-item-body p { 
  color: var(--muted); font-size: 0.85rem; line-height: 1.6;
}


.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 48px auto;
  padding: 0 2rem;
}

.special-card {
  background: var(--img-bg);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.special-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.special-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.special-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.special-time {
  font-size: 0.82rem;
  color: var(--gold2);
  font-weight: 700;
  margin-bottom: 1.2rem;
}


.order-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 2rem;
}

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

.order-item {
  background: var(--img-bg);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.order-item:hover {
  transform: translateY(-3px);
}

.order-item.selected {
   border-color: var(--gold); 
}

.order-img {
  height: 180px;
  background: var(--img-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}

.order-img img {
   width: 100%; height: 100%; object-fit: cover; display: block; 
}

.order-body { 
  padding: 1.2rem; 
}

.order-body h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.order-body p {
  color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; 
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 48px auto;
  padding: 0 2rem;
  align-items: stretch;
  gap: 0;
}

.about-img {
  height: 100%;
  min-height: 340px;
  background: var(--img-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.65;
  border: 1px solid var(--border);
}

.about-text {
  padding: 3rem;
  background: var(--img-bg);
  border: 1px solid var(--border);
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.staff-section {
  padding: 2rem 2rem 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.staff-section h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.staff-card {
  background: var(--img-bg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}

.staff-avatar {
  width: 72px;
  height: 72px;
  background: #1F2933;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border: 2px solid var(--gold);
}

.staff-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.staff-card p {
  color: var(--muted); font-size: 0.85rem;
}


.contact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 700px;
  margin: 48px auto;
  padding: 0 2rem;
}

.contact-form {
  width: 100%;
  max-width: 600px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem; 
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  background: #1F2933;
  outline: none;
  transition: border-color 0.2s;
}



@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }

  .nav-links.open { 
    display: flex;
  }

  .nav-links li {
     list-style: none; 
    }

  .nav-links a {
    padding: 0.85rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .hamburger {
    display: flex;
   }

  .hero-content h1 {
     font-size: 2.2rem;
    }

  .about-grid {
     grid-template-columns: 1fr; padding: 0 1rem; 
    }

  .about-img {
    
    min-height: 220px;
   }

  .menu-tab {
     padding: 0.75rem 0.9rem; font-size: 0.75rem; 
    }
}

@media (max-width: 480px) {
  .hero-content h1 {
     font-size: 1.8rem; letter-spacing: 3px;
     }

  .home-info {
     padding: 2rem 1rem; 
    }
  .services-grid, .equip-grid, .specials-grid, .order-section,
  .staff-section, .contact-grid { padding-left: 1rem; padding-right: 1rem; }
}
