.menu-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;
  cursor: pointer;
  background-color: #17888d;
  color: white;
  border-radius: 5px;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
}
.hero {
  height: 60vh;
  font-family: sharktooth, sans-serif;
  font-weight: 900 !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("imgs/screenie.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.social-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.social-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-list li::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Individual icons */
.gmail::before {
  background-image: url("imgs/gmail.png");
}
.instagram::before {
  background-image: url("imgs/instagram.png");
}
.facebook::before {
  background-image: url("imgs/facebook.png");
}
.etsy::before {
  background-image: url("imgs/etsy-shop.png");
}
.phone::before {
  background-image: url("imgs/phone.png");
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

.hero h1 {
  font-size: 3rem;

  position: relative;
  z-index: 1;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

h1 {
  font-family: tangerine, sans-serif;
  font-size: 200px !important;
  font-weight: 1000;
  font-style: bold;
}

/* Sidebar base (desktop by default) */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 70px;
  overflow: hidden;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding-left: 0;
  box-sizing: border-box;
  font-size: 33px;
}

.sidebar.open {
  width: 100vw;
  background-color: #59a9aa;
  padding-left: 60px;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  display: flex;
  gap: 50px;
  width: 100%;
  justify-content: flex-start;
}

.sidebar ul li {
  text-align: center;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 10px 15px;
}

.sidebar ul li a:hover {
  background-color: #61b4b6;
  border-radius: 5px;
}

/* ---------- MOBILE DROPDOWN STYLES ---------- */
@media (max-width: 768px) {
  .col-12 {
    width: 90%;
    max-width: 100%;
    padding-top: 10px;
    box-sizing: border-box;
    margin: 0 auto;
    transform: translateX(-30px);
  }
  .sidebar {
    flex-direction: row;
    width: 100vw;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    padding: 0;
    align-items: flex-start;
    border-radius: 0;
    background-color: #59a9aa;
  }

  .sidebar.open {
    height: 100vh;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidebar ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .sidebar ul li {
    width: 100%;
  }

  .sidebar ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 12px 0;
  }
}
:root {
  --slide-width: 500px;
  --gap: 30px;
}

body {
  margin: 0;
  background: #fdfdfd;
  overflow-x: hidden;
  font-family: "Sour Gummy", sans-serif !important;
}

.carousel-viewport {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: none !important; /* This must be none */
}

.carousel-slide {
  min-width: var(--slide-width);
  height: 400px;
  transition: opacity 0.4s ease;
  opacity: 0.15;
  border-radius: 15px;
  overflow: hidden;
}

.carousel-slide.active {
  opacity: 1; /* Center image is not faded */
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
}
#prevBtn {
  left: 30px;
}
#nextBtn {
  right: 30px;
}

/* Mobile Styles */
@media (max-width: 767px) {
  :root {
    --slide-width: 60vw;
    --gap: 5px;
  }

  .carousel-viewport {
    height: 300px;
  }

  .carousel-slide {
    height: 300px;
  }

  .carousel-slide img {
    max-height: none;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  #prevBtn {
    left: 10px;
  }

  #nextBtn {
    right: 10px;
  }

  h1 {
    font-size: 75px !important;
  }
}

.story {
  max-width: 100%;
  padding: 40px 30px;
  background-color: #59a9aa;
  border-radius: 22px;
  color: white !important;
  height: 100%;
  font-size: 30px;
}

.story-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Pupper Image Styles */
.pupper-wrapper {
  display: flex;
  align-items: center;
}

.pupper {
  width: 100%;
}

.pupper-img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
  object-fit: contain; /* Keeps entire image visible */
}

/* Responsive Layout */
@media (max-width: 991px) {
  .story-section .row {
    flex-direction: column;
  }

  .pupper-wrapper {
    margin-top: 30px;
  }

  .pupper {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .pupper-wrapper {
    justify-content: center; /* Centers image nicely on desktop */
  }
}
