/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
/* Header */
.header {
  background: linear-gradient(135deg, #fc4c07, #ff9800);
  color: #fff;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header .logo {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
}

.nav ul li {
  margin: 0 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s;
}

.nav ul li a:hover {
  color: #ffeb3b;
  transform: translateY(-3px);
}

/* Adjust nav layout to align beside logo */
.header .nav {
  margin-left: 20px; /* Adds some spacing between the logo and navigation */
}

/* Media Queries for responsiveness */
@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  .nav {
    margin-top: 1rem;
  }
  .nav ul {
    flex-direction: column;
  }
  .nav ul li {
    margin: 10px 0;
  }
}

/* Hero Section */
.hero {
  background: url("https://tse2.mm.bing.net/th?id=OIP._hGvcP7_9DGS4pm4N18-gwHaFM&pid=Api&P=0&h=180")
    no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.hero-content .btn {
  padding: 1.2rem 2.5rem;
  background-color: #ff9800;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.hero-content .btn:hover {
  background-color: #f57c00;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: #f4f4f4;
  color: #333;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  text-align: left;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.about-img {
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

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

.about-text {
  width: 45%;
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 20px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fc4c07;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  color: #fc4c07;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

/* Products Section */
.products {
  background-color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.product img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

.product h3 {
  margin: 1rem 0;
  color: #fc4c07;
  font-size: 1.8rem;
  font-weight: bold;
}

.product p {
  font-size: 1.1rem;
  color: #666;
}

.product:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product:hover img {
  transform: scale(1.1);
}

/* Contact Form */
.contact-form {
  background-color: #fff;
  padding: 3rem;
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.1rem;
}

.contact-form button {
  background-color: #fc4c07;
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e68a00;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2rem;
  text-align: center;
  margin-top: 50px;
  font-size: 1.1rem;
}
