html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #135029e7;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 0;
}



header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
}


.hero__overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.wallet-buttons {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#walletBtnWrapper {
  position: fixed;
  z-index: 2;
  top: 30px;
  right: 30px;
}

#shopBtnWrapper {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.wallet-connect__button,
.shopNow,
.content button {
  pointer-events: auto;
  padding: 12px 20px;
  font-family: "Audiowide", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: #eee;
  border: none;
  color: #135029;
  border-radius: 35px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.wallet-connect__button:hover,
.shopNow:hover,
.content button:hover {
  background-color: #1a6634;
  color: #eee;
  transform: scale(1.05);
}

.shopNow a,
.wallet-connect__button a{
  color: #135029;
}

.shopNow a:hover,
.wallet-connect__button a:hover{
  color: #eee;
}

.hero__content {
  position: fixed;
  top: 0px;
  left: 20px;
  font-family: "Audiowide", sans-serif;
}

.hero__content h1 {
  font-size: 2rem;
}

.hero__content h2 {
  position: absolute;
  top: 40px;
  left: 55px;
  font-size: 1rem;
}

.mountainLogo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .hero__content h1 {
    font-size: 1.5rem;
  }

  .hero__content h2 {
    font-size: 0.8rem;
    top: 30px;
    left: 40px;
  }
  
  #walletBtnWrapper {
    top: 20px;
    right: 10px;
  }

  .wallet-connect__button {
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  #shopBtnWrapper {
    top: 85%;
    right: 10px;
  }

  .shopNow {
    padding: 10px 15px;
    font-size: 0.8rem;
    top: 0px;
  }
}

.premium-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative; /* ensure relative for any absolute children */
}

.premium-child h2 {
  display: flex;
  font-size: 2.8rem;
  font-family: "Audiowide", sans-serif;
  margin-top: 20px;
  color: white;
}

@media screen and (max-width: 600px) {
  .premium-child h2 {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}

/* Fix: Remove absolute positioning from container */
.container {
  position: relative; /* changed from absolute */
  margin: 40px auto 0; /* add top margin to separate from heading */
  width: 100%;
  max-width: 1250px;
  height: 680px; /* fixed height for carousel */
}

/* Responsive container adjustments */
@media screen and (max-width: 600px) {
  .container {
    max-width: 90%;
    height: 330px;
    margin-top: 30px;
  }
}

/* Carousel slide and item styles */
.container .slide .item {
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 10px 20px;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  width: 100%;
  height: 100%;
}

.slide .item:nth-child(3) {
  left: 50%;
}

.slide .item:nth-child(4) {
  left: calc(50% + 220px);
}

.slide .item:nth-child(5) {
  left: calc(50% + 440px);
}

/* Items beyond 5th */
.slide .item:nth-child(n + 6) {
  left: calc(50% + 660px);
  opacity: 0;
}

.item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}

.slide .item:nth-child(2) .content {
  display: block;
}

.content .name {
  font-size: 40px;
  text-transform: uppercase;
  color: #135029;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  font-style: normal;
  background-color: #135029;
  color: white;
  border-radius: 35px;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }
  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.button {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  color: white;
  background-color: #135029;
  border: 1px solid #000;
  transition: 0.3s;
}

.button button:hover {
  background: #1a6634;
  color: #000;
}

@media screen and (max-width: 600px) {
  .container {
    max-width: 75%;
    height: 400px;
    margin-top: 0px;
  }

  .container .slide .item:nth-child(3) {
    left: 155px;
    width: 60%;
    height: 60%;
  }

  .premium-child .content .name,
  .premium-child .content .des,
  .premium-child .content button {
    display: none;
    width: 10%;
  }

  .button {
    display: none;
  }
}

.mobile {
  display: none;
  margin-top: 420px;
}

.mobile-only-btn a {
  text-decoration: none;
  color: #135029;
}

@media (max-width: 600px) {
  .mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-only-btn {
    display: block;
    padding: 12px 24px;
    background: #eee;
    font-family: "Audiowide", sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    font-style: normal;
    border: none;
    border-radius: 35px;
    cursor: pointer;
  }

  .mobile :hover {
    color: white;
    background: #135029;
  }
}

