:root {
  --primary-light-pink: #fbe3eb;
}

body {
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

body,
html {
  margin: 0;
  padding: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../image/copptide.png") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* dim overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

section {
  padding: 80px 0;
}

.navbar-custom {
  background-color: var(--primary-light-pink);
}

.contact-section {
  background-color: var(--primary-light-pink);
}

footer {
  background-color: #f8f9fa;
  padding-top: 10px;
  margin-top: 0;
}

.cta-color {
  background-color: #f8f9fa;
}

#contact {
  padding-bottom: 20px;
  margin-bottom: 0;
}

.contact-info i {
  margin-right: 8px;
  color: #000;
}

.sketch-underline {
  position: relative;
  display: inline-block;
}

.sketch-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: black;
  transform: rotate(-1deg);
  box-shadow: 0 2px black, 1px 1px black, 2px 0 black, 3px 1px black,
    4px 2px black, 5px 1px black;
}

.image-hover-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.image-hover-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.image-hover-wrapper:hover img {
  transform: scale(1.05);
}

.hover-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-hover-wrapper:hover .hover-caption {
  opacity: 1;
}
