/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
  background: #f0f8ff;
  color: #333;
}

/* ===== Header ===== */
 header {
  background: rgb(26, 100, 170);
  color: #fff;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}  

header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}
nav a:hover {
  background: #3399ff;
  color: #fff;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

/* ===== Mobile Menu ===== */
#menu-toggle {
  display: none;/* hide checkbox */
 }

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
} 

/* Responsive styles */
@media (max-width: 480px) {
  nav ul {
    position: absolute;
    top: 60px; /* below header */
    right: 0;
    background: rgb(174, 197, 218);
    flex-direction: column;
    width: 200px;
    display: none; /* hidden by default */
    padding: 1rem;
    border-radius: 8px 0 0 8px; 
   }

  /* Show menu when checkbox is checked */
 #menu-toggle:checked + .menu-icon + nav ul {
    display: flex;
  }

  .menu-icon {
    display: block;
  } 

   /* Hide desktop flex  */
  .nav {
    flex: 1;
  }
  header{
  display: flex;
  justify-content: space-around;
  }
}


/* ===== Hero Section ===== */
.container {
  height: 100vh;
  background: seashell;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
}

.hero-image img {
  width: 500px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: black;
  font-family: 'Poppins';
}

.text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: blue;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #3399ff;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0073e6;
}

/* ===== Footer ===== */
.site-footer {
  background: #333;
  color: #fff;
  padding: 2rem;
  margin-top: 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: #4da6ff;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p,
.footer-about p {
  margin-bottom: 0.5rem;
  color: #ddd;
}

.footer-contact a {
  color: #4da6ff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* ===== About Page ===== */
#about {
  padding: 3rem 2rem;
  background: #e6f3ff;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

#about p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  max-width: 800px;
  margin: 0 auto 2rem;
}

#about blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #0073e6;
  background: #cce6ff;
  padding: 1rem 1.5rem;
  border-left: 5px solid #3399ff;
  border-radius: 10px;
  max-width: 700px;
  margin: 2rem auto;
}

.about-img {
  max-width: 350px;
  width: 100%;
  border-radius: 15px;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.about-img:hover {
  transform: scale(1.05);
}

.team {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.team h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

.team p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}



/* ===== Menu Page ===== */
#menu {
  padding: 3rem 2rem;
  text-align: center;
  background: #e6f3ff;
}

#menu h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0056b3;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.product-card img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #0056b3;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.8rem;
}

.product-card span {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3399ff;
  margin-bottom: 0.8rem;
}


.product-card button {
  padding: 0.6rem 1.2rem;
  background: #3399ff;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #0073e6;
}



/* ===== Contact Page ===== */
#contact {
  padding: 3rem 2rem;
  background: #f0f8ff;
  text-align: center;
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0056b3;
}

#contact p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}



.contact-form {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
}

.form-group {
  margin-bottom: 1.2rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #3399ff;
  box-shadow: 0 0 5px rgba(51, 153, 255, 0.4);
}

.contact-form button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #3399ff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0073e6;
}
/* ===== Responsive Breakpoints ===== */

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  header {
 
    text-align: center;
    padding: 1rem;
  }
  nav ul {
    
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .container {
   
    text-align: center;
    padding: 1rem;
  }
  .hero-image img {
    width: 90%;
    max-width: 300px;
  }
  .text h2 {
    font-size: 2rem;
  }
  .text p {
    font-size: 1rem;
  }
  .products {
    grid-template-columns: 1fr 1fr;
  }
}
/* Tablets (601px - 768px) */
@media (min-width: 601px) and (max-width: 768px) {
  header h1 {
    font-size: 1.4rem;
  }
  nav ul {
    gap: 1rem;
  }
  .container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .hero-image img {
    max-width: 400px;
    width: 80%;
  }
  .text h2 {
    font-size: 2.2rem;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Small Laptops (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  header {
    padding: 1rem 1.5rem;
  }
  .hero-image img {
    max-width: 450px;
  }
  .text h2 {
    font-size: 2.5rem;
  }
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Large Screens (1200px and above) */
@media (min-width: 1200px) {
  .container {
    padding: 3rem 5rem;
    gap: 3rem;
  }
  .hero-image img {
    max-width: 550px;
  }
  .text h2 {
    font-size: 3.5rem;
  }
  .products {
    grid-template-columns: repeat(4, 1fr);
  }
}
.contact-map {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
} 