@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
}
:root {
  --bg: #512418;
  --primary: #f1914a;
  --primary-600: #c38f7a;
  --secondary: #955127;
  --secondary-600: #fccd92;
}
.widthContainer {
  margin: auto;
  width: 85%;
}
@media screen and (min-width: 1350px) {
  .widthContainer {
    width: 1300px;
    margin: auto;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}
a {
  text-decoration: none;
  color: black;
  font-size: clamp(15px, 1.5vw, 17px);
}
i {
  font-size: 25px;
}
p {
  font-size: clamp(15px, 1.5vw, 17px);
}

/* ===== ANIMATIONS ===== */
/* Gradient text animation */
.gradient {
  background: linear-gradient(
    90deg,
    var(--primary-600),
    #000033,
    var(--primary-600)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s linear infinite;
}
/* @keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-8px) translateX(3px);
  }
  66% {
    transform: translateY(-4px) translateX(-3px);
  }
}
@keyframes floatMedium {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-12px) translateX(-4px);
  }
  66% {
    transform: translateY(-6px) translateX(4px);
  }
}
@keyframes floatFast {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-15px) translateX(5px);
  }
  66% {
    transform: translateY(-8px) translateX(-5px);
  }
}

.float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}
.float-medium {
  animation: floatMedium 5s ease-in-out infinite;
}
.float-fast {
  animation: floatFast 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Animation classes */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}
.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}
.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}

/* Scroll-triggered animations (will be controlled by JS) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------*/
/*    1. Cookie Popup          */
.cookie-popup {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #ffffff;
  /* border-radius: 12px; */
  padding: 20px;
  width: 100%;
  height: 160px;
  box-shadow: 0 -8px 16px 8px rgba(0, 0, 0, 0.2);
  /* display: none; */
  animation: fadeIn 0.7s ease;
  z-index: 50;
}
.cookie_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}
.cookie-content {
  text-align: center;
}
.cookie-content p {
  margin-bottom: 20px;
  width: 55%;
  margin: 0 auto 20px;
  color: #333;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cookie-buttons .btn {
  padding: 10px 30px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  background: var(--bg);
  color: #fff;
}
.cookie-buttons .btn:first-child {
  background: var(--primary-600);
}
/* Fade in effect */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 580px) {
  .cookie-popup {
    padding: 20px 0;
    height: 160px;
  }
  .cookie-content p {
    width: 85%;
  }
}

/* ----------------------------*/
/*    2. Navbar                */
.standIn {
  height: 80px;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  height: 80px;
  background-color: var(--bg);
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.2);
}
.navbar_links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar_links a {
  text-decoration: none;
  color: white;
  margin: 0 10px;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sideContent i {
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.nav .closebtn i {
  font-size: 36px;
  margin-left: 10px;
  cursor: pointer;
  margin-bottom: 20px;
  border: 1px dotted #333;
}
.menu {
  position: relative;
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  width: 230px;
  margin-right: -110%;
  padding: 10px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: #fff;
}
.menu a {
  padding: 18px 10px;
  border-bottom: 1px solid white;
}
.sub_menu {
  min-width: 400px;
  padding: 10px 0;
  box-sizing: border-box;
  display: none;
  position: absolute;
  box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: 0.4s;
  background-color: white;
}
.sub_menu a {
  padding: 10px;
}
.navbar_links:hover .sub_menu {
  display: flex;
  margin-top: 16%;
  flex-direction: column;
}
.navbar .page_links a {
  margin: 0 6px;
}
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}
.menu_links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.menu_links a {
  background: var(--primary);
  border: none;
  padding: 3px 7px;
  border-radius: 2px;
  margin: 0 3px;
}
.page_links {
  margin: 20px 0;
}
.page_links a {
  border: none;
  border-radius: 2px;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
}
.page_links a i {
  font-size: 26px;
}

/* ----------------------------*/
/*    3. Footer                */
.footer_container {
  background: #fff;
  font-size: 15px;
  border-top: 1px solid #ccc;
}
.footer_frame {
  padding: 5% 0;
}
.footer_items {
  gap: 20px;
}
.footer_divs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3%;
}
.footer_divs:last-child {
  margin: 0;
}
.footer_item {
  padding: 10px;
  width: 250px;
}
.footer_item h3 {
  margin-bottom: 5px;
}
.pay_icons i {
  padding: 10px 0;
  font-size: 30px;
  color: var(--primary);
}
.footer_item img {
  height: clamp(80px, 2vw, 100px);
}
.payment img {
  padding: 5px 0;
  border-radius: 2px;
  height: 35px;
  color: grey;
}
.footer_content {
  background: var(--bg);
  color: #fff;
  padding: 2% 0;
}
.footer_content .widthContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_copyright {
  padding: 1% 2%;
  text-align: center;
  display: flex;
}
.footer_copyright small {
  font-weight: bolder;
  color: var(--primary);
}
.footer_copyright h2 {
  margin: 0 7px;
}
.footer_policy a {
  border-right: 2px solid grey;
  padding: 0 10px;
  color: #fff;
}
.footer_policy a:first-child {
  padding: 0 10px 0 0;
}
.footer_policy a:last-child {
  border: none;
}
.footer_policy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 1025px) {
  .footer_frame {
    padding: 5% 0;
  }
}
@media screen and (max-width: 750px) {
  .footer_content .widthContainer {
    margin-bottom: 0;
    flex-direction: column-reverse;
    align-items: center;
  }
  .footer_divs {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer_item {
    margin: 0 auto;
  }
  .footer_policy:first-child {
    padding: 0 0 15px 0;
  }
  .footer_copyright {
    justify-content: center;
  }
}
@media screen and (max-width: 320px) {
  .footer_frame {
    padding: 10% 0;
  }
  .footer_newsletter {
    width: 100%;
  }
  .footer_newsletter input {
    width: 100%;
  }
  .footer_item {
    width: auto;
  }
  .footer_copyright {
    flex-wrap: wrap;
  }
}
