@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap");

:root {
  --main-color: #dfd090;
  --primary-color: #5e3719;
  --black: #13131a;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  list-style: none;
  transition: all 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 0.6rem;
}

html::-webkit-scrollbar-track {
  background-color: #fff;
}

html::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

section {
  padding: 3rem 7%;
}

.heading {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-size: 4rem;
  margin-top: 4rem;
}

.heading-title {
  background-size: cover !important;
  background-position: cover !important;
  padding-top: 10rem;
  padding-bottom: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-title h1 {
  padding-top: 5rem;
  font-size: 8rem;
  text-transform: uppercase;
  color: #fff;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 4rem;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  color: var(--primary-color);
  background: var(--main-color);
  position: relative;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  z-index: 0;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 19% 15%, 0% 100%);
  z-index: -1;
  background: var(--primary-color);
  transition: 0.3s cubic-bezier(0.38, 1.15, 0.7, 1.12);
}

.btn:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.btn:hover {
  color: var(--main-color);
}

/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
  background: #fff;
  box-shadow: var(--box-shadow);
}

.header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--black);
}

.header .logo i {
  color: var(--main-color);
  padding-right: 0.5rem;
}

.header .navbar a {
  font-size: 2rem;
  margin-left: 2rem;
  color: var(--black);
}

.header .navbar .active {
  color: var(--main-color);
}

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

#menu {
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--black);
  display: none;
}

/* end */

/* Home Section Styling */
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1rem;
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place video behind content */
}

#background-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Content Styling */
.home .content {
  max-width: 90%;
  text-align: center;
  color: #fff;
  z-index: 1;
}

/* Text Animation */
.animated-text {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  perspective: 1000px;
}

.animated-text span {
  display: inline-block;
  animation: fadeAnd3D 2s ease forwards, hideText 4s ease 5s forwards;
  opacity: 0;
  transform: rotateX(-90deg) translateZ(50px);
}

.animated-text span:nth-child(1) {
  animation-delay: 0.5s;
}
.animated-text span:nth-child(2) {
  animation-delay: 1s;
}
.animated-text span:nth-child(3) {
  animation-delay: 1.5s;
}

@keyframes fadeAnd3D {
  0% {
    opacity: 0;
    transform: rotateX(-90deg) translateZ(50px);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) translateZ(0);
  }
}

