
: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.png");
  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-content h1 {
  color: white;
}

.hero-content p {
  color: white;
}

.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);
}