/* About Section Container */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px; /* Reduced margin */
  border-radius: 15px;
  gap: 40px;
  color: #e8f0e8;
  font-family: "Inter", sans-serif;
}

/* About Text Container (Left) */
.about__container {
  flex: 1 1 55%;
  text-align: left;
}

/* About Title */
.about__title {
  font-family: "Audiowide", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: white;
}

/* About Text */
.about__text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
}

/* Quote Container (Right) */
.quote__container {
  flex: 1 1 40%;
  background-color: white;
  color: black;
  padding: 40px 30px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(19, 80, 41, 0.3);
  user-select: none;
  transition: background-color 0.3s ease;
}

.quote__container strong {
  font-weight: 900;
  color: #135029;
  text-decoration: underline;
}

/* Hover effect on quote (optional) */
.quote__container:hover {
  background-color: #e8f0e8;
  cursor: default;
}

/* Responsive Layout */

/* Medium screens (tablets) */
@media (max-width: 900px) {
  .about {
    flex-direction: column;
    padding: 40px 15px;
  }

  .about__container,
  .quote__container {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .quote__container {
    font-size: 1.2rem;
    padding: 30px 20px;
  }

  .about__title {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .about__container,
  .quote__container {
    margin-top: 0;
  }
}

/* Small screens (phones) */
@media (max-width: 480px) {
  .about__title {
    font-size: 1.6rem;
  }

  .about__text {
    font-size: 1rem;
  }

  .quote__container {
    font-size: 1rem;
    padding: 25px 15px;
    margin-top: 0;
  }
}

/* Section container styling */
.products {
  padding: 60px 20px;
  text-align: center;
}

/* Title styling */

.products__title {
  font-family: "Audiowide", sans-serif;
  font-size: 2.5rem;
  color: white;
}

/* Grid layout for products */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Individual product card styling */
.product-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  padding: 20px;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Card hover effect */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

/* Product image styling */
.product-card__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.product-card__image:hover {
  transform: scale(1.05);
}

/* Product name styling */
.product-card__name {
  font-family: "Audiowide", sans-serif;
  font-size: 1.2rem;
  color: #135029;
  margin-bottom: 10px;
  text-align: center;
}

/* Price styling */
.product-card__price {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

/* Buy Now button styling */
.product-card__btn {
  background-color: #135029;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Audiowide", sans-serif;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
}

.product-card__btn:hover {
  background-color: #1a6634;
  transform: scale(1.05);
}

/* Responsive adjustments for tablets */
@media (max-width: 1406px) {
  .products__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
  }
  .product-card {
      max-width: 80%;
      padding: 15px;
  }
  .products__title {
    font-size: 2rem;
  }
  #products {
    padding: 40px 10px;
  }
  .products {
      margin-top: 0px;
  }
}

/* Responsive adjustments for small tablets and large phones */
@media (max-width: 700px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .product-card {
    max-width: 90%;
    padding: 15px;
  }
  .products__title {
    font-size: 1.5rem;
  }
  .products {
      margin-top: 0px;
  }
}

/* Responsive adjustments for mobile devices */
@media (max-width: 480px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .product-card {
    max-width: 90%;
    padding: 15px;
  }
  .products__title {
    font-size: 1.5rem;
  }
  #products {
    padding: 10px 15px;
  }
  .product-card__btn {
    padding: 10px 15px;
    font-size: 0.6rem;
  }
  .product-card__name {
    font-size: 0.8rem;
  }

  .product-card__price {
    margin-top: 0px;
    font-size: 0.8rem;
  }
  .product-card__image{
    width: 110%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
  }
}

/* Quote Section Container */
/* Quote Section Container */
section.quote {
max-width: 800px;
margin: 60px auto;
padding: 0 20px;
text-align: center;
font-family: "Audiowide", sans-serif;
color: #135029;
}

/* Quote Text Container */
section.quote .quote {
border-radius: 15px;
padding: 40px 30px;
position: relative;
font-size: 1.6rem;
line-height: 1.5;
color: white;
margin-bottom: 20px;
}

