/* NRRWA Website Styles */

/* Color Palette from Logo */
:root {
  --primary-green: #4a7c59;
  --light-green: #8fbc8f;
  --primary-blue: #2874a6;
  --sky-blue: #5dade2;
  --sunshine-yellow: #f9e79f;
  --golden: #d4af37;
  --brown-tree: #8b6f47;
  --red-accent: #e74c3c;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --text-color: #2c3e50;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-section img {
  height: 60px;
  width: auto;
}

.site-title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.site-title p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.language-switcher {
  display: flex;
  gap: 10px;
}

.language-switcher a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 15px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
  background-color: var(--golden);
  color: var(--dark-gray);
}

/* Navigation */
nav {
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav ul > li {
  margin: 0;
  position: relative;
}

nav ul > li > a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

nav ul > li > a:hover {
  color: var(--primary-green);
  background: var(--light-gray);
}

/* Navigation Submenu */
nav ul li.has-submenu {
  position: relative;
}

nav ul li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 5px;
  min-width: 220px;
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

nav ul li.has-submenu:hover .submenu {
  display: block;
}

nav ul li.has-submenu .submenu li {
  margin: 0;
  display: block;
}

nav ul li.has-submenu .submenu li a {
  padding: 10px 20px;
  display: block;
  color: var(--text-color);
  white-space: nowrap;
  text-decoration: none;
}

nav ul li.has-submenu .submenu li a:hover {
  background: var(--light-gray);
  color: var(--primary-green);
}

/* Hero Section / Slider */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  background: rgba(0,0,0,0.0);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
}

.slide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--golden);
  color: var(--dark-gray);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--sunshine-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: var(--golden);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 3rem 0;
}

.card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: var(--primary-green);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.card-content p {
  color: var(--text-color);
  margin-bottom: 15px;
}

.card-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
/* Card Icon Styling for Unicode Symbols */
.card-icon {
  font-size: 3rem;
  width: 100px;
  height: 100px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Individual icon colors */
.cards-grid .card:nth-child(1) .card-icon {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.cards-grid .card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
}

.cards-grid .card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.cards-grid .card:nth-child(4) .card-icon {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}

.cards-grid .card:nth-child(5) .card-icon {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.cards-grid .card:nth-child(6) .card-icon {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.card-link:hover {
  color: var(--sky-blue);
}

/* Stats Counter */
.stats-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 4rem 0;
  margin: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--golden);
}

.stat-item p {
  font-size: 1.1rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin: 3rem 0 2rem;
  color: var(--primary-green);
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--golden);
}

/* Blog Posts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin: 2rem 0;
}

.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

.blog-card-content h3 {
  color: var(--primary-green);
  margin-bottom: 10px;
}

/* Sidebar */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin: 2rem 0;
}

.sidebar {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
}

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

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar a:hover {
  color: var(--primary-blue);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: var(--primary-green);
  color: var(--white);
  font-weight: 600;
}

tr:hover {
  background-color: var(--light-gray);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: var(--light-green);
}

/* FAQ Accordion */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--light-gray);
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--light-green);
  color: var(--white);
}

.faq-answer {
  padding: 15px;
  display: none;
  background-color: var(--white);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--golden);
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--golden);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--golden);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-menu {
    flex-direction: column;
  }
  
  .dropdown {
    position: static;
    display: none;
  }
  
  .nav-item:hover .dropdown {
    display: block;
  }
  
  .slide-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
  }
  
  .slide-content h2 {
    font-size: 1.8rem;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .content-with-sidebar {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  header, nav, footer, .cta-button, .slider-controls {
    display: none;
  }
}

/* Membership Cards */
.membership-card {
  background: white;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

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

.membership-card.popular {
  border: 2px solid var(--golden);
  transform: scale(1.05);
}

.membership-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--golden);
  color: var(--dark-gray);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.membership-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.membership-name {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.membership-price {
  margin-bottom: 1.5rem;
}

.membership-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
}

.membership-price .period {
  font-size: 1rem;
  color: #666;
}

.membership-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.membership-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-color);
}

.membership-features li:last-child {
  border-bottom: none;
}

.membership-button {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.membership-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.membership-card.popular .membership-button {
  background: var(--golden);
  color: var(--dark-gray);
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-photo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-green);
}

.photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border: 4px solid var(--primary-green);
}

.testimonial-comment {
  font-style: italic;
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 15px;
}

.testimonial-comment::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-green);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  text-align: center;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .membership-card.popular {
    transform: scale(1);
  }
  
  .membership-card.popular:hover {
    transform: translateY(-10px);
  }
}

/* Member Cards */
.member-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.member-photo {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.member-photo .photo-placeholder {
  font-size: 6rem;
  color: #999;
}

.member-card .card-content {
  padding: 25px 20px;
}

.member-card h3 {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.member-type {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.member-date {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Member card special styling */
.member-card .card-content.text-center {
  text-align: center;
}

/* Values Grid - HORIZONTAL LAYOUT */
.values-section {
  margin: 3rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.value-card {
  background: white;
  padding: 1.25rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-green);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.value-name {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-description {
  color: var(--text-color);
  line-height: 1.5;
  font-size: 0.88rem;
}

/* Objectives Grid - HORIZONTAL LAYOUT */
.objectives-section {
  margin: 3rem 0 4rem;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.objective-card {
  background: white;
  padding: 1.25rem 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.objective-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.objective-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.objective-title {
  color: var(--primary-blue);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.objective-description {
  color: var(--text-color);
  line-height: 1.5;
  font-size: 0.88rem;
}

/* Vision & Mission Responsive */
@media (max-width: 1200px) {
  .values-grid,
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .statement-card {
    padding: 2rem 1.5rem;
  }
  
  .statement-text {
    font-size: 1.1rem;
  }
  
  .values-grid,
  .objectives-grid {
    grid-template-columns: 1fr;
  }
}

/* Executive Committee Cards */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 3rem 0;
}

.committee-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.committee-photo {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-gray) 0%, #e0e0e0 100%);
  overflow: hidden;
}

.committee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.committee-photo .photo-placeholder {
  font-size: 6rem;
  color: #999;
}

.committee-info {
  padding: 1.5rem;
  text-align: center;
}

.committee-name {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.committee-position {
  color: var(--primary-blue);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.committee-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-item a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-green);
}

/* Responsive */
@media (max-width: 1024px) {
  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .committee-grid {
    grid-template-columns: 1fr;
  }
  
  .committee-photo {
    height: 250px;
  }
}

/* Join Button in Navigation */
nav ul li.nav-join-button {
  margin-left: 15px;
}

nav ul li.nav-join-button a {
  background: var(--golden);
  color: var(--dark-gray);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

nav ul li.nav-join-button a:hover {
  background: #c49b2d;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
  color: var(--dark-gray);
}

/* Responsive - Join button on mobile */
@media (max-width: 768px) {
  nav ul li.nav-join-button {
    margin-left: 0;
    margin-top: 10px;
  }
  
  nav ul li.nav-join-button a {
    display: block;
    text-align: center;
  }
}