/* Shared styles for all pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

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

body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 0.9rem 0;
  z-index: 100;
  backdrop-filter: blur(0px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #000;
  border-right: 2px solid #ddd;
  padding-right: 1rem;
}
.logo span {
  font-weight: 400;
  color: #3a3a3a;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: #1f1f1f;
  transition: 0.2s;
  letter-spacing: -0.2px;
}
.nav-links a:hover {
  color: #000;
  border-bottom: 1.5px solid #000;
  padding-bottom: 2px;
}
.nav-cta {
  background: #000;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 0px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.nav-cta:hover {
  background: #2c2c2c;
  border-bottom: none !important;
}

/* typography */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section {
  padding: 3rem 0;
  border-bottom: 1px solid #eaeaea;
}
.bg-light-grey {
  background: #f8f8f8;
}
.bg-black {
  background: #000000;
  color: #ffffff;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}
.btn-outline {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.btn-outline:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Common form elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #eaeaea;
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #000;
}

/* Card styles */
.card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2.5rem 0 3rem;
  background: #000;
  color: #fff;
}
.footer a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3);}

@media (max-width: 800px) {
  .section { padding: 3rem 0; }
  .nav-links { gap: 1rem; }
}

/* Custom styles for Dashboard sections */
.dates-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.date-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #eaeaea;
}
.date-day {
  font-weight: 700;
  width: 150px;
}
.date-time {
  color: #666;
  width: 120px;
}
.date-module {
  flex: 1;
  text-align: right;
}
.location-meta {
  font-size: 0.9rem;
  color: #666;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.price-large {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.small-caps {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.check-list {
  list-style: none;
  margin-bottom: 2rem;
}
.check-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.free-studio {
  background: #000;
  color: #fff;
  padding: 1rem;
  font-weight: 600;
  display: inline-block;
}

