* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Navbar Section */
header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  color: #ffcc00;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: color 0.3s ease-in-out;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ffcc00;
}

.nav-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #ffcc00;
  transition: width 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  background: url("/Images/bg.png") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  color: #fff;
  text-transform: uppercase;
}

.hero h1 span {
  color: #ffcc00;
}

.hero p {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #f1f1f1;
}

.btn-primaryone {
  padding: 1rem 2rem;
  background-color: #ffcc00;
  color: #333;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #e6b800;
}

/* Menu Section */
.menu {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.menu h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.menu h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #ffcc00;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-item {
  background-color: #fdfdfd;
  padding: 2rem;
  margin: 1rem;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 300px;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.menu-item h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.menu-item p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.menu-item span {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffcc00;
}

/* Shop Section */
.shop {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.shop h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.shop h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #ffcc00;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.shop-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.shop-item {
  background-color: #f5f5f5;
  padding: 2rem;
  margin: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  width: 30%;
  position: relative;
  animation: slideIn 0.5s ease-out;
}

.shop-item:hover {
  transform: translateY(-10px);
}

.shop-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffcc00;
  margin-bottom: 1rem;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff4b4b;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 5px;
  text-transform: uppercase;
}

.shop-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #333;
}

.rating {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #ffcc00;
}

.shop-item p {
  color: #666;
  margin-bottom: 1rem;
}

.shop-item .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 1rem;
  display: block;
}

.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.btn-secondary {
  background-color: #ffcc00;
  color: #333;
  margin-right: 0.5rem;
}

.btn-secondary:hover {
  background-color: #e6b800;
}

.btn-primary {
  background-color: #333;
  color: #fff;
}

.btn-primary:hover {
  background-color: #555;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Customer Reviews Section */
.reviews {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.reviews h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.reviews h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #ffcc00;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.reviews-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.review {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  width: 30%;
  animation: slideIn 0.5s ease-out;
}

.review:hover {
  transform: translateY(-10px);
}

.review img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.review blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}

.review h3 {
  font-size: 1.2rem;
  color: #333;
}

/* About Section */
.about {
  position: relative;
  padding: 6rem 2rem;
  color: #fff;
  text-align: center;
  background: url("/Images/bg2.png") no-repeat center center/cover;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.about h2 {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.about p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out;
}

.btn-secondary {
  padding: 0.8rem 1.5rem;
  background-color: #ffcc00;
  color: #333;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  animation: fadeInUp 1.5s ease-out;
}

.btn-secondary:hover {
  background-color: #e6b800;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background-color: #f4f4f4;
  color: #333;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.contact h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #ffcc00;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form,
.contact-info {
  flex: 1;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.contact .input-group {
  margin-bottom: 1.5rem;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #ff9900;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.5);
  outline: none;
}

.contact textarea {
  height: 150px;
  resize: none;
}

.contact button {
  width: 100%;
  padding: 1rem 2rem;
  background-color: #ffcc00;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.contact button:hover {
  background-color: #333;
  color: #ffcc00;
}

/* Contact Info */
.contact-info {
  color: #555;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #ffcc00;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  font-size: 1.2rem;
}

footer {
  padding: 2rem 0;
  background-color: #333;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  margin-right: 10px;
  text-decoration: none;
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff6347;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .burger {
    display: block;
  }

  .nav-active {
    transform: translateX(0%);
  }

  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.toggle .line2 {
    opacity: 0;
  }

  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .menu-items {
    flex-direction: column;
  }

  .shop-items {
    flex-direction: column;
  }

  .reviews-container {
    flex-direction: column;
    align-items: center;
  }

  .review {
    width: 90%;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

h1 {
  font-family: "Lobster", sans-serif;
  font-size: 45px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 15px;
  margin-top: 15px;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  height: 74px;
  gap: 80px;
}

nav a {
  text-decoration: none;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #071c35;
  transition: 0.5s ease;
}

nav a:nth-child(1) {
  color: #ee2737;
}

nav a:hover {
  color: #ee2737;
}

#right-area {
  height: 100%;
}

#right-area img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50%;
}

#right-area .landing-imgs img:nth-child(1) {
  position: absolute;
  top: 29%;
  animation: animate 7s infinite;
}

#right-area .landing-imgs img:nth-child(2) {
  width: 40%;
  position: absolute;
  top: 20%;
  right: 0.5%;
  animation: animate 7s infinite;
}

#right-area .landing-imgs img:nth-child(3) {
  width: 150px;
  position: absolute;
  top: 10%;
  right: 3%;
  animation: animate2 7s infinite;
}

@keyframes animate {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-25px);
  }
  50% {
    transform: translateY(-15px);
  }
  75% {
    transform: translateY(-25px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes animate2 {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(-15px);
  }
  50% {
    transform: translate(-8px);
  }
  75% {
    transform: translate(-15px);
  }
  to {
    transform: translate(0);
  }
}

#left-area {
  width: 45%;
  align-self: flex-start;
  margin-top: 150px;
  margin-left: 10%;
}

#left-area h1 {
  font-family: "Lobster", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #071c35;
}

#left-area h1::selection {
  color: #696969;
  background-color: #ee2737;
}

span {
  font-family: "Lobster", sans-serif;
  color: #ee2737;
}

span::selection {
  color: #fff;
  background-color: #ee2737;
}

#left-area p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

#left-area p::selection {
  color: #fff;
  background-color: #ee2737;
}

.buttons button {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border: 1px solid #ee2737;
  background-color: #fff;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0px 5px 30px 0px rgba(238, 39, 55, 0.2);
  transition: 0.5s ease;
}

.buttons a:nth-child(1) button {
  background-color: #ee2737;
  margin-right: 30px;
}

.buttons a:nth-child(1) button:hover {
  background-color: transparent;
  color: #ee2737;
}

.buttons a:nth-child(2) button {
  color: #ee2737;
}

.buttons a:nth-child(2) button:hover {
  color: #fff;
  background-color: #ee2737;
}

.icons {
  display: flex;
  margin-top: 50px;
  gap: 20px;
}

.icons .icon-box {
  width: 78px;
  height: 78px;
  border: none;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(238, 39, 55, 0.1);
  transition: 0.5s ease;
  cursor: pointer;
}

.icons .icon-box:hover {
  background-color: #ee2737;
}

.icons .icon-box:hover .fa-solid {
  color: #fff;
  transition: 0.5s ease;
}

.icons .icon-box .fa-solid {
  font-size: 30px;
  color: #ee2737;
}
