/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  /* background-image: url('images/Background.png'); */
}

section {
  height: 100vh;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* For Mobile Version */
@media (max-width: 768px) {
  .container {
    max-width: 90%;
    /* Full width for mobile */
    padding: 0 15px;
    /* Add more padding for better spacing on smaller screens */
  }
}


/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid #c49b63;

  cursor: pointer;
  display: none;

  transition: all 0.3s ease;
}

/* Arrow */
#scrollTopBtn::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;

  width: 18px;
  height: 18px;

  border-top: 2px solid #c49b63;
  border-left: 2px solid #c49b63;

  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.3s ease;
}

/* Hover effect */
#scrollTopBtn:hover {
  background-color: #c49b63;
}

#scrollTopBtn:hover::before {
  border-color: white;
  transform: translate(-50%, -60%) rotate(45deg);
}




/* Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.scroll-down span {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  animation: scrollBounce 5s infinite;
  opacity: 0.9;
}

@keyframes scrollBounce {
  0% {
    transform: rotate(90deg) translate(0, 0);
    opacity: 0.6;
  }

  50% {
    transform: rotate(0deg) translate(0, 0);
    opacity: 1;
  }

  100% {
    transform: rotate(90deg) translate(0, 0);
    opacity: 0.6;
  }
}

html {
  scroll-behavior: smooth;
}


.typing-effect span {
  opacity: 0;
  display: inline-block;
  transform: translateY(15px);
  animation: letterReveal 0.4s forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Testimonials */
.testimonials {
  position: relative;
  height: auto;
}

.testimonials-header {
  text-align: center;
  padding: 40px 10px;
}



.testimonials-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
  justify-content: space-between;
}

.testimonials-item {
  width: 350px;
  justify-content: space-between;
}

.testimonials-name {
  display: flex;
  justify-content: end;
  font-weight: 700;
}



#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: auto;

  background-image: url('../images/Background.png');
  color: #a67c3f;

  padding: 18px 22px;
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;

  text-align: center;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 9999;

  animation: cookieSlide 0.4s ease;
}

#cookie-banner p{
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

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

#cookie-banner button {
  background: #000;
  color: #a67c3f;
  border: none;
  border: solid 1px #a67c3f;

  padding: 10px 18px;
  border-radius: 8px;

  cursor: pointer;
  font-size: 14px;
  transition: all 0.25s ease;
}

#cookie-banner button:hover {
  background: #a67c3f;
  color: black;
  transform: translateY(-1px);
}

/* decline button lighter */
#cookie-banner .decline {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}

#cookie-banner .decline:hover{
  background:#000;
  color:#fff;
}

/* slide animation */
@keyframes cookieSlide{
  from{
    transform: translateY(40px);
    opacity:0;
  }
  to{
    transform: translateY(0);
    opacity:1;
  }
}

/* Mobile tweaks */
@media (max-width:480px){

  #cookie-banner{
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding:16px;
  }

  .cookie-buttons{
    width:100%;
    flex-direction:column;
  }

  #cookie-banner button{
    width:100%;
  }

}

@media All {
  h3 {
    font-size: 24px;
  }

  h2 {
    position: absolute;
    font-size: 32px;
    display: inline-block;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;

    background: linear-gradient(90deg,
        black,
        #a67c3f,
        black);

    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: textWave 3s linear infinite;
  }

  @keyframes textWave {
    0% {
      background-position: 200% center;
    }

    100% {
      background-position: 0% center;
    }
  }

  h2 {
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  /* custom underline */
  h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50%;
    height: 2px;
    background-color: #a67c3f;
    transform: translateX(-50%);
  }
}


@media (max-width: 768px) {
  .testimonials-content {
    justify-content: center;
  }

.testimonials-item {
  width: 100%;
}
  h2 {
    font-size: 26px;
    margin-bottom: 0;
  }

  h3 {
    font-size: 22px;
  }

}


