@import url("https://use.typekit.net/ppy0avf.css");
body {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.sodas-section {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-flow: column wrap;
  overflow-x: auto;
  background-color: #c2b0d8;
}

.section-title {
  width: 100%;
}

/* start */
.soda-scroll {
  width: 100%; /* Full width of the site */
  display: flex; /* Enable flexbox */
  overflow-x: auto; /* Enable horizontal scrolling */
  scroll-behavior: smooth;
  margin-top: 6em;
  margin-bottom: 2em;
}

.soda-scroll::-webkit-scrollbar {
  display: none;
}

.soda-photos {
  display: flex;
  width: 100%;
  margin-bottom: 2em;
  gap: 60px; /* Increased gap between sodas - adjust this value */
}

.soda-photos img {
  flex: 0 0 calc(25% - 45px); /* Adjust this to account for the new gap */
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
  object-fit: cover;
}

.soda-photos img:hover {
  transform: scale(1.05);
}

.info-video {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-video video {
  width: 98%;
  margin: 0;
  margin-top: 0.5em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  max-width: 1200px; /* Maximum width for desktop */
  aspect-ratio: 1920 /1080;
  justify-content: center;
  display: block;
}

.infro h1 {
  font-family: "bogart", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 4rem;
  font-weight: bold;
}

.infro p {
  font-size: 1.1rem;
  line-height: 1.6;
}



.infro {
  text-align: center;
  padding: 15vw 20vw 12vw 20vw;
  width: 100%;
  min-height: 600px;
  background-color: #b9d531;
  background-image: url(../photos/fruit-top-left.png),
    url(../photos/fruit-top-right.png), url(../photos/fruit-bottom-right.png),
    url(../photos/fruit-bottom-left.png);
  background-repeat: no-repeat;
  background-size: 18%;
  background-position: top 0 left 0, top 0 right 0, bottom 0 right 0, bottom 0 left 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 0;
}

.infro::after {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  aspect-ratio: 2000 / 79;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

.about {
  width: 100%;
  max-width: 800px;
  color: white;
  position: relative;
  z-index: 2;
}

.about h1 {
  margin: 0 0 1.5em 0;
  line-height: 1.1;
  font-family: "bogart", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.about p {
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  margin: 0;
  hyphens: none;
  word-spacing: normal;
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
  .infro {
    padding: 15vw 15vw 12vw 15vw;
    background-size: 15%;
    background-position: top 0 left 0, top 0 right 0, bottom 0 right 0, bottom 0 left 0;
  }
  
  .about {
    max-width: 700px;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .infro {
    padding: 20vw 10vw 15vw 10vw;
    background-size: 12%;
    background-position: top 0 left 0, top 0 right 0, bottom 0 right 0, bottom 0 left 0;
    min-height: 500px;
  }
  
  .about {
    max-width: 100%;
  }
  
  .about p {
    text-align: center;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .infro {
    padding: 25vw 8vw 18vw 8vw;
    background-size: 10%;
    background-position: top 0 left 0, top 0 right 0, bottom 0 right 0, bottom 0 left 0;
  }
}
/* Laurissa's Section Below  (Header/Navbar Styles and footer and gallary) */

.logo-top {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  left: 0;
  right: 0;
}

#logo-top {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.main-header {
  background-color: #c2b0d8;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.5em;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 1em;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Yellow Hero Section */
.logo-top {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

#logo-top {
  width: 100%;
  display: block;
}

/* Make the sodas section overlap with yellow image */
.sodas-section {
  margin-top: -80px;
  position: relative;
  z-index: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .navbar {
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* Gallary Section by Laurissa*/

/* Photo Gallery Section */
.photo-gallery {
  padding: 1em;
  background-color: transparent;
  position: relative;
  z-index: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: 250px;
}

.gallery-grid img:nth-child(1) {
  grid-row: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-row: span 3;
}

.gallery-grid img:nth-child(3) {
  grid-row: span 1;
}

.gallery-grid img:nth-child(4) {
  grid-row: span 2;
}

.gallery-grid img:nth-child(5) {
  grid-row: span 1;
}

.gallery-grid img:nth-child(6) {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  background-color: #ffe5f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    grid-row: span 1 !important;
  }

  footer {
    padding-top: 20%;
  }
}

.survey {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.friends {
  color: white;
  font-family: "bogart", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#survey {
  background-color: #8eccd2;
  padding-top: 6em;
  padding-bottom: 9em;
  position: relative;
}

#survey::before {
  /* this attaches the blue ripple to the survey */
  content: "";
 
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  aspect-ratio: 2000 / 79;
  position: absolute;
  top: -4.5%; /* -3.95%; */
  left: 0;
}

.trigger-btn {
  font-family: "bogart", sans-serif;
  font-weight: 600;
  font-style: normal;
  background: #d7328a;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 25px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: auto;
  display: block;
}

.trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.survey-popup {
  background: #c2b0d8;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #d7328a;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-btn:hover {
}

h2 {
  font-family: "bogart", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #d7328a;
  margin-bottom: 10px;
  font-size: 24px;
}

.subtitle {
  color: white;
  margin-bottom: 30px;
  font-size: 12px;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #d7328a;
}
textarea {
  resize: vertical;
  min-height: 100px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #d7328a;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.submit-btn {
  font-family: "bogart", sans-serif;
  font-weight: 600;
  font-style: normal;
  background: #d7328a;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 25px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-message.active {
  display: block;
}

.success-icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: #d7328a;
}

.success-message h3 {
  font-family: "bogart", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 10px;
  color: #d7328a;
}

.success-message p {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
}
/* START Footer Section by Laurissa*/
footer {
  margin: 0;
  padding: 16.36% 0 0 0;
  width: 100%;
  aspect-ratio: 2500 / 1149;
  display: flex;
  flex-flow: column;
  background: url(../photos/poppi\ footer\ tall.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}

.button-container {
  text-align: center;
  padding-top: 2em;
}

.poppi-button {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: #8eccd2;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.poppi-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.5s ease;
}

.poppi-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.poppi-button:hover::before {
  left: 100%;
}

.poppi-button:active {
  transform: translateY(-1px);
}

/* Copyright Section */
.copyright {
  background-color: transparent;
  text-align: center;
  padding: 20px;
  margin: 0;
  position: relative;
  z-index: 2;
  width: 50%;
}

.copyright p {
  color: white;
  font-size: 10px;
  margin: 0;
}
/* Footer Section by Laurissa ends here*/
