/* =====================================================
   SIPS GALORE — styles.css
   Fully responsive across mobile, tablet, desktop
   ===================================================== */

/* BASE */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #FFF5F7;
}


/* ////////////////////////////////////////////////////
   NAVIGATION
//////////////////////////////////////////////////// */
.navbar {
  background-color: #FDD1DE;
  min-height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 1rem;
}

/* Remove Bulma's max-height restriction on logo */
.navbar-item img {
  max-height: none;
}

.logo {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.navbar-item {
  color: #E15B7E;
  position: relative;
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.navbar-item:hover {
  transform: scale(1.08);
  background-color: transparent !important;
  color: #E15B7E !important;
}
.navbar-item span {
  position: relative;
  display: inline-block;
}

/* Underline effect */
.navbar-item span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background-color: #E15B7E;
  transition: width 0.3s ease;
}




.navbar-item.active span::after { width: 100%; height: 4px; }
.navbar-item.active { font-weight: 600; }




/* Contact button */
#contactbtn {
  background-color: #E15B7E;
  color: #FDD1DE;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
#contactbtn:hover {
  background-color: #FDD1DE;
  color: #E15B7E;
  border: 2px solid #E15B7E;
}

/* Hamburger colour fix */
.navbar-burger span {
  background-color: #E15B7E;
}


/* ////////////////////////////////////////////////////
   HERO BANNER
//////////////////////////////////////////////////// */
.hero {
  background-image: url('../res/banner-img.png');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content .title,
.hero-content .subtitle {
  color: #FDD1DE;
  text-align: center;
}

#headertitle {
  font-size: clamp(3rem, 8vw, 7rem); /* scales with screen */
}


/* ////////////////////////////////////////////////////
   HOME — SERVICES SECTION
//////////////////////////////////////////////////// */
.servicestitle {
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 700;
  color: #E15B7E;
  margin-top: 12px;
  margin-bottom: 40px;
}

.service-card {
  padding: 10px;
}

.service-card img {
  width: 100%;
  max-width: 280px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.service-title {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #E15B7E;
}


/* ////////////////////////////////////////////////////
   HOME — EVENTS SECTIONS (Private Events / Vibe Vials)
//////////////////////////////////////////////////// */
.options-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #E15B7E;
}

.uniform-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
}

.content {
  font-size: 1.2rem;
  color: #486284;
  line-height: 1.7;
}

/* Stack columns on mobile */
.columns.is-vcentered {
  gap: 1.5rem;
}


/* ////////////////////////////////////////////////////
   HOME — REVIEWS SECTION
//////////////////////////////////////////////////// */
.review-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #E15B7E;
  margin-bottom: 40px;
}

.review-section {
  margin-top: 20px;
  padding: 40px 20px;
}

.review-box {
  background-color: #FDD1DE;
  color: #486284;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
}

.stars {
  font-size: 1.8rem;
  color: #E15B7E;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.client {
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}

.more-reviews-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #E15B7E;
  text-decoration: none;
  transition: 0.3s ease;
  display: block;
  text-align: center;
  margin-top: 24px;
}
.more-reviews-link:hover {
  letter-spacing: 1px;
  color: #486284;
}


/* ////////////////////////////////////////////////////
   HOME — SOCIALS SECTION
//////////////////////////////////////////////////// */
.custom-divider {
  border: none;
  height: 5px;
  background-color: #E15B7E;
  margin: 10px 0;
}

.icon-title {
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 700;
  color: #E15B7E;
  margin-bottom: 24px;
}

.insta-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.3s ease;
}
.insta-icon:hover { transform: scale(1.1); }


