/* Topbar */
  /* header csss */
        .topbar {
            list-style-type: none;
            justify-content: space-between;
            padding: 0;
            padding-inline: 30px;
        }

        .topbar a {
            text-decoration: none;
        }

        /* ====== Header ====== */
        .site-header {
            background: var(--header-bg);
            color: var(--text-color);
            padding: 12px 20px;
            position: sticky;
            top: 0;
            z-index: 99;
           
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 20px;
            font-weight: 700;
        }

        .brand-name {
            color: var(--text-color);
        }

        .main-nav {
            display: flex;
            gap: 20px;
        }

        .main-nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-family: var(--font-base);
            padding: 6px 8px;
            border-radius: 8px;
        }

        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .menu-toggle {
            background: none;
            border: 0;
            font-size: 24px;
            color: var(--text-color);
            display: none;
            cursor: pointer;
        }

        /* ====== Mobile ====== */
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                background: var(--header-bg);
                position: absolute;
                right: 20px;
                top: 64px;
                padding: 12px;
                border-radius: var(--radius-md);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                gap: 12px;
            }

            .main-nav.open {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }
        }
          /* Hero Section */
    .hero-banner {
      position: relative;
      background: linear-gradient(135deg, rgba(156,188,104,0.85), rgba(92,101,78,0.85)),
                  url('https://via.placeholder.com/1200x500.png?text=Crystal+Premium+Spa') center/cover no-repeat;
      color: var(--text-color);
      padding: 100px 20px 140px;
      text-align: center;
      border-radius: 0 0 18px 18px;
      animation: fadeInDown 1.2s ease forwards;
    }
    .hero-banner h1 {
      font-family: var(--font-heading);
      font-size: 42px;
      margin: 0;
    }
    .hero-banner p {
      font-family: var(--font-desc);
      font-size: 18px;
      margin-top: 10px;
      opacity: 0.95;
    }

    /* Breadcrumb */
    .breadcrumb-hero {
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-primary);
      padding: 8px 20px;
      border-radius: var(--radius-md);
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      animation: fadeInUp 1s ease forwards;
    }
    .breadcrumb-hero a { color: #fff; text-decoration: none; }
    .breadcrumb-hero span { margin: 0 6px; color: #f1f1f1; }
    /* Section container */
.membership-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  text-align: center;
  padding-inline: 20px;
}

.membership-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--header-bg);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top:0px ;
}

/* Membership Grid */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Membership Card */
.membership-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #FFD700;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Best Value Ribbon */
.best-value::before {
  content: "Best Value";
  position: absolute;
  top: 15px;
  right: -40px;
  background: #FF5733;
  color: #fff;
  font-weight: bold;
  padding: 5px 50px;
  transform: rotate(45deg);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

/* Image + Icon */
.membership-image {
  position: relative;
  overflow: hidden;
}

.membership-image img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.membership-card:hover .membership-image img {
  transform: scale(1.1);
}

.membership-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  background: #FFD700;
  padding: 10px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Content */
.membership-content {
  padding: 20px;
  text-align: center;
}

.membership-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.membership-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.membership-time {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.membership-time li {
  font-size: 16px;
  margin: 6px 0;
  font-weight: 600;
}

/* Button */
.membership-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  border: none;
  padding: 10px 20px;
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.membership-btn:hover {
  background: linear-gradient(45deg, #FFA500, #FFD700);
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .membership-title {
    font-size: 22px;
  }
  .membership-content h3 {
    font-size: 20px;
  }
  .membership-content p {
    font-size: 14px;
  }
}
  footer {
            background: var(--header-bg);
            color: var(--headerbg-text-color);
            padding: 40px 20px 20px;
        }
  .adress-container{
    display: flex;
    justify-items: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-flow: row;
  }
  .adress-container p {
    margin-block:0px;
  }
 
        .footer-content {
            display: flex;
            justify-content: space-evenly;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-left {
            max-width: 300px;
        }

        .footer-left img {
            max-width: 150px;
            margin-bottom: 10px;
        }

        .footer-left p {
            font-size: 14px;
            color: #ccc;
        }

        .footer-right h4 {
            margin-bottom: 10px;
            margin-top: 0;
        }

        .footer-right ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-right-flex {
            display: flex;
            justify-content: space-evenly;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-right li {
            margin: 8px 0;
            font-size: 14px;
        }

        .footer-right li i {
            background-color: var(--main-bg);
            padding: 7px;
            border-radius: 5px;
            color: var(--header-bg);
        }

        .footer-right a {
            color: #fff;
            text-decoration: none;
        }

        .footer-right a:hover {
            color: #1abc9c;
        }

        .footer-social-section h4 {
            margin: 0px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
            justify-content: space-evenly;
        }

        .social-icons a {
            color: #fff;
            font-size: 18px;

        }

        .footer-nav {
            text-align: center;
            margin-top: 30px;
            border-top: 1px solid var(--main-bg);
            padding-top: 15px;
        }

        .footer-nav a {
            margin: 0 10px;
            text-decoration: none;
            color: #ccc;
            font-size: 14px;
        }

        .footer-nav a:hover {
            color: #1abc9c;
        }

        .copyright {
            font-size: small;
            margin: 0px;
            padding-top: 5px;
        }
