/* 
  REDESIGN: "I ONLY DRINK THE GREATEST"
  THEME: Premium, Bold, Minimalist. Indigo & White.
*/

:root {
  --color-white: #FFFFFF;
  --color-off-white: #F8F7FB;
  --color-light-gray: #EDEAF3;

  --color-text-primary: #1F1F2E;
  --color-text-secondary: #5E5B75;

  --color-indigo-primary: #9F81B9;
  --color-indigo-soft: #C7B5D9;
  --color-indigo-faint: rgba(159, 129, 185, 0.12);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-primary);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.tm-symbol {
  font-size: 0.4em;
  vertical-align: super;
  margin-left: 2px;
}

/* =========================================
   
   ========================================= */







.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-primary);
}

.nav-item:hover {
  color: var(--color-indigo-primary);
}

.nav-item.active {
  font-weight: 800;
  color: var(--color-indigo-primary);
}

.nav-cta {
  padding: 12px 28px;
  background: var(--color-text-primary);
  color: var(--color-white);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--color-indigo-primary);
}

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

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(31, 31, 46, 0.35);
  color: var(--color-white);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  /* Space for header */
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-indigo-primary);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 5.5rem;
  /* Massive Scale */
  font-weight: 900;
  line-height: 0.95;
  color: var(--color-text-primary) !important;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.hero-content h1 .highlight {
  color: var(--color-indigo-primary);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--color-text-secondary) !important;
  max-width: 600px;
  margin-bottom: 50px;
  font-weight: 400;
}

.btn-primary {
  display: inline-block;
  background: var(--color-indigo-primary);
  color: var(--color-white);
  padding: 20px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  /* Sharp/Sophisticated */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(159, 129, 185, 0.3);
}

