* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/*
HERO EDITING
*/
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem;
  color: white;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn.red {
  background-color: #cf2e36;
  color: white;
}

.hero-btn.red:hover {
  background-color: rgb(222, 51, 51);
}

.hero-btn.glass {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.hero-btn.glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Mobile */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2.9rem;
  }

  .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

}

@media (max-width: 426px) {
  .hero-overlay h1 {
    font-size: 2.1rem;
  }

    .hero-overlay p {
    font-size: 1.3rem;
    padding: 0 1rem;
  }
}

@media (max-width: 321px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

    .hero-overlay p {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}


/* === Catering Section === */

.content-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
}

.catering-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  color: #111;
}

.catering-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  border: 1.5px solid;
  background-color: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  max-width: 150px;
}

.catering-tag.orange {
  color: #e67e22;
  border-color: #fde6cc;
  background-color: #fff9f2;
}

.catering-tag.green {
  color: #28a745;
  border-color: #c4f0d2;
  background-color: #e9fcee;
}

.catering-tag:hover {
  background-color: #2b2b2b;
}

.catering-heading {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.catering-subheading {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.highlight-orange {
  color: #f39c12;
}

.highlight-green {
  color: #28a745;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
}

.catering-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start; 
}

.catering-form,
.catering-info {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.catering-form {
  flex: 1 1 500px;
  max-width: 600px;
}

.catering-form form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

textarea {
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-height: 120px;
}

.submit-btn {
  padding: 0.75rem;
  background-color: #cf2e36;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #a6282f;
}

.catering-info {
  flex: 1 1 350px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon {
  padding: 0.75rem;
  border-radius: 10px;
  color: white;
  font-size: 1.2rem;
}

.icon.red {
  background-color: #f8d7da;
  color: #c0392b;
}

.icon.orange {
  background-color: #fff3cd;
  color: #e67e22;
}

.icon.green {
  background-color: #d4edda;
  color: #28a745;
}


/*need to talk box*/

.contact-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  color: #333;
  border: 1px solid #eee;
}

.contact-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.contact-icon.red {
  background-color: #c0392b;
}

.contact-icon.orange {
  background-color: #f39c12;
}

.contact-info small {
  display: block;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 2px;
}

.contact-info p {
  margin: 0;
  font-weight: 600;
  color: #111;
}

.contact-box hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1rem 0;
}

.response-time {
  font-size: 0.85rem;
  color: #555;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}


.form-status { margin: 8px 0 0; font-size: 0.95rem; }
.form-status.ok { color: #1b8f3a; }
.form-status.err { color: #c2272d; }
