/* Geskenkelys page specific styles */

.geskenkelys-page {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

/* Active navigation link styling for geskenkelys page */
.nav-link-active {
  font-weight: 700;
}

/* Hero Section */
.gift-hero-section {
  width: 100%;
  padding: 80px 156px;
  text-align: center;
}

.gift-hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gift-title {
  color: #558bc9;
  font-family:
    "Rosabelia SLDT",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 58px;
}

.gift-description {
  font-family:
    "Larken DEMO",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 20px;
  color: #ab9a7b;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  line-height: 1.5;
  max-width: 100%;
}

/* Gift Registry Section */
.gift-registry-section {
  display: flex;
  width: 100%;
  padding: 0 156px 60px 156px;
  justify-content: center;
  align-items: center;
}

.gift-registry-container {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* Gift Cards */
.gift-card {
  background-color: #558bc9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 355px;
  min-width: 240px;
  min-height: 385px;
  padding: 122px 62px;
  text-align: center;
}

.gift-card-blue {
  background-color: #558bc9;
}

.gift-card-icon {
  width: 79px;
  height: 79px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 46px;
}

.gift-card-link {
  width: 100%;
}

.gift-link {
  font-family:
    "Larken DEMO",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  font-size: 22px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4.4px;
  text-decoration: underline;
  line-height: 1.2;
}

.gift-link:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* Center Image */
.gift-center-image {
  width: 355px;
  min-width: 240px;
  min-height: 385px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 0.92;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
  .gift-hero-section {
    padding: 80px 20px;
  }

  .gift-title {
    font-size: 48px;
  }

  .gift-description {
    margin-top: 40px;
  }

  .gift-registry-section {
    padding: 0 20px 60px 20px;
  }

  .gift-card {
    padding: 100px 20px;
    width: 100%;
    max-width: 355px;
  }

  .gift-center-image {
    width: 100%;
    max-width: 355px;
  }
}

@media (max-width: 768px) {
  .gift-title {
    margin-bottom: 40px;
  }

  .gift-description {
    font-size: 18px;
    letter-spacing: 2.5px;
  }

  .gift-registry-container {
    flex-direction: column;
    gap: 20px;
  }

  .gift-card {
    padding: 80px 20px;
    min-height: 300px;
  }

  .gift-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }

  .gift-link {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .gift-center-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .gift-hero-section {
    padding: 60px 20px;
  }

  .gift-title {
    margin-bottom: 30px;
  }

  .gift-description {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .gift-registry-section {
    padding: 0 20px 40px 20px;
  }

  .gift-card {
    padding: 60px 20px;
    min-height: 250px;
  }

  .gift-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
  }

  .gift-link {
    font-size: 16px;
    letter-spacing: 2.5px;
  }

  .gift-center-image {
    min-height: 250px;
  }
}