.hero-visual {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-visual .image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 700px;
  overflow: hidden;
  /* Removed bubble radius, went for sleek arch or simple rect */
  border-radius: 0px 0px 0px 100px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================
   STATEMENT SECTION
   ========================================= */
.statement-section {
  padding: 160px 0;
  text-align: center;
  background: var(--color-white);
}

.statement-text {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.text-indigo {
  color: var(--color-indigo-primary);
}

.statement-sub {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* =========================================
   VALUE PACKAGES
   ========================================= */
.packages-section {
  padding: 100px 0 160px;
  background: var(--color-off-white);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.package-visual {
  height: 600px;
  width: 100%;
  overflow: hidden;
}

.package-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Show the splash graphic nicely */
  transform: scale(1.1);
  /* Slight zoom */
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

.section-title.center {
  text-align: center;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.package-item {
  background: var(--color-white);
  padding: 30px;
  border-left: 4px solid var(--color-indigo-primary);
  box-shadow: 0 10px 30px rgba(31, 31, 46, 0.06);
  transition: transform 0.3s ease;
}

.package-item:hover {
  transform: translateX(10px);
}

.package-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* =========================================
   PARTNER FEATURES
   ========================================= */
.partner-section {
  padding: 160px 0;
  margin-top: 80px;
}

.collab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.collab-row:last-child {
  margin-bottom: 0;
}

.collab-text-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.collab-visual {
  height: auto;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(31, 31, 46, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.collab-visual:hover img {
  transform: scale(1.02);
}

.feature-card {
  padding: 40px 30px;
  background: var(--color-white);
  border-left: 4px solid var(--color-indigo-primary);
  /* Changed to left border for list feel */
  border-top: none;
  box-shadow: 0 10px 30px rgba(31, 31, 46, 0.06);
}

.feature-card:hover {
  transform: translateX(10px);
  /* Slide interaction */
  box-shadow: 0 15px 35px rgba(31, 31, 46, 0.1);
  background: var(--color-white);
  border-top-color: transparent;
  /* Reset from previous style */
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* =========================================
   CREATORS GALLERY
   ========================================= */
.creators-section {
  padding: 160px 0;
  background: linear-gradient(#12142A, #0E1022);
  /* Indigo-tinted dark for gallery */
  color: var(--color-white);
  overflow: hidden;
}

.creators-header {
  text-align: center;
  margin-bottom: 80px;
}

.creators-header .section-title {
  margin-bottom: 10px;
}

.creators-header p {
  color: var(--color-indigo-soft);
  font-size: 1.2rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Clip the translated strip to avoid layout shift */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  background: rgba(159, 129, 185, 0.9);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(31, 31, 46, 0.3);
}

.carousel-arrow span {
  display: block;
  margin-top: -3px;
}

.carousel-arrow:hover {
  background: rgba(159, 129, 185, 1);
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(159, 129, 185, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-arrow:active {
  transform: scale(1.05);
}

/* Hide arrows on mobile for cleaner touch experience */
@media (max-width: 767px) {
  .carousel-arrow {
    display: none;
  }

  .carousel-wrapper {
    gap: 0;
  }
}

.gallery-strip {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Optimized Gallery Card Styles */
.gallery-card {
  width: 250px;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0.6;
  flex: 0 0 auto;

  /* Performance Optimizations */
  transform: translateZ(0);
  /* Hardware acceleration trigger */
  will-change: transform, opacity;
  /* Hint to browser */

  /* Optimized Transition */
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  transform: scale(0.95);
  backface-visibility: hidden;
  /* Reduces flickering */
}

.gallery-card.featured {
  opacity: 1;
  box-shadow: 0 0 50px rgba(159, 129, 185, 0.35);
  transform: scale(1.15);
  z-index: 10;
}

.gallery-card:hover {
  opacity: 1;
  transform: translateY(-10px) scale(1.15) !important;
  z-index: 5;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  will-change: transform;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Animations handled via JS and Transitions mainly, 
   but keeping keyframes for initial load if needed */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
  }

  to {
    opacity: 0.6;
    transform: translateX(0) scale(0.95);
  }
}

@keyframes fadeInSlideFeatured {
  from {
    opacity: 0;
    transform: translateX(-20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.gallery-card[style*="display: block"] {
  animation: fadeInSlide 0.6s ease-out;
}

.gallery-card.featured[style*="display: block"] {
  animation: fadeInSlideFeatured 0.6s ease-out;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: 140px 0;
  background: var(--color-indigo-primary);
  text-align: center;
  color: var(--color-white);
}

.cta-section h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 40px;
}

.btn-white {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-indigo-primary);
  padding: 24px 60px;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.2s ease;
  box-shadow: 0 10px 30px rgba(31, 31, 46, 0.06);
}

.btn-white:hover {
  transform: scale(1.05);
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
  padding: 60px 0;
  background: var(--color-text-primary);
  color: var(--color-white);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }

  .nav-item,
  .nav-cta {
    font-size: 0.8rem;
  }

  .nav-cta {
    padding: 10px 18px;
  }

  .hero-content h1 {
    font-size: 4rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    /* Keep for potential legacy helpers if any */
  }

  .collab-row {
    gap: 40px;
  }

  .collab-visual {
    height: auto;
  }
}

/* Mobile-only navigation and stacked layouts */
@media (max-width: 767px) {
  .header-inner {
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .logo {
    order: 1;
  }

  .nav-links {
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    margin-top: 16px;
    background: rgba(31, 31, 46, 0.9);
    border-radius: 8px;
  }

  .nav-links .nav-item,
  .nav-links .nav-cta {
    color: var(--color-white);
  }

  .nav-links .nav-cta {
    background: var(--color-white);
    color: var(--color-text-primary);
  }

  /* Hide mobile nav until toggled for clean layout */
  .js-enabled .nav-links {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 8px;
    transition: max-height 0.25s ease, padding 0.25s ease;
  }

  .nav-open .nav-links {
    max-height: 400px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual .image-wrapper {
    max-height: 500px;
    border-radius: 0;
  }

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

  .package-visual {
    height: 300px;
  }

  .statement-text {
    font-size: 2.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .gallery-strip {
    gap: 20px;
  }

  .gallery-card.featured {
    transform: scale(1.05);
  }

  /* Stack columns on mobile */
  .collab-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-visual {
    height: auto;
  }

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

  .contact-text {
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-text p {
    margin: 0 auto;
  }

  .contact-card {
    padding: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   CONTACT PAGE SPECIFIC
   ========================================= */
.contact-page-section {
  padding-top: 180px;
  padding-bottom: 100px;
  background: var(--color-indigo-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-text p {
  color: var(--color-indigo-soft);
  font-size: 1.1rem;
  max-width: 500px;
}

.contact-card {
  background: var(--color-white);
  padding: 50px;
  border-radius: 4px;
  /* Sharp premium look */
  box-shadow: 0 40px 80px rgba(31, 31, 46, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  background: var(--color-off-white);
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: var(--color-white);
  border-color: var(--color-indigo-primary);
  box-shadow: 0 0 0 4px rgba(159, 129, 185, 0.12);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  padding: 18px;
  background: var(--color-indigo-primary);
  color: var(--color-white);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--color-indigo-dark);
}

/* Contact responsiveness overrides (after base contact styles) */
@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-text {
    text-align: center;
  }

  .contact-text p {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .contact-page-section {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: auto;
    align-items: flex-start;
  }

  .contact-text h1 {
    font-size: 2.4rem;
  }

  .contact-text p {
    font-size: 1rem;
  }

  .contact-card {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    min-height: 48px;
  }
}



/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("water_Site\main-folder\assets\images\contact\1000072769.jpg");
  /* 🔥 change if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 8%;
}

/* OVERLAY (for text readability) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(159, 129, 185, 0.12),
      rgba(159, 129, 185, 0.18));
  z-index: 1;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: var(--color-text-primary);
}

/* EYEBROW */
.hero-content .eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* MAIN HEADING */
.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: var(--color-text-primary) !important;
}

/* HIGHLIGHT TEXT */
.hero-content .highlight {
  color: var(--color-indigo-primary);
}

/* TM SYMBOL */
.tm-symbol {
  font-size: 0.35em;
  vertical-align: super;
  margin-left: 4px;
  color: var(--color-text-primary);
}

/* SUB TEXT */
.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 42px;
  opacity: 0.95;
  color: var(--color-text-secondary) !important;
}

/* CTA BUTTON */
.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--color-indigo-primary);
  background: var(--color-indigo-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-indigo-primary);
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
  .hero-section {
    padding: 0 6%;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }
}


/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
}

/* BACKGROUND IMAGE */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(159, 129, 185, 0.12),
      rgba(159, 129, 185, 0.18));
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: var(--color-text-primary);
  text-shadow: 0 2px 8px rgba(159, 129, 185, 0.12);
}

/* EYEBROW */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}

/* HEADING */
.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  color: var(--color-text-primary) !important;
}

.highlight {
  color: var(--color-indigo-primary);
}

.tm-symbol {
  font-size: 0.35em;
  vertical-align: super;
  margin-left: 4px;
}

/* SUBTEXT */
.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 42px;
  opacity: 0.95;
  color: var(--color-text-secondary) !important;
}

/* BUTTON */
.btn-primary {
  padding: 14px 40px;
  border: 2px solid var(--color-indigo-primary);
  background: var(--color-indigo-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-indigo-primary);
}

/* MOBILE */
@media (max-width: 767px) {
  .hero-section {
    padding: 0 6%;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .statement-sub {
    color: var(--color-text-primary);
  }
}