/* Import Notable Font */
@import url('https://fonts.googleapis.com/css2?family=Notable&display=swap');

/* Color Palette - Royal Blue and Purple Theme */
:root {
  --royal-blue: #4169E1;
  --deep-purple: #7B3FF2;
  --light-purple: #9D6FFF;
  --accent-gold: #FFD700;
  --light-gray: #F8F9FA;
  --dark-gray: #343A40;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  padding-top: 70px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Alert Messages */
.message-alert {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 300px;
  max-width: 600px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-purple) 100%) !important;
  transition: all 0.3s ease;
}

.navbar-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.navbar-brand .brand-text {
  font-family: 'Notable', sans-serif !important;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400 !important;
}

.navbar-brand:hover .brand-text {
  color: var(--accent-gold);
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-purple) 100%);
  padding: 80px 0 !important;
  margin-top: -70px;
  padding-top: 150px !important;
}

.hero-logo {
  width: 250px;
  height: auto;
  animation: fadeInDown 0.8s ease-out;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-placeholder {
  margin-top: 20px;
}

.logo-box {
  width: 200px;
  height: 200px;
  border: 3px dashed var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.logo-box span {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-section h1 {
  font-family: 'Notable', sans-serif !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 400 !important;
}

.hero-section .btn-light {
  background-color: var(--accent-gold);
  border: none;
  color: var(--dark-gray);
  font-weight: 600;
  padding: 12px 40px;
  transition: all 0.3s ease;
}

.hero-section .btn-light:hover {
  background-color: #FFED4E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--royal-blue);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue) 0%, var(--deep-purple) 100%);
  border-radius: 2px;
}

/* Cards */
.card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: white;
  font-size: 2rem;
}

/* Schedule */
.schedule-card {
  background: white;
  border-radius: 10px;
  border-left: 4px solid var(--deep-purple);
}

.schedule-card .badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
}

.badge.bg-primary {
  background-color: var(--royal-blue) !important;
}

/* Schedule Poll Options */
.poll-option {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  border-color: #dee2e6 !important;
  text-align: center;
  font-weight: 500;
  color: var(--dark-gray);
}

.poll-option:hover {
  background-color: var(--light-gray);
  border-color: var(--royal-blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-check-input:checked ~ .form-check-label .poll-option {
  background-color: var(--royal-blue);
  color: white;
  border-color: var(--royal-blue) !important;
  box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
}

/* Hide only the poll checkboxes (for custom styling), not GDPR consent checkboxes */
.poll-day-checkbox,
.poll-time-checkbox {
  display: none;
}

/* Sessions */
.session-card {
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.session-card .card-header {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-purple) 100%) !important;
  border: none;
}

.session-details {
  font-size: 0.95rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
}

.detail-item i {
  flex-shrink: 0;
  margin-top: 3px;
}

.session-card .card-footer {
  border-top: 1px solid #e0e0e0;
}

.session-card .btn-primary {
  background-color: var(--royal-blue);
  border: none;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.session-card .btn-primary:hover {
  background-color: var(--deep-purple);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Location */
.location-info {
  border-radius: 10px;
}

.map-container {
  position: relative;
}

.map-container .map-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
  border-color: var(--deep-purple) !important;
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(123, 63, 242, 0.15) 100%) !important;
}

.map-container .map-placeholder i {
  transition: all 0.3s ease;
}

.map-container .map-placeholder:hover i {
  transform: scale(1.1);
  color: var(--deep-purple) !important;
}

.map-placeholder {
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  border: 2px dashed var(--royal-blue);
}





/* Location Cards */
.location-card {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.location-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.location-header .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  margin-top: 0.5rem;
}

.location-features p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.location-card .card-title {
  color: var(--royal-blue);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.location-card .card-text {
  text-align: center;
  line-height: 1.8;
}

/* Prices */
.card-header {
  font-weight: 700;
  border-radius: 10px 10px 0 0 !important;
}

.bg-gold {
  background-color: var(--accent-gold) !important;
}

.price-amount {
  padding: 20px 0;
}

.card.border-primary {
  border: 3px solid var(--royal-blue) !important;
  border-width: 3px !important;
}

/* Coming Soon Membership Cards */
.membership-coming-soon {
  opacity: 0.7;
  position: relative;
}

.membership-coming-soon:hover {
  transform: none !important;
  cursor: not-allowed;
}

.membership-coming-soon .card-body {
  color: #6c757d;
}

/* Contact Form */
.contact-card {
  border-radius: 10px;
}

.form-label {
  font-weight: 600;
  color: var(--royal-blue);
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 2px solid #E0E0E0;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.15);
}

/* GDPR Consent Checkbox Styling */
.form-check {
  padding-left: 1.5rem;
}

.form-check-input[type="checkbox"]:not(.poll-day-checkbox):not(.poll-time-checkbox) {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  cursor: pointer;
  border: 2px solid #dee2e6;
  border-radius: 0.25rem;
}

.form-check-input[type="checkbox"]:not(.poll-day-checkbox):not(.poll-time-checkbox):checked {
  background-color: var(--royal-blue);
  border-color: var(--royal-blue);
}

.form-check-input[type="checkbox"]:not(.poll-day-checkbox):not(.poll-time-checkbox):focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
}

.form-check-label {
  cursor: pointer;
  user-select: none;
}

.form-check-label a {
  color: var(--royal-blue);
  text-decoration: underline;
}

.form-check-label a:hover {
  color: var(--deep-purple);
}

.btn-primary {
  background-color: var(--royal-blue);
  border: none;
  font-weight: 600;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--deep-purple);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-item i {
  display: block;
}

.contact-info-item a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.contact-info-item a:hover {
  text-decoration: none;
}

.contact-info-item a i {
  transition: all 0.3s ease;
}

.contact-info-item a:hover i {
  transform: scale(1.1);
}

.contact-info-item .email-link {
  cursor: pointer;
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-purple) 100%);
  margin-top: 50px;
}

.footer-section a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-gold) !important;
  transform: scale(1.2);
  display: inline-block;
}

.footer-links a {
  opacity: 0.9;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 !important;
    padding-top: 120px !important;
  }
  
  .hero-logo {
    width: 190px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .logo-box {
    width: 250px;
    height: 250px;
  }
  
  .navbar-logo {
    height: 35px;
  }
  
  .navbar-brand .brand-text {
    font-size: 1.1rem;
  }
  
  .message-alert {
    left: 10px;
    right: 10px;
    transform: none;
    min-width: auto;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.schedule-card,
.contact-card {
  animation: fadeInUp 0.6s ease-out;
}

.club-title {
  font-family: 'Notable', sans-serif !important;
  font-weight: 400 !important;
}