* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

a:visited {
  color: inherit;
}

section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00000080;
  color: #ffffff;
  padding: 8px 16px;
  text-align: center;
  font-size: clamp(0.6rem, 0.7rem, 0.7rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.slide-underline {
  position: relative;
}

.slide-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.slide-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.slide-underline:not(:hover)::after {
  transform-origin: right;
}

.scroll-down-icon {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.scroll-down-icon a {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1 / 1;
  border: 2px solid white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.scroll-down-icon a:hover {
  transform: scale(1.1);
  animation: bounce 1s infinite;
}

.hero {
  min-height: 100vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(
      0deg, #040336 0%,
      #040340 5%,
      #04035499 100%
    ),
    var(--hero-bg) no-repeat center center / cover;
  background-size: cover;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.hero .hero-inner {
  width: 70%;
}

.hero .hero-inner h1 {
  font-family: "EB Garamond", serif;
  font-size: 4rem;
  text-decoration-thickness: 3px;
  text-decoration-color: #ffffff;
  text-underline-offset: 10px;
  font-weight: 700;
  text-shadow: 2px 2px 10px #000000bf;
  margin-bottom: 16px;
}

.hero .hero-inner p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 16px;
  /* display: none; */
}

.hero .hero-inner .hero-btn {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero .hero-inner .hero-btn a {
  font-family: 'Open Sans', serif;
  letter-spacing: 4px;
  font-weight: 700;
  display: flex;
  justify-content: center;
}

.hero .hero-inner .hero-btn .btn-one {
  padding: 1rem 2rem;
  border-radius: 35px;
  border: 2px solid #c3a12a;
  color: #c3a12a;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero .hero-inner .hero-btn .btn-one:hover {
    background: #c3a12a;
    color: #333333;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
}

.hero .hero-inner .hero-btn .btn-one:active {
  transform: scale(0.95);
  background: transparent;
  color: #c3a12a; 
}

.hero .hero-inner .hero-btn .btn-two {
  padding: 8px 14px;
  border-radius: 5px;
  background: #a48823;
  color: #fff;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

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

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

@media (max-width: 1100px) {
  html { font-size: 85%; }
  
  .hero .hero-inner { width: 85%; }
  
  .hero .hero-inner h1 { font-size: 3.2rem; }
  
  .hero .hero-inner .hero-btn .btn-one { margin-bottom: 100px; }
}

@media (max-width: 650px) {
  .hero .hero-inner { width: 92%; }
  
  .hero .hero-inner h1 { font-size: 2.8rem; }
  
  .hero .hero-inner p { font-size: 1rem; }
  
  .hero .hero-inner .hero-btn .btn-one { margin-bottom: 80px; }
}

@media (max-width: 480px) {
  .hero .hero-inner h1 { font-size: 2.35rem; }
  
  .hero .hero-inner .hero-btn .btn-one { 
    margin-bottom: 60px; 
    padding: 0.8rem 1.6rem;
  }
}