* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
    background-color: #f2f2f2;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: none;
}

body::-webkit-scrollbar {
    display: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #eaeaea;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transition: transform 0.1s ease;
}

.cursor.is-active {
  transform: scale(0);
}

.follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  background-color: transparent;
  pointer-events: none;
  mix-blend-mode: difference;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.3s ease;
  z-index: 9998;
}

.follower.is-active {
  background-color: #eaeaea;
  transform: scale(2);
}

.follower.hovered {
  transform: scale(2.5);
  background-color: #eaeaea;
}


a {
  cursor: none;
}


.hero {
    background: url('assets/ad4137_7a384edf34ec4dbe95b190ad6bde0edamv2.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.center-content {
    z-index: 2;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.subtitle {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
}

header {
    background-color: #c0b4ac;
    height: 55px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    text-align: right;
}

.hidden-header {
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s ease;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.hidden-header.visible {
  transform: translateY(0);
  opacity: 1;
}


header img {
    height: 36px;
}

header a {
    text-align: right;
    color: #fdfcfc;
    font-size: 27px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

header a:hover {
    color: #5e5e5e;
}

.footer {
    position: relative;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1rem;
}

.footer a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 1;
}

.scroll-down {
    position: absolute;
    left: calc(50% - 20px);
    display: flex;
    align-items: center;
    animation: bounce 2s infinite;
    transition: transform 0.2s;
}

.scroll-down:hover {
    transform: translateY(5px);
}

.content-section {
    background-color: #dcdcd4;
    height: calc(100vh - 100px);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.section-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #111;
    position: relative;
    top: 30px;
}

.content-text {
    font-size: 1rem;
    position: relative;
    top: 30px;
    margin-top: 10px;
    color: #333;
}

.text-box-1 {
      max-width: 800px;
      margin: 60px auto;
    }

    .text-box-1 h1 {
      font-size: 2rem;
      font-weight: 600;
      color: #1e3a5f;
      margin-bottom: 20px;
    }

    .text-box-1 p {
      margin-bottom: 1.6em;
      text-align: left;
    }

    .highlight {
      color: #1e90ff;
      font-weight: 600;
    }

    @media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  header {
    padding: 0 1rem;
    justify-content: space-between;
  }

  .text-box-1 {
    padding: 0 1rem;
    margin: 40px auto;
  }

  .follower {
    display: none;
  }

  .cursor {
    display: none;
  }

  a {
    cursor: auto;
  }
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}