:root {
  --white: #ffffff;
  --tip-bg: #cddfd5;
  --dark-green: #2c3e50;
  --dark-yellow: #f39c12;
  --dark-blue: #2b3653;
}

.font-playfair {
  font-family: playfair display;
}

.hero-section {
  background-image: url("../image/hero-slide1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-section .row {
  align-items: center;
}

.about-section .col-6:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.tip {
  color: var(--dark-green);
  text-transform: uppercase;
  background-color: var(--tip-bg);
}

.txt-dark-yellow {
  color: var(--dark-yellow);
}
.txt-white {
  color: var(--white);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
}

.btn-package {
  background-color: var(--wh);
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
  padding: 5px 30px;
}

.btn-package:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}

.btn-hero {
  background-color: var(--dark-yellow);
  color: var(--white);
  border: 2px solid var(--dark-yellow);
  padding: 10px 40px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: var(--dark-blue);
  color: var(--white);
}

.btn-outline-hero {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 40px;
  transition: all 0.3s ease;
}

.btn-outline-hero:hover {
  background-color: var(--white);
  color: var(--dark-blue);
  border: 2px solid var(--white);
  padding: 10px 40px;
}

.card-overlay-gradient {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
}

.card-bg {
  background-color: rgba(145, 145, 145, 0.212) !important;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Subtle dark text shadow for light backgrounds */
.text-shadow-sm {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-link {
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--dark-yellow);
}
