/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  background: #d9d9d9;
}

/* NAVIGATION BAR */
.nav-bar {
  width: 100%;
  background: rgba(50, 50, 50, 0.55);
  backdrop-filter: blur(4px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  padding: 12px 0;
}

.nav-bar ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

.nav-bar a {
  color: #dcdcdc;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 4px;
  transition: color .35s ease, opacity .35s ease;
  opacity: 0.75;
}

.nav-bar a:hover {
  color: white;
  opacity: 1;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: white;
  transition: width .35s ease;
}

.nav-bar a:hover::after {
  width: 100%;
}

/* NAV ANT */
.nav-ant {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 24px;
  height: 24px;
  background-image: url('https://i.imgur.com/73Hk3sV.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  opacity: 0.95;
  animation: navCrawl 14s linear infinite;
}

@keyframes navCrawl {
  0% { transform: translate(-50px, -50%) rotate(0deg); }
  100% { transform: translate(calc(100vw + 50px), -50%) rotate(360deg); }
}

/* IMPORT AGUAFINA SCRIPT FONT */
@import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&display=swap');

/* HEADER WRAPPER */
.video-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* HEADER VIDEO BACKGROUND */
.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(70%);
}


/* HEADER TEXT */
.header-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Aguafina Script', cursive;
    font-size: 5rem;
    color: white;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0,0,0,0.55);
    animation: fadeSlide 6s ease-in-out infinite;
}

/* FADE + SLIDE RIGHT */
@keyframes fadeSlide {
    0% { opacity: 0; transform: translate(-60%, -50%); }
    40% { opacity: 1; transform: translate(-50%, -50%); }
    70% { opacity: 1; transform: translate(-40%, -50%); }
    100% { opacity: 0; transform: translate(-30%, -50%); }
}


.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(228, 23, 23);
  text-align: center;
  padding: 0 20px;
}

.header-content h1 {
  font-size: 3em;
}

.header-content p {
  font-size: 1.2em;
}

/* SECTION WRAPPER */
.section-wrapper {
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

.section-wrapper h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: #222;
}

  /* Simple styling for the buy button */
  .buy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
  }

  .buy-button:hover {
    background-color: #e55a00;
  }

/* ANTS */
.ant {
  position: absolute;
  width: 35px;
  height: 35px;
  background-image: url('https://i.imgur.com/73Hk3sV.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  animation: crawl 18s linear infinite;
}

.ant:nth-child(1) { top: 10%; left: -50px; animation-delay: 0s; }
.ant:nth-child(2) { top: 70%; left: -50px; animation-delay: 3s; }
.ant:nth-child(3) { top: 40%; left: -50px; animation-delay: 6s; }
.ant:nth-child(4) { top: 85%; left: -50px; animation-delay: 9s; }
.ant:nth-child(5) { top: 20%; left: -50px; animation-delay: 12s; }

@keyframes crawl {
  0% { transform: translateX(0) rotate(0deg); }
  100% { transform: translateX(120vw) rotate(360deg); }
}

/* GRID ITEMS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.item {
  display: block;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transition: transform .3s ease;
}

.item:hover {
  transform: translateY(-6px);
}

.item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.info {
  padding: 18px 20px;
}

.info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
}

.info p {
  margin-top: 8px;
  color: #555;
  font-size: .95rem;
}

.buy-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #e65c00;
}

/* IMPORT AGUAFINA SCRIPT FONT */
@import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&display=swap');

/* SPIRAL TEXT CONTAINER */
.spiral-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    animation: spiralMove 7s ease-in-out forwards;
    text-align: center;
}

/* SPIRAL TEXT FONT STYLE */
.spiral-text h1,
.spiral-text p {
    font-family: 'Aguafina Script', cursive;
    color: white;
    text-shadow: 0 0 6px rgba(0,0,0,0.55);
    white-space: nowrap;
}

.spiral-text h1 {
    font-size: 4rem;
}

.spiral-text p {
    font-size: 2rem;
}

/* ANIMATION — SPIRAL DOWNWARD TO BOTTOM RIGHT */
@keyframes spiralMove {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 1;
    }
    40% {
        transform: translate(20%, 10%) rotate(120deg) scale(1.2);
        opacity: 1;
    }
    70% {
        transform: translate(60%, 70%) rotate(240deg) scale(1.3);
        opacity: 1;
    }
    100% {
        transform: translate(120%, 140%) rotate(360deg) scale(1.4);
        opacity: 0.95;
    }
}

/* IMPORT AGUAFINA SCRIPT FONT */
@import url('https://fonts.googleapis.com/css2?family=Aguafina+Script&display=swap');

/* SPIRAL TEXT CONTAINER */
.spiral-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    animation: spiralMove 7s ease-in-out forwards;
    text-align: center;
    pointer-events: none; /* avoids blocking navigation clicks */
}