/* Quotation marks using pseudo-elements */
section.quote .quote p::before,
section.quote .quote p::after {
content: '"';
font-size: 3rem;
color: #fede00;
position: absolute;
font-weight: bold;
font-family: serif;
opacity: 1;
}

section.quote .quote p::before {
top: 10px;
left: 15px;
}

section.quote .quote p::after {
bottom: 10px;
right: 15px;
}

/* Author Attribution */
section.quote > div:last-child {
font-family: "Inter", sans-serif;
font-size: 1.1rem;
color: #a8a8a8;
font-weight: 600;
letter-spacing: 1px;
margin-top: 0;
}

/* Responsive Adjustments */
@media (max-width: 700px) {
section.quote .quote {
  font-size: 1.3rem;
  padding: 30px 20px;
}

section.quote .quote p::before,
section.quote .quote p::after {
  font-size: 2rem;
}

section.quote > div:last-child {
  font-size: 1rem;
}
}

@media (max-width: 480px) {
section.quote .quote {
  font-size: 1.1rem;
  padding: 20px 15px;
}

section.quote .quote p::before,
section.quote .quote p::after {
  font-size: 1.5rem;
  top: 5px;
  left: 10px;
  bottom: 5px;
  right: 10px;
}

section.quote > div:last-child {
  font-size: 0.9rem;
}
}

/* NFT Showcase Section */
.nft-showcase {
background-color: #f0f7f0;
padding: 40px 20px;
font-family: "Inter", sans-serif;
color: #135029;
text-align: center;
}

.nft-showcase__container {
max-width: 1200px;
margin: 0 auto;
}

.nft-showcase__title {
font-family: "Audiowide", sans-serif;
font-size: 2.8rem;
margin-bottom: 20px;
margin-top: 0;
letter-spacing: 1.5px;
color: #135029;
}

.nft-showcase__grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
justify-items: center;
}

/* NFT Item Card */
.nft-item {
position: relative;
width: 100%;
max-width: 320px;
height: 500px;
border-radius: 18px;
overflow: hidden;
box-shadow:
    0 8px 24px rgba(19, 80, 41, 0.15),
    0 4px 12px rgba(19, 80, 41, 0.10);
background: rgba(30, 41, 59, 0.85);
backdrop-filter: blur(6px);
border: 1.5px solid #00ff229c;
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
align-items: flex-end;
justify-content: center;
}

.nft-item:hover,
.nft-item.playing {
transform: translateY(-6px) scale(1.03);
box-shadow:
    0 16px 48px rgba(19, 80, 41, 0.25),
    0 8px 24px rgba(19, 80, 41, 0.15);
}

/* Video fills card */
.nft-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 18px;
z-index: 1;
opacity: 0.95;
pointer-events: none;
transition: opacity 0.3s ease;
}

/* Overlay with title and badge */
.nft-overlay {
position: relative;
z-index: 2;
width: 100%;
padding: 24px 18px;
background: linear-gradient(0deg, rgba(30,41,59,0.78) 80%, transparent 100%);
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
}

.nft-title {
font-family: "Audiowide", sans-serif;
color: #fff;
font-size: 1.25rem;
margin: 0;
letter-spacing: 1.5px;
text-shadow: 0 2px 8px #13502990;
}

.nft-badge {
background: linear-gradient(90deg, #00ffe0 0%, #135029 100%);
color: #0f172a;
font-weight: 700;
border-radius: 8px;
padding: 4px 14px;
font-size: 0.95rem;
box-shadow: 0 1px 4px #00ffe040;
letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
.nft-showcase__title {
  font-size: 2.2rem;
}
.nft-item {
  max-width: 70%;
  height: 400px;
}
}

@media (max-width: 600px) {
  .nft-showcase__title {
    font-size: 1.2rem;
  }
  .nft-item {
    max-width: 80%;
    height: 450px;
  }
  .nft-title {
    font-size: 1rem;
  }
  .nft-badge {
    font-size: 0.8rem;
    padding: 4px 10px;
  }
}

/* Testimonials Section */
/* Container & Section */
/* Container & Section */
.testimonials {
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  color: #135029;
  text-align: center;
}

.testimonials__container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials__title {
  font-family: "Audiowide", cursive;
  font-size: 3rem;
  margin-bottom: 60px;
  letter-spacing: 2px;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

/* Grid Layout */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px 40px;
  max-width: 320px;
  box-shadow:
    0 8px 24px rgba(19, 80, 41, 0.15),
    0 4px 12px rgba(19, 80, 41, 0.10);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 16px 48px rgba(19, 80, 41, 0.25),
    0 8px 24px rgba(19, 80, 41, 0.15);
}

/* Quote Icon */
.testimonial-icon {
  font-size: 3.5rem;
  color: #135029;
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 25px;
  user-select: none;
  pointer-events: none;
}

/* Text */
.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.6;
  font-style: italic;
  margin: 60px 0 25px 0;
  color: #2a4d2a;
}

