/* ===== SSOM Custom Styles ===== */

:root {
  --ssom-blue: #2d5da1;
  --ssom-blue-light: #5b9bd5;
  --ssom-blue-dark: #1e3f72;
  --ssom-teal: #00b4c8;
  --ssom-gray: #f4f4f4;
}

/* ===== Base ===== */
body {
  font-family: 'Inter', sans-serif;
  color: #333;
}

/* ===== Utility / Top Bar ===== */
.top-bar {
  background: #fff;
  border-bottom: 3px solid var(--ssom-teal);
  padding: 0.4rem 1.5rem;
  font-size: 0.92rem;
}

.top-bar a {
  color: #333;
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--ssom-blue);
}

.top-bar .social-icons a {
  font-size: 1.2rem;
  color: #333;
  margin-left: 0.6rem;
}

.top-bar .social-icons a:hover {
  color: var(--ssom-blue);
}

/* ===== Navbar ===== */
.navbar {
  background: var(--ssom-gray) !important;
  padding: 0;
}

.navbar .nav-link {
  color: #444 !important;
  padding: 0.75rem 1.1rem !important;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  background: #dde4ef;
  color: var(--ssom-blue) !important;
}

.navbar .nav-item.active > .nav-link,
.navbar .nav-link.active {
  background: var(--ssom-blue) !important;
  color: #fff !important;
}

.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  min-width: 220px;
}

.navbar .dropdown-item {
  font-size: 0.9rem;
  padding: 0.55rem 1.2rem;
  color: #333;
}

.navbar .dropdown-item:hover {
  background: var(--ssom-blue);
  color: #fff;
}

.navbar .nav-item.social-nav .nav-link {
  font-size: 1.25rem;
  padding: 0.65rem 0.85rem !important;
}

/* ===== Logo Header ===== */
.logo-header {
  background: #e8e8e8;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo-header .logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: #2a5bb5;
  line-height: 1;
  white-space: nowrap;
}

.logo-header img {
  height: 90px;
  width: auto;
  flex-shrink: 0;
}

/* ===== Hero Banner ===== */
.hero-banner {
  background: linear-gradient(rgba(30, 63, 114, 0.78), rgba(30, 63, 114, 0.78)),
              url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?w=1400&q=60') center/cover no-repeat;
  color: #fff;
  padding: 2rem 2.5rem;
  min-height: 110px;
  display: flex;
  align-items: center;
}

.hero-banner h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* ===== Page Content ===== */
.page-content {
  padding: 2.5rem 0;
}

/* ===== Staff / Instructor Cards ===== */
.staff-card {
  background: var(--ssom-blue-light);
  color: #fff;
  border-radius: 4px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 1rem;
}

.staff-card .card-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.staff-card .card-role {
  font-size: 0.78rem;
  opacity: 0.9;
}

.instructor-card {
  background: var(--ssom-blue-light);
  color: #fff;
  border-radius: 4px;
  padding: 0.85rem 1.2rem;
  margin-bottom: 1rem;
}

.instructor-card .card-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.instructor-card .card-role {
  font-size: 0.78rem;
  opacity: 0.9;
}

/* ===== Section Headings ===== */
.section-heading {
  color: var(--ssom-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
}

/* ===== Teacher Bio Cards ===== */
.teacher-bio-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: #fff;
}

.teacher-bio-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
}

.teacher-bio-card .teacher-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.15rem;
}

.teacher-bio-card .teacher-role {
  color: var(--ssom-blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.teacher-bio-card p {
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 0.5rem;
}

/* ===== Buttons ===== */
.btn-ssom {
  background: var(--ssom-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-ssom:hover {
  background: var(--ssom-blue-dark);
  color: #fff;
}

.btn-ssom-outline {
  background: transparent;
  color: var(--ssom-blue);
  border: 2px solid var(--ssom-blue);
  border-radius: 4px;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ssom-outline:hover {
  background: var(--ssom-blue);
  color: #fff;
}

/* ===== Lesson Info CTA ===== */
.lesson-cta-section {
  text-align: center;
  padding: 3rem 1rem;
}

.lesson-cta-section h2 {
  color: var(--ssom-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  line-height: 1.3;
}

.lesson-cta-section .vendor-list {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
}

/* ===== Studio Policy ===== */
.policy-section {
  padding: 2.5rem 0;
}

.policy-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-header img {
  width: 90px;
  height: auto;
}

.policy-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.25rem;
}

.policy-header .policy-contact {
  font-size: 0.82rem;
  color: #555;
}

.policy-body {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.7;
}

.policy-body p {
  margin-bottom: 0.85rem;
}

/* ===== Yearly Schedule ===== */
.schedule-section {
  padding: 3rem 0;
}

.pdf-download-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  color: var(--ssom-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.pdf-download-link:hover {
  color: var(--ssom-blue-dark);
}

.pdf-icon {
  font-size: 5rem;
  color: #d32f2f;
  line-height: 1;
}

/* ===== Contact Page ===== */
.contact-overlay {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('https://images.unsplash.com/photo-1465821185615-20b3c2fbf41b?w=1400&q=60') center/cover no-repeat;
  color: #fff;
  padding: 5rem 2rem;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.contact-overlay .contact-info {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 2;
}

/* ===== Footer ===== */
.footer-social {
  background: #fff;
  padding: 1.2rem 0;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-social a {
  font-size: 2rem;
  color: #fff;
  background: var(--ssom-blue);
  border-radius: 8px;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.4rem;
  transition: background 0.2s;
}

.footer-social a.instagram-icon {
  background: #222;
}

.footer-social a:hover {
  background: var(--ssom-blue-dark);
}

.footer-social a.instagram-icon:hover {
  background: #444;
}

.footer-contact {
  background: #f0f0f0;
  padding: 0.9rem 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--ssom-blue);
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-copyright {
  background: #fff;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  padding: 0.6rem 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .logo-header .logo-text {
    font-size: 1.7rem;
  }

  .logo-header img {
    height: 60px;
  }

  .hero-banner h1 {
    font-size: 1.2rem;
  }

  .teacher-bio-card img {
    width: 80px;
    height: 80px;
  }

  .policy-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
