/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

:root {
  /* Color Palette - Updated Theme */
  --primary: #45533a;
  /* Main color - dark olive green */
  --secondary: #f9ebc8;
  /* Secondary color - cream */
  --white: #ffffff;
  /* Other color - white */
  --primary-light: #5a6b4a;
  /* Lighter shade of primary */
  --primary-dark: #3a4530;
  /* Darker shade of primary */
  --background: #ffffff;
  --foreground: #45533a;
  --muted: #6b7a5f;
  --border: #e8e0d6;

  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 5rem 1.5rem;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  height: 200vh;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background-color .3s ease;
}

#navimg {
  transition: opacity .3s ease-in;
  margin: 0 50px;
  align-items: center;

}


.active {
  color: burlywood;
}

.nav.scrolled {
  background: var(--secondary);
  transition: background-color 1s ease;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.neon-logo{
  width: 60%;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Move logo to left side instead of center */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 1001;
}

.nav.scrolled .nav-logo {
  color: var(--primary);
}

/* Update navigation layout for left-aligned logo */
.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

/* Update nav-content to use flexbox layout with logo on left */
.nav-content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 3rem;
}

.nav-menu {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
  padding-top: 10rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.nav.scrolled .nav-link {
  color: var(--primary);
}

.nav-link:hover {
  color: var(--secondary);
}

.nav.scrolled .nav-link:hover {
  color: var(--primary-light);
}

/* Added dropdown navigation styles */
.nav-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 0.7rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1rem 0;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
  background: var(--secondary);
  color: var(--primary-dark);
}

/* Improved mobile navigation toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 2.5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav.scrolled .nav-toggle span {
  background: var(--primary);
}

/* Completely redesigned mobile navigation */
@media (max-width: 1024px) {
  .nav-container {
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }

  .nav-content {
    width: 100%;
    justify-content: space-between;
  }

  .nav-logo {
    font-size: 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* Update mobile menu to work with new layout */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-dropdown{
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .nav-menu .nav-link {
    color: var(--primary);
    font-size: 1.2rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.3);
    width: 200px;
    text-align: center;
  }

  .nav-menu .nav-link:hover {
    color: var(--primary-light);
    background: var(--secondary);
  }

  /* Hide left and right nav sections on mobile */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* Mobile dropdown styles */
  .nav-dropdown {
    position: static;
    width: 100%;
  }

  .dropdown-toggle {
    width: 200px;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.3);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    background: rgba(249, 235, 200, 0.5);
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    display: none;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-link {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.2);
  }

  /* Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    background-attachment: scroll;
  }

  .page-hero-bg {
    background-attachment: scroll;
  }

  .page-hero-content {
    padding: 0 1rem;
  }

  .hero-slide {
    height: 100vh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  /* Mobile activities styles */
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .neon-logo{
    width: 90% !important;
  }

}

@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }

  .nav-left .nav-link,
  .nav-right .nav-link {
    font-size: 1.1rem;
    /* width: 180px; */
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-slide {
    height: 50vh;
  }

  .hero-label {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }

  .page-hero {
    height: 40vh;
  }

  .page-hero-content {
    padding: 0 1rem;
  }

  .page-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
  }

  .nav-menu .dropdown-menu.active {
    display: flex;
    position: sticky;
  }
  
  .neon-logo{
    width: 90% !important;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom, rgba(69, 83, 58, 0.6), rgba(69, 83, 58, 0.8)); */
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}

.hero-text {
  max-width: 800px;
}

.S02 {
  max-width: 100% !important;
}

.hero-labels {
  margin-bottom: 2rem;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--white);
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot.active {
  background: var(--white);
}

/* Parallax Effect Styles for Other Pages */
.page-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.7), rgba(69, 83, 58, 0.5));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(69, 83, 58, 0.7), rgba(69, 83, 58, 0.5));
  height: 100vh;
}

/* Hide mobile menu by default */
.nav-menu {
  display: none;
}

/* Mobile / tablet nav: ≤1024px */
@media (max-width: 1024px) {

  /* Hide desktop links */
  .nav-left,
  .nav-right {
    display: none;
  }

  /* Show hamburger toggle */
  .nav-toggle {
    display: flex;
  }

  /* Mobile nav menu */
  .nav-menu {
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
    transition: all 0.5s ease-in;
  }

  /* Ensure mobile menu links are centered */
  .nav-menu .nav-left,
  .nav-menu .nav-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    /* CENTER CHILD LINKS */
    text-align: center;
    /* Center text inside links */
  }

  /* Dropdown toggle in mobile */
  .nav-menu .dropdown-toggle {
    width: 200px;
    /* optional: set fixed width */
    text-align: center;
  }

  .nav-menu .dropdown-menu {
    display: none;
    /* hidden by default */
    flex-direction: column;
    width: 100%;
    /* full width */
    max-width: 300px;
    /* optional: limit width */
    margin: 0 auto;
    /* center horizontally */
    text-align: center;
    /* center text */
    align-items: center;
    /* center links inside */
    padding: 0;
    right: 0;
    /* remove extra padding if any */
    gap: 0;
    /* remove gaps if needed */
  }

  .nav-menu .dropdown-menu.active {
    display: flex;
    position: sticky;
  }

  .nav-menu .dropdown-link {
    width: 100%;
    /* full width of dropdown */
    text-align: center;
    /* center the text */
    padding: 1rem 0;
    /* spacing between items */
    border-bottom: 1px solid rgba(232, 224, 214, 0.2);
  }


  .dropdown-toggle {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(232, 224, 214, 0.3);
  }

  /* Hamburger animation */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-toggle.active span {
    background: var(--primary);
  }
}


