*{
    padding:0;
    margin:0;
}

:root{
    --primary: #662C23;
    --secondary: #52231C;
    --light: #C39B95;
    --negative: #fff;
}

.hero {
  background-image: url('images/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 40vh;
  position: relative;
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero-content {
  z-index: 1;
  text-align: center;
}

.btn-custom {
  background: linear-gradient(150deg, var(--primary) 0%, var(--light) 50%, var(--primary) 100%);
  border-color: var(--negative);
  color: var(--negative);
}

.btn-custom:hover  {
  background: linear-gradient(150deg, var(--light) 0%, var(--primary) 50%, var(--light) 100%);
  border-color: var(--primary);
  color: var(--negative);
}

a:active {
  color: #fff;
}

.text-bg-custom {
    background: linear-gradient(150deg, var(--light) 0%, var(--primary) 100%) !important;
}

.wave-container {
  position: relative;
  top: -5vh;
  width: 100%;
  height: 10vh;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave {
  position: absolute;
  width: 200%;
  height: 10vh;
  background: none;
  bottom: 0;
}

.wave.wave1 {
  z-index: 2;
  animation: moveWaves 5s infinite linear;
  opacity: 0.7; 
  fill: rgba(255, 255, 255, 0.6);
}

.wave.wave2 {
  z-index: 1;
  animation: moveWaves 8s infinite linear;
  opacity: 0.5;
  fill: rgba(255, 255, 255, 0.8);
}

.wave.wave3 {
  z-index: 1;
  animation: moveWaves 10s infinite linear;
  opacity: 0.3;
  fill: rgba(255, 255, 255, 0.9);
}

.custom-nav-text{
    letter-spacing: 0.2rem;
}

.image-container img {
    width: 100%;
    display: block;
    height: auto;
    opacity: .8;
  }

/* .img-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    background-color: rgba(32, 32, 32, 0.3);
    z-index: 1;
    border-radius: 1rem;
  }
.blog-title{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    padding: 1rem;
    z-index: 2;
} */

.blog-link {
  color: #000;
  text-decoration: none;
}

.image-container img {
  transform: scale(.7);
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1); /* Zooms in the image by 10% */
}

/* .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card {
  height: 100%;
}

.card-back {
  transform: rotateY(180deg); 
  background: linear-gradient(150deg, var(--light) 0%, var(--primary) 50%, var(--light) 100%);
  border-radius: 1rem;
}

.card-back a{
  color: #fff;
}

.card-back .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; 
  height: 100%; 
}

.card-back h3 {
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
  padding: 2rem;
} */


@keyframes moveWaves {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
