/* ================================
   GASthaus Germania - Template 2
   Elegant German Restaurant Theme
   Author: ChatGPT
================================ */

/* ====== FONT & RESET ====== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Merriweather:wght@400;500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Merriweather', serif;
  background-color: #f8f6f0;
  color: #1b1b1b;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #8B0000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid #d4af37;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo h1 {
  font-size: 1.6rem;
  color: #8B0000;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #8B0000;
  border-bottom: 2px solid #d4af37;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
}

/* ====== HERO ====== */
.hero {
  background: url('../images/restaurant-hero.jpg') center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}

.cta-btn {
  background: #8B0000;
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #d4af37;
  color: #1b1b1b;
}

/* ====== ABOUT ====== */
.about {
  padding: 6rem 0;
  background: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin: 1rem 0;
}

.about-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.highlight {
  text-align: center;
}

.highlight-icon {
  font-size: 2rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ====== SPECIALTIES ====== */
.specialties {
  background: #f8f6f0;
  padding: 6rem 0;
  text-align: center;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.specialty-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.specialty-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.specialty-info {
  padding: 1rem;
}

.specialty-info h3 {
  color: #8B0000;
  margin-bottom: 0.5rem;
}

.price {
  color: #d4af37;
  font-weight: 700;
}

/* ====== MENU PREVIEW ====== */
.menu-preview {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.menu-cat {
  background: #f8f6f0;
  padding: 2rem;
  border-radius: 10px;
  transition: 0.3s;
}

.menu-cat:hover {
  background: #d4af37;
  color: #1b1b1b;
}

.menu-cat h3 {
  margin: 0.5rem 0;
}

.menu-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-link,
.btn-pdf {
  background: #8B0000;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-link:hover,
.btn-pdf:hover {
  background: #d4af37;
  color: #1b1b1b;
}

/* ====== RESERVATIONS ====== */
.reservations {
  padding: 6rem 0;
  background: #f8f6f0;
}

.reservation-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.reservation-form, .reservation-info {
  flex: 1;
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.btn-submit {
  background: #8B0000;
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: #d4af37;
  color: #1b1b1b;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  background: #fff;
  padding: 6rem 0;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #f8f6f0;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimonial-card h4 {
  margin-top: 1rem;
  color: #8B0000;
}

/* ====== CONTACT ====== */
.contact {
  padding: 6rem 0;
  background: #f8f6f0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-form, .contact-map {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 0.6rem 0;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #8B0000;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #d4af37;
  color: #1b1b1b;
}

/* ====== FOOTER ====== */
.footer {
  background: #1b1b1b;
  color: #f8f6f0;
  padding: 4rem 0 1.5rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: #f8f6f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #d4af37;
}

.social-links a {
  margin: 0 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .about-content,
  .reservation-content,
  .contact-content {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
