/* Banking details variables - Centralized source of truth */
:root {
  --bank-name: 'Commonwealth Bank';
  --bsb: '923-100';
  --account-number: '801576530';

  /* Existing color variables */
  --primary: #0f3057;
  --accent: #00a8cc;
  --light-gray: #f5f5f5;
  --medium-gray: #e9ecef;
  --dark-gray: #343a40;
  --text: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  
  /* Color scheme for schedule sessions */
  --red-ball: #ff6666;
  --orange-ball: #ff9966;
  --green-ball: #66cc66;
  --blue-hot-shots: #6666ff;
  --yellow-junior: #cccc66;
  --advanced-junior: #66a3ff;
  --high-performance: #ff6666;
  --adult-beginner: #66cc66;
  
  /* Navbar heights for scroll margin */
  --navbar-height-desktop: 80px;
  --navbar-height-mobile: 85px;
}

/* Global Typography */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  scroll-behavior: smooth;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  font-weight: 500;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid white;
}

/* Focus states */
a:focus, button:focus, input:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Section styling */
section {
  padding: 60px 0;
  scroll-margin-top: var(--navbar-height-desktop);
}

section h1, section h2 {
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--primary);
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 300;
}

/* Navigation styling */
.navbar {
  background-color: var(--light-gray) !important;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--accent);
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--accent);
  font-weight: 500;
}

/* Register Button */
.nav-register .nav-link {
  background-color: var(--accent) !important;
  color: var(--white) !important;
  margin-left: 1rem;
  border-radius: 6px;
  padding: 0.5rem 1.5rem !important;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.nav-register .nav-link:hover {
  background-color: #0095b6 !important;
  color: var(--white) !important;
}

/* Logo styling */
.nav-logo-container, .nav-logo-secondary-container {
  display: inline-block;
}

.nav-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.nav-logo-secondary {
  height: 35px;
  width: auto;
  margin-left: 15px;
  object-fit: contain;
}

/* Footer styling */
footer {
  background-color: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, #00487c 100%);
  color: var(--white);
  padding: 50px 0 30px;
  font-size: 0.9rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

footer a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.footer-contact {
  margin-top: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* Breadcrumb styling (our-team page) */
.breadcrumb-container {
  background-color: var(--light-gray);
  padding: 15px 0;
  border-bottom: 1px solid var(--medium-gray);
}

.breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
}

.breadcrumb-item a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Header section styling (our-team page) */
.header-section {
  background-color: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, #00487c 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.header-section h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.header-section .section-description {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* Coach profile styling (our-team page) */
.coach-container {
  background-color: var(--white);
  padding: 60px 0;
}

.coach-profile {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--medium-gray);
}

.coach-profile:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.coach-profile img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.coach-profile h3 {
  color: var(--primary);
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.coach-profile p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: var(--text-light);
}

.coach-profile .coach-title {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.coach-profile .coach-credential {
  position: relative;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.coach-profile .coach-credential:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* Modal Styling */
.modal-content {
  border-radius: 8px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
  border-bottom: 1px solid var(--medium-gray);
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(15, 48, 87, 0.05) 0%, rgba(15, 48, 87, 0.02) 100%);
}

.modal-title {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.1rem;
}

.modal-body {
  padding: 1.5rem;
  line-height: 1.6;
}

.modal-footer {
  border-top: 1px solid var(--medium-gray);
  padding: 1rem 1.5rem;
}

/* Form Styling */
.form-control, .form-select {
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(0, 168, 204, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.btn {
  border-radius: 2px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: #0095b6;
  border-color: #0095b6;
}

/* Alert Styling */
.alert {
  border-radius: 6px;
  border: none;
  padding: 1rem 1.25rem;
}

.alert-info {
  background-color: rgba(0, 168, 204, 0.1);
  color: var(--primary);
  border-left: 4px solid var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  section {
    padding: 40px 0;
    scroll-margin-top: var(--navbar-height-mobile);
  }
  
  .header-section {
    padding: 50px 0;
  }
  
  .header-section h1 {
    font-size: 1.8rem;
  }
  
  .coach-container {
    padding: 40px 0;
  }
  
  .coach-profile {
    text-align: center;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
  
  .coach-profile img {
    margin-bottom: 1.5rem;
    max-width: 70%;
  }
  
  .coach-profile .coach-credential {
    padding-left: 0;
    display: block;
    text-align: center;
  }
  
  .coach-profile .coach-credential:before {
    display: none;
  }
  
  /* Mobile navigation adjustments */
  .navbar-light .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  
  .nav-register .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-block;
  }
  
  /* Mobile logo adjustments */
  .navbar-brand {
    flex-wrap: nowrap;
    max-width: 70%;
  }
  
  .nav-logo {
    height: 30px;
  }
  
  .nav-logo-secondary {
    height: 30px;
    margin-left: 10px;
  }
} 