
:root {
  /* Primary Colors */
  --primary: #4361ee;
  --primary-light: #6a7aee;
  --primary-dark: #2a4aed;
  --primary-transparent: rgba(67, 97, 238, 0.1);
  
  /* Secondary Colors */
  --secondary: #E74C3C;
  --secondary-light: #ec7063;
  --secondary-dark: #c0392b;
  
  /* Accent Colors */
  --accent: #4895ef;
  --accent-light: #6faaf2;
  --accent-dark: #2e80d4;
  
  /* Status Colors */
  --success: #4cc9f0;
  --warning: #f72585;
  --danger: #e71d36;
  --info: #2ec4b6;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light: #f8f9fa;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-300: #ced4da;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --gray-900: #1a1a2e;
  --dark: #1a1a2e;
  --black: #000000;
  
  /* Text Colors */
  --text-primary: var(--gray-800);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  --text-light: var(--gray-100);
  --text-dark: var(--gray-900);
  
  /* Background Colors */
  --bg-body: var(--light);
  --bg-header: var(--white);
  --bg-footer: var(--gray-100);
  --bg-card: var(--white);
  
  /* Border Colors */
  --border-color: var(--gray-200);
  --border-dark: var(--gray-300);
  --border-light: var(--gray-100);
  
  /* Shadow Colors */
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-light: rgba(255, 255, 255, 0.5);
  --shadow-dark: rgba(163, 177, 198, 0.6);
  
  /* Special Colors */
  --silver: #c0c0c0;
  --gold: #ffd700;
  --bronze: #cd7f32;
  
  /* Theme Colors */
  --theme-primary: var(--primary);
  --theme-secondary: var(--secondary);
  --theme-accent: var(--accent);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Z-index */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-modal: 1040;
  --z-index-popover: 1050;
  --z-index-tooltip: 1060;

  /* Card Styles */
  --card-radius: 16px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  
  /* Glass Effect */
  --glass-blur: 8px;
  --glass-opacity: 0.2;
}

/* Dark Mode Colors */
[data-theme="dark"] {
  --primary: #5a72ee;
  --secondary: #ff6b6b;
  --accent: #64dfdf;
  
  --shadow-color: rgba(0, 0, 0, 0.3);
  --shadow-light: rgba(255, 255, 255, 0.05);
  --shadow-dark: rgba(0, 0, 0, 0.5);
  
  /* Adjust glass effect for dark mode */
  --glass-opacity: 0.15;
}

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

body {
  font-family: Arial, sans-serif;
  transition: background 0.3s, color 0.3s;
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Header Styles */
header {
  background-color: var(--bg-header);
  padding: 10px 15px;
  box-shadow: var(--shadow-sm);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-group {
  display: flex;
  align-items: center;
}

.logo-group img {
  width: 128px;
  border-radius: 50%;
  height: 128px;
}

.brand-name {
  font-size: 1.2rem;
  margin-left: 10px;
  font-weight: bold;
}

#name {
  font-size: small;
  font-weight: lighter;
}

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

.desktop-nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: bold;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  text-decoration: underline;
}

.right-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

#theme-toggle, .hamburger {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-light);
}

/* Theme Icons */
.theme-icon {
  margin-right: 2em;
  fill: none;
  stroke: currentColor;
}

.moon-icon {
  display: none;
}

.dark-mode .sun-icon {
  display: none;
}

.dark-mode .moon-icon {
  display: block;
}

/* Mobile Navigation */
.hamburger {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  margin-top: 10px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-primary);
  padding: 8px 0;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.modal-content {
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary);
}

/* Form Container - Neomorphic Design */
.form-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .form-container {
    grid-template-columns: 2fr 1fr;
  }
}

/* Form Styles - Neomorphic */
form {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--card-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.1),
    -8px -8px 16px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

form:hover {
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.15),
    -12px -12px 24px rgba(255, 255, 255, 0.6);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-primary);
}

/* Transparent Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="hidden"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: transparent;
  color: var(--text-primary);
  backdrop-filter: blur(var(--glass-blur));
  background-color: rgba(255, 255, 255, var(--glass-opacity));
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-transparent);
  background-color: rgba(255, 255, 255, calc(var(--glass-opacity) + 0.1));
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button[type="submit"] {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
  backdrop-filter: blur(var(--glass-blur));
}

button[type="submit"]:hover {
  background-color: var(--primary-dark);
}

/* Membership Cards - Glass Effect */
.membership-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .membership-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .membership-cards {
    grid-template-columns: 1fr;
  }
}

.membership-card {
  background: rgba(255, 255, 255, var(--glass-opacity));
  border-radius: var(--card-radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, calc(var(--glass-opacity) + 0.05));
}

.membership-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.membership-card.np {
  border-top: 4px solid var(--gray-500);
  animation-delay: 0.1s;
}

.membership-card.bronze {
  border-top: 4px solid var(--bronze);
  animation-delay: 0.2s;
}

.membership-card.silver {
  border-top: 4px solid var(--silver);
  animation-delay: 0.3s;
}

.membership-card.gold {
  border-top: 4px solid var(--gold);
  animation-delay: 0.4s;
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.learn-more:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: var(--z-index-modal);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}

.modal-content {
  background-color: var(--bg-card);
  margin: 10% auto;
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
  position: relative;
  animation: modalFadeIn 0.3s;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s;
}

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

.modal h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.benefits-list {
  list-style-type: none;
}

.benefits-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Footer Styles */
footer {
  background-color: var(--bg-footer);
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  font-family: Arial, sans-serif;
  color: var(--text-primary);
}

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

.footer-contact h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

.footer-contact p, .footer-meta p {
  margin: 5px 0;
  line-height: 1.5;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  color: var(--text-primary);
  font-size: 24px;
  width: 60px;
  height: 60px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-meta {
  text-align: right;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Navigation */
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: inline;
  }

  .mobile-nav.show {
    display: flex;
  }

  .theme-icon {
    margin: 0%;
  }
 h1{
  font-size: small;
  width: 90%;
 }
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-contact,
  .footer-meta {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}