@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hedvig+Letters+Serif:opsz@12..24&display=swap');

*

* {
  padding: 0;
  box-sizing: border-box;
  margin: 0;
}
body {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-family: 'Hedvig Letters Serif', serif;
}

button, nav, h1, h2, h3, h4, h5, h6, p, a, li, input, textarea, label, select, option, span, div {
  font-family: 'Hedvig Letters Serif', serif;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 22px 2rem;
}
.navbar a {
  font-family: "Hedvig Letters Serif", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
  color: black;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.16px; /* -0.8% of 20px = -0.16px */
  text-transform: capitalize;
}
.navbar a:hover {
  color: #2563eb;
}
.navbar img {
  height: 2.5rem;
  width: auto;
  margin: 0 2rem;
}

/* Hero section */
/* left section */
.hero-section {
  width: full;
  max-width: 538px;
  display: flex;
  flex-direction: column;
  align-content: center;
  height: 50vh;
  justify-content: start;
  justify-items: center;
  margin-top: 50px;
}
.hero-heading {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 26px;
  margin-bottom: 43px;
}
.hero-heading h1 {
  font-size: 64px;
  font-weight: 700;
}
.hero-section p {
  font-family: "Hedvig Letters Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.16px; /* -0.8% of 20px = -0.16px */
  margin-bottom: 33px;
}
.hero-section button {
   font-family: 'Hedvig Letters Serif', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding: 12px 16px;
  background: black;
  color: white;
  line-height: 100%;
  border-radius: 12px;
  margin-right: 26px;
  letter-spacing: -0.128px; /* -0.8% of 16px = -0.128px */
  text-transform: capitalize;
}
.hero-section .btn-white {
  background: white;
  color: black;
}

/* hero section right side */
.hero-design {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.hero-design img{
height: 774px;
}
.hero-design .one {
  right: 62.52px;
}
.hero-design .two {
  right: 171.72px;
}
.hero-design .three {
  right: 285px;
}
.hero-design .four {
  right: 394px;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
}


/* Lets talk section */

.talk-section {
  display: flex;
  justify-content: center;
  justify-items: center;
  margin-top: 200px;
  text-align: center;
}
.talk-section button {
  color: white;
  font-size: 16px;
  border-radius: 30px;
  background-color: #e36b4c;
  border: none;
  padding: 20px 55px;
  margin-bottom: 50px;
}
.talk-section h2 {
  font-family: "Hedvig Letters Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 40px;
}
.talk-section p {
  font-family: "Hedvig Letters Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
  letter-spacing: 0px;
  text-align: center;
  width: full;
  max-width: 581px;
  margin-bottom: 45px;
}

/* footer */
footer {
  border-top: 1px solid rgb(236, 234, 234);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  margin-bottom: 87px;
}
.content ul {
  display: flex;
  gap: 39px;
}
footer ul li {
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Hedvig Letters Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
}
.social-icon li {
  width: 45px;
  height: 45px;
  border: 2px solid rgb(216, 213, 213);
  border-radius: 100%;
}
.social-icon ul {
  display: flex;
  gap: 25px;
}
.social-icon img {
  width: 13.5px;
  height: 13.5px;
  margin: 14px;
}

/* slider */
:root {
  --size: clamp(150px, 50vmin, 450px);
  --size-3: 1rem;
  --size-4: 2rem;
  --size-content-3: 100ch;
  --font-size-fluid-1: clamp(1rem, 2vw, 2rem);
}

/* Wrapper */
.track-wrapper {
  margin: 0 auto;
  position: relative;
  border-radius: 60px;
  width: 100%;
  max-inline-size: var(--size-content-3);
  overflow: hidden;
  /* Removed curved mask */
}

/* Scroll Track */
.track {
  height: var(--size);
  width: 100%;
  display: flex;
  overflow-x: auto;
  gap: var(--size-4);
  list-style-type: none;
  padding: var(--size-4) 10%;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.track::-webkit-scrollbar {
  display: none;
}

/* Items */
.track__item {
  height: 100%;
  aspect-ratio: 1;
  scroll-snap-align: center;
}
.track__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px; /* Rounded corners still apply */
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 7rem;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slider-dots .dot.active {
  background: #000;
  opacity: 1;
  transform: scale(1.2);
}


/* h1 {
  position: fixed;
  margin: 0;
  opacity: 0.5;
  bottom: var(--size-3);
  right: var(--size-3);
  font-size: var(--font-size-fluid-1);
} */

/* Image overlay logo */
.slider-img {
  position: absolute;
  width: 800px;
  top: 0px;
  left: 190px;
  
}
.slider-img img{
  width: 700px;
  height: 410px;
  top: 0px;
  left: 22px;
  
}


.slider-section {
    margin-top: 346px;
}
.slider-section h2{
    text-align: center;
    margin-bottom: 110px;
   font-family: 'Hedvig Letters Serif', serif;
  font-weight: 400;
  font-style: normal; /* "Regular" is not a valid value */
  font-size: 40px;
  line-height: 1; /* 100% */
  letter-spacing: -0.038em; /* -3.8% of font-size */
}