@keyframes hideText {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

/* home section video section */

/* Button Styling */
.home .btn {
  padding: 10px 20px;
  color: var(--primary-color);
  background: var(--main-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.5rem;
  transition: 0.3s;
}

.btn:hover {
  color: var(--main-color);
  background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .animated-text {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .animated-text {
    font-size: 2rem;
  }
}

/* banner */

.banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.banner .hex {
  position: relative;
  width: 35rem;
  height: 40rem;
  margin: 3rem 1.5rem;
}

.banner .hex::before {
  content: "";
  position: absolute;
  bottom: -7rem;
  width: 100%;
  height: 6rem;
  background: radial-gradient(rgba(0, 0, 0, 0.15), transparent, transparent);
  border-radius: 50%;
  transition: 0.5s;
}

.banner .hex:hover::before {
  opacity: 0.8;
  transform: scale(0.8);
}

.banner .hex .shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  transition: 0.5s;
}

.banner .hex:hover .shape {
  transform: translateY(-1rem);
}

.banner .hex .shape img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner .hex .shape .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(45deg, #5e3719 37.47%, #dfd090 93.67%);
  color: #fff;
  opacity: 0;
  transition: 0.5s;
}

.banner .hex .shape .content h2 {
  font-size: 3rem;
  padding-bottom: 1.2rem;
}

.banner .hex .shape .content p {
  font-size: 1.7rem;
  line-height: 1.8;
}

.banner .hex:hover .shape .content {
  opacity: 1;
}

/* end */

/* home-menu */

.home-menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.home-menu .box-container .box {
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.home-menu .box-container .box .image {
  height: 25rem;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.home-menu .box-container .box .image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.home-menu .box-container .box .image .fa-heart,
.home-menu .box-container .box .image .fa-eye {
  position: absolute;
  top: 2.5rem;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--black);
  opacity: 80%;
}

.home-menu .box-container .box .image .fa-heart {
  right: 2.5rem;
}

.home-menu .box-container .box .image .fa-eye {
  left: 2.5rem;
}

.home-menu .box-container .box .image .fa-heart:hover,
.home-menu .box-container .box .image .fa-eye:hover {
  background: var(--main-color);
  color: #fff;
  opacity: 80%;
}

.home-menu .box-container .box .content {
  padding: 2rem;
  padding-top: 0;
}

.home-menu .box-container .box .content h3 {
  font-size: 2.5rem;
  color: var(--black);
}

.home-menu .box-container .box .content p {
  color: var(--black);
  font-size: 1.6rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.home-menu .box-container .box .content .price {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.home-menu .box-container .box .content .stars {
  padding: 1rem 0;
}

.home-menu .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: var(--main-color);
}

/* end */

/* Updated About Section Styles */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5rem;
}

.about .image {
  flex: 1 1 41rem;
  position: relative;
  text-align: center;
}

.about .image img {
  width: 70%;
  border-radius: 3rem;
  transition: transform 0.3s, box-shadow 1.3s;
  border-radius: 50%;
}

.about .image:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.about .image .owner-name {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 3rem;
  font-weight: 900;
  font-style: italic;
}

.about .content {
  flex: 1 1 41rem;
  text-align: center;
}

.about .content h3 {
  font-size: 3rem;
  color: var(--main-color);
}

.about .content p {
  font-size: 1.7rem;
  color: var(--gray);
  line-height: 2;
  padding: 1rem 0;
}

.about .content .icons-container {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.about .content .icons-container .icons {
  background: var(--main-color);
  color: #fff;
  padding: 2rem;
  flex: 1 1 16rem;
  border-radius: 0.5rem;
  transition: transform 0.3s, background 0.3s;
}

.about .content .icons-container .icons:hover {
  background: #ff867c;
  transform: translateY(-5px);
}

.about .content .icons-container .icons i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about .content .icons-container .icons span {
  font-size: 1.5rem;
  display: block;
}

/* gallery */

.gallery .box-container {
  columns: 3 25rem;
  column-gap: 1.5rem;
}

.gallery .box-container .box {
  margin-bottom: 1rem;
}

.gallery .box-container .box img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

/* end */

/* category */

.category .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.category .box-container .box {
  text-align: center;
}

.category .box-container .box img {
  height: 16rem;
}

.category .box-container .box h3 {
  font-size: 2rem;
  margin: 1rem 0;
  color: #666;
}

.category .box-container .box:hover h3 {
  color: var(--primary-color);
}

/* end */

/* menu */

.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box {
  position: relative;
  height: 40rem;
  border-radius: 5rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.menu .box-container .box .image {
  position: relative;
  overflow: hidden;
}

.menu .box-container .box:hover .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 15%, transparent);
  z-index: 1;
}

.menu .box-container .box:hover .image img {
  filter: blur(0.5rem);
}

.menu .box-container .box .image img {
  width: 100%;
  height: 40rem;
  object-fit: cover;
}

.menu .box-container .box .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 10;
  display: none;
}

.menu .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #fff;
}

.menu .box-container .box .content p {
  color: #fff;
  font-size: 1.4rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.menu .box-container .box .content .price {
  color: var(--main-color);
  font-weight: bolder;
  font-size: 2.5rem;
  margin-right: 1rem;
}

.menu .box-container .box .content .price span {
  text-decoration: line-through;
  font-weight: lighter;
  font-size: 1.5rem;
  color: #fff;
}

.menu .box-container .box .content .stars {
  position: relative;
  padding: 0.5rem 0;
}

.menu .box-container .box .content .stars i {
  color: gold;
  font-size: 2rem;
}

.menu .box-container .box:hover .content {
  display: inline-block;
}

/* end */

/* blog */

.blogs .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.blogs .box-container .box {
  text-align: center;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
}

.blogs .box-container .box .image {
  height: 25rem;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.blogs .box-container .box .image img {
  width: 100%;
  height: 100%;
}

.blogs .box-container .box:hover .image img {
  transform: scale(1.2);
}

.blogs .box-container .box .icons {
  background: var(--primary-color);
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
  top: -2rem;
  display: inline-block;
}

.blogs .box-container .box .icons a {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 1rem;
}

.blogs .box-container .box .icons a:hover {
  color: var(--main-color);
}

.blogs .box-container .box .icons a i {
  padding-right: 0.5rem;
  color: var(--main-color);
}

.blogs .box-container .box h3 {
  font-size: 2rem;
  color: var(--black);
}

.blogs .box-container .box p {
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 2;
  color: var(--black);
}
/* end */

/* Contact Us Section */
.contact-us {
  background: #eee; /* Using the same background color */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 5rem auto; /* Centered on the page */
  text-align: center;
}

.contact-us h2 {
  font-size: 3rem;
  color: var(--black);
  margin-bottom: 1rem;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form .form-group {
  text-align: left;
}

.contact-form label {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: var(--black);
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 0.1rem solid var(--black);
  outline: none;
}

.contact-form .btn {
  background: var(--primary-color); /* Same button style as original */
  color: var(--main-color);
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background: #333;
  color: #fff;
}

/* footer */

.footer {
  background: #f3f3f3;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: var(--black);
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.5rem;
  color: #666;
  padding-bottom: 0.5rem;
}

.footer .box-container .box a {
  font-size: 1.4rem;
  color: #666;
  padding: 1rem 0;
  display: block;
}

.footer .box-container .box a:hover {
  color: var(--primary-color);
}

.footer .box-container .box a:hover i {
  padding-right: 2rem;
}

.footer .box-container .box a i {
  padding-right: 0.5rem;
  color: var(--primary-color);
}

.footer .box-container .box form input[type="email"] {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
  color: var(--black);
  margin: 1rem 0;
  text-transform: none;
}

.footer .box-container .box form .btn:hover {
  cursor: pointer;
  background: var(--primary-color);
  color: var(--main-color);
}

.credit {
  text-align: center;
  color: #fff;
  background: var(--primary-color);
  font-size: 2rem;
}

/* end */

/* google map  */
.map-responsive {
  position: relative;
  width: 100%;
  height: 30%;
  padding-bottom: 40%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 10%;
  border: 3px solid #ddd; /* Optional: Add a border for better visuals */
  border-radius: 8px; /* Optional: Rounded corners */
  margin-bottom: 20px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* end */

/* video ads start  */

/* Video Ads Section */
.video-ads {
  background: var(--main-color);
  color: var(--primary-color);
  padding: 2rem 1rem;
  text-align: center;
}

.video-ads h2 {
  margin-bottom: 1.5rem;
  font-size: 6rem;

  color: var(--primary-color);
  font-family: "Times New Roman", Times, serif;
}

.video-display {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.current-video {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.volume-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--primary-color);
  color: var(--main-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 15px;
  height: 15px;
  background: var(--black);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--primary-color);
}

/* end */

/* Responsive Design */
@media (max-width: 768px) {
  .video-ads h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .video-ads h2 {
    font-size: 1.5rem;
  }
}

/* media query */

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  section {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  #menu {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 110%;
    right: -110%;
    width: 30rem;
    box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
    background: #fff;
  }

  .header .navbar.active {
    right: 2rem;
    transition: 0.4s linear;
  }

  .header .navbar a {
    font-size: 2rem;
    margin: 2rem 2.5rem;
    display: block;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}

/* hero section backgound video */

/* Mobile responsiveness */
@media (max-width: 768px) {
  .home .content h3 {
    font-size: 5rem;
    line-height: 1.1;
  }

  .home .btn {
    font-size: 1.2rem;
  }
}
