/* General */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0; 
  padding: 0;
  background: #f7f7f7;
  color: #000000;
}

a {
  color: #0799fa;
  text-decoration: none;
}

a:hover {
  color: #07daff;
}

/* Header & Nav */
header {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
}

header h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 2px;
}

nav {
  background: #222;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  color: #eee;
  font-weight: 600;
  font-size: 16px;
}

nav a:hover {
  color: #ff4500;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('Image/HERO.png') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}
/* Hero Button */
.btn-hero {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff4500;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.btn-hero:hover {
  background-color: #e03e00;
  transform: translateY(-2px);
}
.btn-order {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff4500;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-order:hover {
  background-color: #e03e00;
}


/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 10px 0;
  font-weight: 700;
}

.product-card p {
  font-weight: 600;
  color: #ff4500;
  margin: 0 0 10px 0;
}

.order-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #ff4500;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background-color: #e03e00;
}

/* About & Contact Containers */
.about-container, .contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  align-items: center;
}

.about-text, .contact-info, .contact-form {
  flex: 1 1 400px;
}

.about-image img, .contact-info img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form form, #order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input, .contact-form textarea, #order-form input, #order-form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
}

.contact-form button, #order-form button {
  background: #ff4500;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover, #order-form button:hover {
  background: #e03e00;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: #fff;
  margin: 80px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff4500;
}

/* Responsive */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-container, .contact-container {
    flex-direction: column;
  }

  .hero {
    font-size: 1.5rem;
    height: 300px;
  }
}
.logo {
  width: 150px; /* adjust size */
  height: auto;
}
.footer-logo {
  width: 100px;
  display: block;
  margin: 0 auto 10px auto;
}