/* SPIRAL TEXT FONT STYLE */
.spiral-text h1,
.spiral-text p {
    font-family: 'Aguafina Script', cursive;
    color: white;
    text-shadow: 0 0 6px rgba(0,0,0,0.55);
    white-space: nowrap;
}

.spiral-text h1 {
    font-size: 4rem;
}

.spiral-text p {
    font-size: 2rem;
}

/* SPIRAL + FADE DOWN TO BOTTOM RIGHT */
@keyframes spiralMove {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 1;
    }
    30% {
        transform: translate(10%, 0%) rotate(120deg) scale(1.15);
        opacity: 0.95;
    }
    60% {
        transform: translate(40%, 60%) rotate(240deg) scale(1.25);
        opacity: 0.85;
    }
    100% {
        transform: translate(120%, 140%) rotate(360deg) scale(1.35);
        opacity: 0;
    }
}

/* ---------- GGI SECTION ---------- */

.ggi-collective {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.ggi-title {
  font-size: 2.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ggi-sub {
  opacity: .7;
  margin-bottom: 20px;
}

/* Blue flame animation */
.blue-flame-anim {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, #00aaff, transparent);
  filter: blur(40px);
  animation: flamePulse 3s infinite ease-in-out;
  z-index: 0;
}

@keyframes flamePulse {
  0% { transform: translateX(-50%) scale(1); opacity: .5; }
  50% { transform: translateX(-50%) scale(1.4); opacity: 1; }
  100% { transform: translateX(-50%) scale(1); opacity: .5; }
}

/* Logo row */
.ggi-logo-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  z-index: 2;
  position: relative;
}

.ggi-logo-box {
  width: 110px;
  height: 110px;
  background: #111;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ggi-logo-box img {
  width: 100%;
  height: auto;
}

/* Electric glow */
.electric-glow {
  animation: electric 1.8s infinite linear;
}
.flame-glow {
  animation: flame 2.5s infinite ease-in-out;
}

@keyframes electric {
  0% { box-shadow: 0 0 10px #00aaff; }
  50% { box-shadow: 0 0 25px #00ddff; }
  100% { box-shadow: 0 0 10px #00aaff; }
}

@keyframes flame {
  0% { box-shadow: 0 0 10px #0077ff; }
  50% { box-shadow: 0 0 30px #00bbff; }
  100% { box-shadow: 0 0 10px #0077ff; }
}

/* Categories */
.ggi-categories {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ggi-categories .cat {
  padding: 10px 18px;
  border: 2px solid #00aaff;
  border-radius: 8px;
  color: #00aaff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: .2s;
}

.ggi-categories .cat:hover {
  background: #00aaff;
  color: #000;
}

.cat.hot {
  border-color: #ff4d00;
  color: #ff4d00;
}

/* ---------- MOBILE RESPONSIVE ON STEROIDS ---------- */
@media(max-width: 600px) {
  .ggi-title { font-size: 1.7rem; }
  .ggi-logo-row { flex-wrap: wrap; }
  .ggi-logo-box { width: 90px; height: 90px; }
  .ggi-categories .cat { font-size: .9rem; padding: 8px 14px; }
}

/* 🌿 ORGANIC TRANSITION SECTION */
.organic-transition {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #d9d9d9 0%,
    #eef6ee 40%,
    #f9fff9 100%
  );
}

/* soft moving gradient layer */
.organic-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(120, 200, 140, 0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(80, 160, 120, 0.25), transparent 45%);
  animation: organicFlow 14s ease-in-out infinite;
  z-index: 0;
}

/* content */
.organic-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
  text-align: center;
  animation: fadeRise 1.6s ease forwards;
}

.organic-title {
  font-size: 3rem;
  color: #2f5f3a;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.organic-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3f5f47;
  margin-bottom: 30px;
}

.organic-sub {
  font-size: 1rem;
  color: #5b7d65;
  margin-bottom: 40px;
}

/* divider leaf line */
.organic-divider {
  width: 120px;
  height: 3px;
  margin: 30px auto;
  background: linear-gradient(
    90deg,
    transparent,
    #6fbf8e,
    transparent
  );
  animation: dividerGlow 3s ease-in-out infinite;
}

/* button */
.organic-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  background: #4f9f6f;
  color: white;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organic-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 159, 111, 0.35);
}

/* animations */
@keyframes organicFlow {
  0% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-10px); }
  100% { transform: scale(1) translateY(0); }
}

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

@keyframes dividerGlow {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* mobile */
@media (max-width: 600px) {
  .organic-title {
    font-size: 2.2rem;
  }
}



/* ABOUT SECTION */
.about-section {
  max-width: 900px;
  margin: 50px auto;
  background: #fff;
  padding: 40px;
  display: flex;
  gap: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.about-content {
  flex: 2;
}

.about-content h1 {
  margin-bottom: 10px;
}

.about-content p {
  line-height: 1.6;
  color: #555;
}
