/* === INDEX (HOME) PAGE STYLES === */
.hero {
  text-align: center;
  background: linear-gradient(135deg, #ff9f98, #ffd44d);
  padding: 80px 20px;
  color: #fff;
  clip-path: ellipse(100% 85% at 50% 15%);
}

.hero h1 {
  font-size: 75px;
  margin: 0;
  font-family: 'Ranchers', cursive;
}

.homepage-images {
  max-width: 1280px;
  margin: 40px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.image-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-row img {
  width: 48%;
  max-height: 720px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.box {
  max-width: 1050px;
  margin: 60px auto;
  padding: 20px 20px;
  background-color: #fff;
  border-left: 16px solid #ff9f98;
  border-right: 16px solid #35b2ac;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
}

.box h2 {
  text-align: center;
  font-size: 34px;
  color: #f47174;
  margin-top: 30px;
}

.box h3 {
  text-align: center;
  font-size: 22px;
  color: #f47174;
  margin-bottom: 20px;
}

.box p,
.box ul {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  padding: 20px;
  color: #444;
}

.centered-list {
  list-style-type: disc;
  list-style-position: inside;
  text-align: center;
  padding-left: 0;
}

.instagram {
  text-align: center;
  padding: 40px 20px;
}

.instagram h2, .instagram a{
  width: 100%;
  padding: 2rem 1rem;
  display: block;
  margin: 0.5rem auto;
  text-align: center;
  font-size: 32px;
  color: #35b2ac;
  font-family: 'Ranchers', cursive;
  margin-bottom: 8px;
}

.insta-handle {
  display: inline-block;
  font-size: 18px;
  color: #444;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
}

.insta-handle:hover {
  text-decoration: underline;
  color: #35b2ac;
}

.insta-feed {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.insta-feed img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
  position: relative;
  max-width: 440px;
  margin: 30px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.slide {
  display: none;
  text-align: center;
}

.slide-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.slide-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 12px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border: none;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.cta {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #ff9f98;
}

.cta .nav-button {
  font-size: 18px;
  padding: 14px 28px;
  text-transform: none;
}

.insta-embed-wrapper {
  max-width: 100%;
  overflow: hidden;
  margin: 20px auto;
  display: flex;
  justify-content: center;
}

.snapwidget-widget {
  width: 100%;
  max-width: 500px;
  height: 500px;
  border: none;
}


@media (max-width: 768px) { 
  .homepage-images {
  max-width: 400px;
  margin: 40px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.image-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-row img {
  width: 65%;
  max-height: 720px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
}