
/* ====== GENERAL RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, nav a {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

body {
  background: #ffffff;
  font-family: 'Helvetica', sans-serif;
  color: #111;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.top-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 8px solid #d40000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  width: 250px;
  height: auto;
  object-fit: contain;
  padding-bottom: 5px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 2rem;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #d40000;
}
.stars {
  max-width: 100%;   /* prevents overflow */
  height: auto;      /* keeps proportions */
  display: block;
  margin: 20px auto;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 45vh;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 8px solid #d40000;
}

.hero h2 {
  /* background: rgba(0,0,0,0.65); */
  color: white;
  padding: 20px 40px;
  font-size: 3rem;
  /* border-radius: 6px; */
  letter-spacing: 3px;
  text-shadow: 0 0 10px black;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
}

/* ===== SECTIONS ===== */
.section {
  text-align: center;
  margin-bottom: 60px;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.divider {
  width: 100px;
  height: 5px;
  background: #d40000;
  margin: 15px auto 30px;
  border-radius: 3px;
}

.section p {
  font-size: 1.3rem;
  width: 75%;
  margin: auto;
  line-height: 1.6;
}

/* ===== MENU IMAGE ===== */
.menu-image {
  width: 100%;        /* always fill available width */
  max-width: 100%;    /* prevent overflow */
  height: auto;       /* keep aspect ratio */
  display: block;
  margin: 20px auto;
}

/* ===== CONTACT ===== */
.contact-box {
  background: #f2f2f2;
  padding: 40px;
  border-radius: 10px;
  border-left: 8px solid #d40000;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 40px;
}

.left-info-stack {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #e1e0d7;
  padding: 25px;
  border-radius: 10px;
  border-left: 6px solid #d40000;
  border-right: 6px solid #d40000;
  box-shadow: 0 0 20px rgba(0,0,0,0.12);
}

.fb-link {
  color: #d40000;
  font-weight: bold;
  text-decoration: none;
}

.fb-link:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: #f7f7f7;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.12);
}

.contact-form-card label {
  font-weight: bold;
  margin-top: 15px;
  display: block;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form-card button {
  margin-top: 20px;
  background: #d40000;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.contact-form-card button:hover {
  background: #a30000;
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 25px 0;
  margin-top: 80px;
  border-top: 6px solid #d40000;
  letter-spacing: 2px;
  font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .top-header {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .nav-links a {
    font-size: 1.5rem;
  }
  .logo {
    width: 100px;
  }
  .stars {
    width: 250px;   /* smaller size for tablets/phones */
  }

}

@media (max-width: 500px) {
  .hero h2 {
    font-size: 1.8rem;
    padding: 15px 20px;
  }
  .section p {
    width: 90%;
    font-size: 1.1rem;
  }
  .contact-box,
  .contact-form-card {
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .stars {
    width: 180px;   /* even smaller for very narrow screens */
  }

}


