* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


@font-face {
  font-family: 'south';
  src: url('Southern\ Barn.otf');
}

body {
  font-family: 'south';
  line-height: 1.6;
  color: #277F98;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}



.hero {
  height: 100vh;
  background-color: #fceaffb1;
  background-image: url('images/tiled_squared_watercolor_1920x1080.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;

}

.radio {
  position: absolute;
  top: 63%;
  right: 20px;
  width: auto;
  height: 150px;
  animation: float 3s ease-in-out infinite;


}

.song {
  position: absolute;
  top: 85%;
  right: 20px;
  width: 300px;
  height: 80px;
}

.cam {
  position: absolute;
  top: 15%;
  right: 0%;
  width: 200px;
  height: auto;
  transform: scaleX(1);
  animation: float 2s ease-in-out infinite;
}


.cam:hover {
  filter: drop-shadow(0 0 5px#277F98) drop-shadow(0 0 10px#277F98) drop-shadow(0 0 20px#E8FFB7);
}

.radio:hover {
  filter: drop-shadow(0 0 5px#277F98) drop-shadow(0 0 10px#277F98) drop-shadow(0 0 20px#E8FFB7);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.233);
  z-index: -1;
}

.hero h1 {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #E8FFB7;
  color: #277F98;
  font-size: 10rem;
  text-decoration-color: #f78fb3;
  text-shadow: 2px 2px 0 #ffff00,

}

.hero quote {
  flex-direction: column;
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #277F98;

}

.highlight {
  color: #f78fb3;
  font-weight: bold;
  -webkit-text-stroke: 1px #ffffff;
  text-shadow: 2px 2px 4px rgba(255, 105, 185, 0.913);
}

.scroll-button {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #ff64a7;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s;
}

.scroll-button:hover {
  background: #e389ff;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.pastel-blue {
  background-color: #DEDFFF;
}


.pastel-green {
  background-color: #E8FFB7;
}



.footer {
  text-align: center;
  padding: 1rem;
  background-color:#E8FFB7;
  font-size: 0.9rem;
}

.about-content {
  display: flex;
  text-align: left;
  gap: 20px;
  justify-content: flex-start;
  padding-left: 80px;
}

.mypic {
  width: 400px;
  height: auto;
  border-radius: 10px;
}

.text {
  flex: 1;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section {
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    color: #277F98;
  }

  .mypic {
    width: 200px;
  }

  .text {
    width: 100%;
    padding: 0 1rem;
  }

  .scroll-button {
    margin-top: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

.menu {
  font-size: 20px;
  display: flex;
  justify-content: right;
  align-items: center;
  padding: 0em;
  z-index: 10;
  background-color: #E8FFB7;
  color: #277F98;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.quote {
  top: 10%;
  font-size: 15px;
  background-color: #E8FFB7;
  color: #277F98;
  text-align: center;
  font-style: italic;
}
iframe {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}