/* ////////////////////////////////////////////////////
   FOOTER
//////////////////////////////////////////////////// */
.footer {
  background-color: #E15B7E;
  padding: 48px 16px 24px;
  color: #FDD1DE;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: auto;
  height: 80px;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #FDD1DE;
  opacity: 0.85;
  line-height: 1.5;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FDD1DE;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-box a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FDD1DE;
  font-size: 0.95rem;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-box a:hover {
  color: #486284;
  padding-left: 6px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes icons white */
}

.footer-location {
  font-size: 0.95rem;
  color: #FDD1DE;
  margin-top: 8px;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 16px 0;
}

.copyright {
  font-size: 0.85rem;
  text-align: center;
  color: #FDD1DE;
  opacity: 0.8;
}






















/* ////////////////////////////////////////////////////
   ABOUT PAGE
//////////////////////////////////////////////////// */
.about-section {
  margin-top: 20px;
  padding: 40px 16px;
}

.sub-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: #E15B7E;
  margin-bottom: 16px;
}

.columns { gap: 1.5rem; }

.sips-img {
  width: 100%;
  max-width: 433px;
  height: auto;
  max-height: 542px;
  object-fit: cover;
  border-radius: 8px;
}

.collage-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}


/* ////////////////////////////////////////////////////
   GALLERY PAGE
//////////////////////////////////////////////////// */
.weddingtitle, .bdaytitle {
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 700;
  color: #E15B7E;
  margin-top: 12px;
  margin-bottom: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  position: relative;
  cursor: pointer;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
}


/* ////////////////////////////////////////////////////
   VIBE VIALS PAGE
//////////////////////////////////////////////////// */
.vial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #FDD1DE;
  border-radius: 10px;
  overflow: hidden;
}

.vial-image {
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}

.vial-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.vial-card .card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.vials-title {
  font-weight: bold;
  font-size: 1.15rem;
  color: #E15B7E;
  margin-bottom: 4px;
}

.vials-subtitle {
  font-size: 0.88rem;
  color: #E15B7E;
  margin-bottom: 10px;
}

.card-footer-left {
  margin-top: auto;
  padding-top: 12px;
}


/* ////////////////////////////////////////////////////
   MENU PAGE
//////////////////////////////////////////////////// */
.flavour-card {
  background-color: #FDD1DE;
  color: #486284;
  padding: 24px;
  border-radius: 10px;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flavour-card h3 {
  margin-top: 5px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #E15B7E;
}

.flavour-card p {
  margin-top: 8px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #486284;
}

#cups { font-weight: 600; color: #486284; }

.menu-col { align-items: stretch; }

.note-text {
  font-size: 1.15rem;
  font-weight: 300;
  margin-top: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.note-text2 {
  font-size: 1rem;
  font-weight: 300;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.menu-title {
  font-size: clamp(1.6rem, 4vw, 40px);
  font-weight: 700;
  color: #E15B7E;
  margin-top: 12px;
  margin-bottom: 32px;
}

.contact-btn {
  font-size: 1.15rem;
  font-weight: 700;
  background-color: #E15B7E;
  color: #FDD1DE;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: 0.3s ease;
}
.contact-btn:hover {
  background-color: #FDD1DE;
  color: #E15B7E;
  border: 2px solid #E15B7E;
}


/* ////////////////////////////////////////////////////
   RESPONSIVE — TABLET (max 1024px)
//////////////////////////////////////////////////// */
@media screen and (max-width: 1024px) {

  .service-card img {
    height: 240px;
  }

  .vial-image {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ////////////////////////////////////////////////////
   RESPONSIVE — MOBILE (max 768px)
//////////////////////////////////////////////////// */
@media screen and (max-width: 1023px) {
  
  .navbar-menu.is-active {
    display: block !important;
    background-color: #FDD1DE;
    padding: 0.5rem 1rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .navbar-menu.is-active .navbar-item {
    color: #E15B7E;
    border-bottom: 1px solid rgba(225, 91, 126, 0.15);
  }

  /* REVIEWS — single column */
  .review-section .columns {
    flex-direction: column;
  }

  .review-section .columns .column {
    width: 100%;
    margin-bottom: 16px;
  }

  /* GALLERY */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  /* VIBE VIALS CARDS — single column */
  .columns .column.is-one-third {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }

  .vial-image {
    height: 240px;
  }

  /* MENU flavour cards — single column */
  .menu-col .column {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }


  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* ABOUT */
  .sips-img {
    max-height: 320px;
  }
}