/* Introduction Section */
.intro {
  /* max-width: 860px; */
  margin: 0 auto;
  padding: var(--section-padding);
  background: var(--white);
  height: fit-content;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-grid {
  display: flex;
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 4rem; */
  align-items: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  line-height: 1.2;
  padding-top: 5rem;
}

.intro-paragraph {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}


/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-text,
.footer-contact {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-logo {
  width: 250px;
  margin: 1rem 0;
}

/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  color: white;
  transition: all 0.3s ease-in-out;
  display: none;
}

.carousel-slide.active .carousel-content {
  display: flex;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.carousel-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  max-width: 700px;
  margin-bottom: 2rem;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: backwards;
}

.carousel-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 1s;
  animation-fill-mode: backwards;
}

.carousel-btn:hover {
  background: white;
  color: #2c5f2d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

/* .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(10px);
} */

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-arrow.left {
  left: 2rem;
}

.carousel-arrow.right {
  right: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .carousel-title {
    font-size: 2.5rem;
  }

  .carousel-text {
    font-size: 1rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-arrow.left {
    left: 1rem;
  }

  .carousel-arrow.right {
    right: 1rem;
  }
}

/* ------------------------------------- */

/* Collection Cards Slider Styles */
.collection-slider-wrapper {
  position: relative;
  padding: 0 4rem;
}

.collection-slider-container {
  overflow: hidden;
  /* padding: 2rem 0; */
}

.collection-slider {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.collection-card {
  min-width: 100%;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.collection-card-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.collection-card-content {
  padding: 2rem;
}

.collection-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.collection-card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.collection-card-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #2c5f2d;
  color: white;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.collection-card-btn:hover {
  background: #1a3a1b;
}

.collection-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 95, 45, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
  border-radius: 50%;
}

.collection-slider-arrow:hover {
  background: rgba(44, 95, 45, 1);
}

.collection-slider-arrow.left {
  left: 0;
}

.collection-slider-arrow.right {
  right: 0;
}

.collection-progress {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.collection-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(44, 95, 45, 0.3);
  border: 2px solid rgba(44, 95, 45, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.collection-progress-dot.active {
  background: #2c5f2d;
  border-color: #2c5f2d;
  transform: scale(1.3);
}

.collection-progress-dot:hover {
  background: rgba(44, 95, 45, 0.6);
}

.collection-counter {
  text-align: center;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #2c5f2d;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .collection-card {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .collection-slider-wrapper {
    padding: 0 3rem;
  }

  .collection-card {
    min-width: 100%;
  }

  .collection-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .collection-card-image {
    height: 200px;
  }

  .collection-counter {
    font-size: 1rem;
  }
}

/* ----------------------------- */

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.about-main-content {
  background: white;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-text-block {
  margin-bottom: 3rem;
  text-align: justify;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-feature-card {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  margin-bottom: 1rem;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stats-card {
  background: white;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-stat-item {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.about-stat-item:last-child {
  border-bottom: none;
}

.about-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5f2d;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-quote-card {
  background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
  padding: 2.5rem;
  border-radius: 0.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-main-content {
    padding: 2rem;
  }

  .about-features-grid {
    gap: 1.5rem;
  }

  .about-feature-card {
    padding: 1.5rem;
  }

  .about-stats-card {
    padding: 2rem;
  }

  .about-stat-number {
    font-size: 2rem;
  }
}

/* Navigation Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 1rem;
  z-index: 1000;
  padding: 0.5rem 0;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0.5rem;
}

.nav-dropdown-item {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  text-align: center;
}

.nav-dropdown-item:hover {
  background: #f8f9fa;
  border-left-color: #2c5f2d;
}

.nav-dropdown-item i {
  font-size: 1.5rem;
  color: #2c5f2d;
  width: 30px;
  text-align: center;
}

.nav-dropdown-logo {
  height: 40px;
  object-fit: contain;
  margin: 0 auto;
}

.nav-dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-dropdown-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #2c5f2d;
  display: block;
}

.nav-dropdown-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #666;
  display: block;
}

.nav-link .fa-chevron-down {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link .fa-chevron-down {
  transform: rotate(180deg);
}

/* Mobile dropdown styles */
.nav-dropdown.mobile-open .nav-dropdown-menu {
  display: block;
}

@media (max-width: 320px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    display: none;
    margin-top: 0;
    padding: 0.5rem 0;
    min-width: auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.25rem;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-item {
    padding: 0.75rem 1rem;
    border-left: none;
    border-radius: 0.25rem;
    margin: 0.25rem 0;
    color: white;
  }

  .nav-dropdown-item strong {
    color: white;
  }

  .nav-dropdown-item span {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-dropdown-item i {
    color: white;
  }

  .nav-dropdown-logo {
    filter: brightness(0) invert(1);
  }

  .nav-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: transparent;
  }

  .neon-logo{
    width: 90% !important;
  }
}