body {
  margin: 0;
  font-family: "Inconsolata", sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #00aaff;
  color: white;
  text-align: center;
  padding: 16px 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Hero */
.hero-section {
  background: linear-gradient(to right, #00aaff, #ff7f00);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.hero-section h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
.hero-section p {
  font-size: 20px;
  opacity: 0.9;
}

/* Tabs */
.menu-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

/* About us */
.about-us-hero {
    color: #00aaff;
    font-size: 36px;
    text-align: center;
}

.about-us-text {
    color: #000000;
    font-size: 20px;
    text-align: center;
}

.menu-title {
  font-size: 36px;
  color: #00aaff;
  margin-bottom: 30px;
}

.tab-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.tablink {
  padding: 12px 24px;
  border: 2px solid #00aaff;
  background-color: white;
  color: #00aaff;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.tablink:hover {
  background-color: #ff7f00;
  color: white;
}
.tablink.active {
  background-color: #ff7f00;
  color: white;
  border-color: #ff7f00;
}

/* Product Cards */
.product {
  border: 2px solid #00aaff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  cursor: pointer;
  transition: box-shadow 0.3s, border-color 0.3s;
  text-align: left;
}
.product:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border-color: #ff7f00;
}

.product h3 {
  color: #00aaff;
  margin-bottom: 8px;
}
.summary {
  color: #444;
}

/* Expandable details */
.details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
}
.product.active .details {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

/* Directional animation */
.expand-down {
  transform-origin: top;
}
.expand-up {
  transform-origin: bottom;
}

/* Active direction */
.product.active .expand-down {
  animation: expandDown 0.4s ease forwards;
}
.product.active .expand-up {
  animation: expandUp 0.4s ease forwards;
}



/* Contact Section */
.contact {
  background-color: #ffffff;
  padding: 60px 10%;
}

.contact h2 {
  text-align: center;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: 900;
}

.contact p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #007BFF;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff7f00;
  background-color: #fff7f0;
}

.contact-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #ff7f00;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background-color: #007BFF;
}


@keyframes expandDown {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes expandUp {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}