/* Author */
.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  color: #135029;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials__title {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }

  .testimonial-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 50px 15px;
  }

  .testimonials h2{
    font-size: 1.5rem;
    margin-bottom: 35px;
  }

  .testimonials__grid {
    gap: 30px;
  }

  .testimonial-card {
    padding: 25px 20px 35px;
    box-shadow:
      0 6px 18px rgba(19, 80, 41, 0.12),
      0 3px 10px rgba(19, 80, 41, 0.08);
  }

  .testimonial-icon {
    font-size: 2.5rem;
    top: 15px;
    left: 20px;
  }

  .testimonial-text {
    font-size: 1rem;
    margin: 50px 0 20px 0;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }
}

.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: var(--delay, 0s);
}

.testimonials__grid > .testimonial-card:nth-child(1) {
  --delay: 0.1s;
}
.testimonials__grid > .testimonial-card:nth-child(2) {
  --delay: 0.3s;
}
.testimonials__grid > .testimonial-card:nth-child(3) {
  --delay: 0.5s;
}
.testimonials__grid > .testimonial-card:nth-child(4) {
  --delay: 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Newsletter Signup */
.newsletter {
padding: 80px 20px;
text-align: center;
background-color: #135029;
color: white;
}

.newsletter__container {
max-width: 700px;
margin: 0 auto;
}

.newsletter__title {
font-family: "Audiowide", sans-serif;
font-size: 2.2rem;
margin-bottom: 30px;
}

.newsletter__form {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.newsletter__input {
width: 100%;
max-width: 400px;
padding: 15px 20px;
border-radius: 30px;
border: none;
font-size: 1rem;
color: #135029;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.newsletter__submit {
background-color: #fede00; /* bright yellow */
color: #135029;
font-family: "Audiowide", sans-serif;
font-size: 1.1rem;
border: none;
padding: 15px 30px;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s;
}

.newsletter__submit:hover {
background-color: #d9c000;
}

.newsletter__note {
font-size: 1rem;
margin-top: 20px;
}

/* Footer */
.footer {
background-color: #2a4d2a; /* darker green */
color: white;
padding: 40px 20px;
text-align: center;
}

.footer__container {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer__logo {
  width: 90px; /* Adjust size as needed */
  height: auto;
  display: inline-block; /* To control margin properly */
}

.footer__nav {
  display: flex;
  gap: 20px;
}

.footer__link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__link:hover {
  color: #fede00;
}

.footer__socials {
  display: flex;
  gap: 20px;
}

.footer__social-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__social-link:hover {
  color: #fede00;
}

.footer__copy {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .testimonials__title {
    font-size: 2rem;
  }
  .testimonial {
    max-width: 100%;
  }
  .newsletter__title {
    font-size: 1.8rem;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
  }
  .footer__nav,
  .footer__socials {
    flex-direction: row;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 60px 10px;
  }
  .testimonials__list {
    gap: 30px;
  }
  .testimonial {
    padding: 20px;
  }
  .testimonial__text {
    font-size: 1.1rem;
  }
  .newsletter {
    padding: 60px 10px;
  }
  .newsletter__form {
    flex-direction: column;
  }
  .newsletter__input {
    padding: 10px 15px;
    font-size: 0.9rem;
    width: auto;
  }
  .newsletter__submit {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .footer {
    padding: 30px 10px;
  }
  .footer__nav,
  .footer__socials {
    flex-direction: column;
    gap: 10px;
  }
  .footer__copy {
    font-size: 0.8rem;
  }
}