@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top: 2rem;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
  font-family: "Be Vietnam Pro", sans-serif;
}

:root {
  --main-color: #811e00;
  --second-color: #39242e;
}

*::selection {
  color: #fff;
  background: var(--main-color);
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #701919;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 15px 10%;
  transition: padding 0.3s ease;
}

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

.logo img {
  width: 65px;
}

.navbar {
  display: flex;
}

.navbar a {
  font-size: 1rem;
  padding: 11px 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: var(--second-color);
}

#menu-icon {
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  display: none;
  color: #fff;
  transition: transform 0.3s ease;
}

#menu-icon.active {
  transform: rotate(90deg);
}

section {
  padding: 50px 10%;
  padding-top: 120px;
}

.home {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #ebc8c8;
  gap: 1rem;
}

.home-text {
  flex: 1 1 17rem;
}

.home-img {
  flex: 1 1 31rem;
}

.home-img img {
  animation: animate 3s linear infinite;
}

@keyframes animate {
  0% { transform: translate(-5px, 0); }
  50% { transform: translate(0, -5px); }
  100% { transform: translate(-5px, 0); }
}

.home-text span {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--second-color);
}

.home-text h1 {
  font-size: 3.6rem;
  color: var(--main-color);
  font-weight: bolder;
}

.home-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--second-color);
  text-transform: uppercase;
  margin: 0.5rem 0 1.4rem;
}

.btn {
  padding: 7px 16px;
  border: 2px solid var(--second-color);
  border-radius: 40px;
  color: var(--second-color);
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn:hover {
  color: #fff;
  background: var(--second-color);
}

.heading {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0px;
}

.heading span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--second-color);
}

.heading h1 {
  font-size: 2rem;
  color: var(--main-color);
  padding: 35px;
}

.heading h2 {
  font-size: 2rem;
  color: var(--main-color);
}

.menu {
  background-color: #ebe3c8;
}

.shop-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 5rem;
}

.shop-container .box {
  flex: 1 1 15rem;
  max-width: 250px;
  background: var(--main-color);
  padding: 20px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  border-radius: 0.5rem;
}

.shop-container .box .box-img {
  width: 150px;
  height: 150px;
  margin-top: -100px;
}

.shop-container .box .box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.stars {
  margin: 1rem 0 0.1rem;
}

.shop-container .box .stars .bx {
  color: #ebdbc8;
}

.shop-container .box h2 {
  color: #ebdbc8;
  font-size: 1.2rem;
}

.shop-container .box span {
  color: #ebdbc8;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0.2rem 0 0.5rem;
}

.box .btn {
  border: 2px solid #ebdbc8;
  color: #ebd2c8;
}

.box .btn:hover {
  background: #ebcdc8;
  color: var(--second-color);
}

.about {
  display: flex;
  flex-wrap: wrap;
  background: #ebcdc8;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.about .heading {
  margin: 0px;
  flex: 1 1 100%;
  order: 0;
}

.about-img,
.about-text {
  font-size: 1.2rem;
  padding: 10px;
  order: 0;
}

.about-text h2 {
  font-size: 1.6rem;
  color: var(--second-color);
}

.about-text p {
  margin: 1rem 0;
  text-align: justify;
}

.app .heading{
  margin: 5rem;
}

.app {
  background: #e0d5ca;
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 50px 10%;
}

.app-text {
  order: 1;
  text-align: left;
}

.app-img {
  order: 2;
  max-width: 300px;
  margin: 0 auto;
  padding: 15px;
}

.app-text h2 {
  font-size: 1.6rem;
  color: var(--second-color);
}

.app-text p {
  margin: 2rem 0;
  text-align: justify;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.contact {
  margin-top: auto;
  padding: 40px 10%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section.contact {
  padding-top: 100px;
}

.footer-columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-section p,
.footer-section a {
  font-size: 1rem;
  color: #666;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--main-color);
}

.footer-section .email-line {
  display: inline;
  white-space: nowrap;
}

.social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.social a {
  font-size: 1.5rem;
  color: #666;
}

.social a .bx {
  transition: color 0.3s ease;
}

.social a:hover .bx {
  color: var(--main-color);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #666;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1150px) {
  header {
    padding: 12px 7%;
  }
  section {
    padding: 50px 7%;
  }
  .contact {
    padding: 20px 7%;
  }
  .home-text h1 {
    font-size: 3rem;
  }
  .home-text h2 {
    font-size: 1.5rem;
  }
  .app {
    padding: 50px 7%;
  }
  .heading {
    margin-top: 6rem;
  }
}

@media (max-width: 991px) {
  header {
    padding: 18px 4%;
  }
  section {
    padding: 50px 4%;
  }
  .contact {
    padding: 20px 4%;
  }
  .app {
    padding: 50px 4%;
  }
  .heading {
    margin-top: 6rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 4%;
  }
  section {
    padding: 30px 5%;
  }
  .navbar.active + section {
    padding-top: 350px;
  }
  .contact {
    padding: 15px 5%;
  }
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .social {
    align-items: center;
  }
  #menu-icon {
    display: block;
  }
  header .navbar {
    position: absolute;
    top: 70px;
    right: 0;
    width: 50%;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 4px rgba(55, 42, 14, 0.14);
    border-top: 2px solid var(--main-color);
    border-radius: 0 0 0 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
  }
  .navbar.active {
    transform: translateX(0);
  }
  .navbar a {
    padding: 1rem;
    display: block;
    color: var(--second-color);
    font-size: 0.9rem;
    text-align: right;
  }
  .home-text span {
    font-size: 1.2rem;
  }
  .home-text h1 {
    font-size: 2rem;
  }
  .home-text h2 {
    font-size: 1.2rem;
  }
  .shop-container .box {
    margin-top: 6rem;
  }
  .heading h1 {
    font-size: 1.3rem;
  }
  .heading span {
    font-size: 0.9rem;
  }
  .about .heading {
    order: 1;
  }
  .about .about-text {
    order: 2;
  }
  .about .about-img {
    order: 3;
  }
  .app {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
  }
  .app-img {
    max-width: 250px;
    order: 1;
  }
  .app-text {
    order: 2;
    text-align: center;
  }
  .heading {
    margin-top: 6rem;
  }
}

@media (max-width: 392px) {
  section {
    padding: 20px 3%;
  }
  .navbar.active + section {
    padding-top: 330px;
  }
  .contact {
    padding: 10px 3%;
  }
  header .navbar {
    width: 40%;
  }
  .social a .bx {
    margin-right: 0.3rem;
  }
  .app {
    padding: 20px 3%;
  }
  .app-img {
    max-width: 200px;
  }
  .heading {
    margin-top: 6rem;
  }
}