/*
Theme Name: Neer Elite Restaurant & Cafe
*/

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #000000;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

.site-header {
  background: #000000;
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: #d4af37; /* golden color */
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  user-select: none;
  margin: 0;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-weight: 700;
  color: #f0d87d;
  margin-top: 0;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1em;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

p {
  line-height: 1.7;
  margin-bottom: 1em;
  color: #ddd;
}

.btn {
  display: inline-block;
  padding: 0.75em 2em;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(90deg, #d4af37 60%, #bfa233 100%);
  color: #000;
  box-shadow: 0 2px 8px rgba(212,175,55,0.4);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #bfa233 60%, #d4af37 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(212,175,55,0.6);
}
.btn-secondary {
  background: #222;
  color: #d4af37;
  border: 2px solid #d4af37;
}
.btn-secondary:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-2px) scale(1.04);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 2rem 0;
}
.hero-content {
  flex: 1 1 350px;
}
.hero-image {
  flex: 1 1 350px;
  min-width: 300px;
}
.hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(212,175,55,0.5);
  object-fit: cover;
  max-height: 400px;
}

.about {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}
.about-image {
  flex: 1 1 350px;
  min-width: 300px;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 350px;
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
}
.about-content {
  flex: 2 1 400px;
  color: #ddd;
}

.menu-highlights {
  padding: 2rem 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.menu-item {
  background: #111;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.15);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  color: #eee;
}
.menu-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1em;
  object-fit: cover;
  max-height: 160px;
  box-shadow: 0 0 10px rgba(212,175,55,0.3);
}
.menu-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}
.menu-item .price {
  margin-top: auto;
  font-weight: 700;
  color: #d4af37;
  font-size: 1.1em;
}

.gallery {
  padding: 2rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 180px;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 8px rgba(212,175,55,0.2);
}
.gallery-grid img:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 6px 18px rgba(212,175,55,0.5);
}

.specials {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin: 2rem 0;
  color: #d4af37;
}
.specials ul {
  list-style: disc inside;
  padding-left: 1em;
}
.specials li {
  margin-bottom: 0.7em;
  font-size: 1.08em;
}

.reservation {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2rem 0;
  color: #ddd;
}
.reservation-content {
  flex: 2 1 350px;
}
.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5em;
}
.reservation-form label {
  grid-column: span 2;
  font-weight: 600;
  margin-bottom: 0.2em;
  color: #d4af37;
}
.reservation-form input {
  padding: 0.6em;
  border-radius: 6px;
  border: 1px solid #d4af37;
  font-size: 1em;
  background: #222;
  color: #eee;
  margin-bottom: 0.5em;
}
.reservation-form input::placeholder {
  color: #bfa233;
}
.reservation-form button {
  grid-column: span 2;
  margin-top: 0.5em;
}
.availability-map {
  margin-top: 1.5em;
  color: #bbb;
}
.map-placeholder {
  background: #111;
  border: 1.5px dashed #d4af37;
  border-radius: 10px;
  padding: 1.5em;
  text-align: center;
  color: #d4af37;
  font-style: italic;
}
.reservation-image {
  flex: 1 1 300px;
  min-width: 220px;
}
.reservation-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 320px;
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

.testimonials {
  padding: 2rem 0;
  color: #ddd;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: #111;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(212,175,55,0.15);
  padding: 1.2rem 1.5rem;
  font-size: 1.08em;
  transition: transform 0.18s, box-shadow 0.18s;
  color: #eee;
}
.testimonial:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}
.testimonial .author {
  display: block;
  margin-top: 1em;
  color: #d4af37;
  font-weight: 600;
}

.stats {
  background: #1a1a1a;
  color: #d4af37;
  border-radius: 16px;
  margin: 2rem 0;
  padding: 2rem 1.5rem;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: center;
}
.stat {
  flex: 1 1 120px;
  text-align: center;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
}
.stat-label {
  font-size: 1.1rem;
  color: #d4af37;
}

.contact {
  padding: 2rem 0 3rem 0;
  color: #ddd;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 1.5em;
}
.contact-details > div {
  min-width: 180px;
}
.contact a {
  color: #d4af37;
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .hero, .about, .reservation {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stats-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
  .contact-details {
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .menu-grid, .testimonials-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .reservation-form {
    grid-template-columns: 1fr;
  }
}
