/*
Theme Name: MP Rocha Náutica
Theme URI: https://mprochanautica.com
Description: Tema personalizado para a Escola Náutica MP Rocha
Author: MP Rocha Náutica
Template: twentytwentyfive
Version: 1.0.0
Text Domain: mprocha-nautica
*/

/* =============================================
   DESIGN SYSTEM - MP ROCHA NÁUTICA
   Colors: Deep Navy #002349 | Golden Brass #B59A5D | Cloud White #F8F6F0
   Fonts: Playfair Display (headings) | Source Sans 3 (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #002349;
  --navy-dark: #001830;
  --navy-light: #003a75;
  --gold: #B59A5D;
  --gold-light: #d4b97a;
  --gold-dark: #8a7340;
  --cloud: #F8F6F0;
  --cloud-dark: #ede9e0;
  --anchor-grey: #495057;
  --text-dark: #1a1a2e;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,35,73,0.08);
  --shadow-md: 0 4px 20px rgba(0,35,73,0.12);
  --shadow-lg: 0 8px 40px rgba(0,35,73,0.18);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; }

/* =============================================
   TOPBAR
   ============================================= */
.mpr-topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 6px 0;
  font-family: 'Source Sans 3', sans-serif;
}
.mpr-topbar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.mpr-topbar a { color: rgba(255,255,255,0.8); }
.mpr-topbar a:hover { color: var(--gold); }
.mpr-topbar-left, .mpr-topbar-right { display: flex; gap: 1.2rem; align-items: center; }
.mpr-topbar span { display: flex; align-items: center; gap: 5px; }

/* =============================================
   NAVBAR
   ============================================= */
.mpr-navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.mpr-navbar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.mpr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.mpr-logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
}
.mpr-logo-text { display: flex; flex-direction: column; }
.mpr-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.mpr-logo-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.mpr-nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mpr-nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.mpr-nav-links a:hover, .mpr-nav-links a.active {
  color: var(--gold);
  background: rgba(181,154,93,0.1);
}
.mpr-nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px !important;
}
.mpr-nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}
.mpr-lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.mpr-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  transition: var(--transition);
}
.mpr-lang-btn.active, .mpr-lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.mpr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.mpr-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.mpr-mobile-menu {
  display: none;
  background: var(--navy-dark);
  padding: 1rem 2rem;
}
.mpr-mobile-menu.open { display: block; }
.mpr-mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mpr-mobile-menu a:hover { color: var(--gold); }

/* =============================================
   HERO SECTION
   ============================================= */
.mpr-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.mpr-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://mprochanautica.com/wp-content/uploads/2026/04/hero-principal-navio-scaled.png');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.mpr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,24,48,0.9) 0%, rgba(0,35,73,0.7) 50%, rgba(0,35,73,0.4) 100%);
}
.mpr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
  width: 100%;
}
.mpr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(181,154,93,0.15);
  border: 1px solid rgba(181,154,93,0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.mpr-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  max-width: 700px;
}
.mpr-hero h1 span { color: var(--gold); }
.mpr-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
  margin: 0 0 2.5rem;
  line-height: 1.8;
}
.mpr-hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.mpr-btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.mpr-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(181,154,93,0.4);
}
.mpr-btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.mpr-btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(181,154,93,0.1);
}
.mpr-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.mpr-hero-stat { text-align: left; }
.mpr-hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mpr-hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.mpr-section {
  padding: 5rem 0;
}
.mpr-section-dark {
  background: var(--navy);
  color: var(--white);
}
.mpr-section-light { background: var(--cloud); }
.mpr-section-white { background: var(--white); }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mpr-section-header { text-align: center; margin-bottom: 3.5rem; }
.mpr-section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.mpr-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 1rem;
}
.mpr-section-dark .mpr-section-title { color: var(--white); }
.mpr-section-title-white { color: var(--white) !important; }
.mpr-section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  border: none;
}
.mpr-section-subtitle {
  font-size: 1rem;
  color: var(--anchor-grey);
  max-width: 600px;
  margin: 0 auto;
}
.mpr-section-dark .mpr-section-subtitle { color: rgba(255,255,255,0.7); }

/* =============================================
   COURSES GRID
   ============================================= */
.mpr-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.mpr-course-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,35,73,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.mpr-course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.mpr-course-card-header {
  background: var(--navy);
  padding: 1.5rem;
  position: relative;
}
.mpr-course-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 0.8rem;
}
.mpr-badge-stcw { background: rgba(181,154,93,0.2); color: var(--gold); border: 1px solid var(--gold); }
.mpr-badge-habilitacao { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
.mpr-badge-aperfeicoamento { background: rgba(0,58,117,0.4); color: #7eb8f7; border: 1px solid #3a7fc1; }
.mpr-course-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.mpr-course-card-body { padding: 1.5rem; flex: 1; }
.mpr-course-card-desc {
  font-size: 0.9rem;
  color: var(--anchor-grey);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.mpr-course-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.mpr-course-meta-item {
  font-size: 0.8rem;
  color: var(--anchor-grey);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mpr-course-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,35,73,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mpr-course-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mpr-course-link:hover { color: var(--gold); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.mpr-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mpr-about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.mpr-about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.mpr-about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}
.mpr-about-content .mpr-section-header { text-align: left; }
.mpr-about-content .mpr-section-divider { margin: 0 0 1.5rem; }
.mpr-about-text {
  font-size: 1rem;
  color: var(--anchor-grey);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.mpr-about-features { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.mpr-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.mpr-about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(181,154,93,0.1);
  border: 1px solid rgba(181,154,93,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.mpr-about-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.mpr-about-feature-text p {
  font-size: 0.85rem;
  color: var(--anchor-grey);
  margin: 0;
}

/* =============================================
   STATS BAR
   ============================================= */
.mpr-stats-bar {
  background: var(--navy);
  padding: 3rem 0;
}
.mpr-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.mpr-stat-item { padding: 1rem; }
.mpr-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.mpr-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  display: block;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.mpr-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.mpr-testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,35,73,0.06);
  position: relative;
}
.mpr-testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.mpr-testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.mpr-testimonial-text {
  font-size: 0.95rem;
  color: var(--anchor-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.mpr-testimonial-author { display: flex; align-items: center; gap: 1rem; }
.mpr-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.mpr-testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.mpr-testimonial-role { font-size: 0.8rem; color: var(--anchor-grey); }

/* =============================================
   CTA SECTION
   ============================================= */
.mpr-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mpr-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(181,154,93,0.05) 0%, transparent 60%);
}
.mpr-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.mpr-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.mpr-cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.mpr-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.mpr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mpr-footer-brand img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.mpr-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.mpr-footer-social { display: flex; gap: 0.8rem; }
.mpr-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}
.mpr-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(181,154,93,0.1);
}
.mpr-footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.mpr-footer-links { list-style: none; padding: 0; margin: 0; }
.mpr-footer-links li { margin-bottom: 0.6rem; }
.mpr-footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.mpr-footer-links a:hover { color: var(--gold); padding-left: 5px; }
.mpr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}
.mpr-footer-contact-icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.mpr-footer-bottom {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.mpr-footer-bottom a { color: var(--gold); }

/* =============================================
   PAGE HEADER
   ============================================= */
.mpr-page-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.mpr-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(181,154,93,0.05)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(181,154,93,0.05)" stroke-width="0.5"/><line x1="10" y1="50" x2="90" y2="50" stroke="rgba(181,154,93,0.03)" stroke-width="0.5"/><line x1="50" y1="10" x2="50" y2="90" stroke="rgba(181,154,93,0.03)" stroke-width="0.5"/></svg>') center/300px;
}
.mpr-page-header-content { position: relative; z-index: 1; }
.mpr-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mpr-breadcrumb a { color: var(--gold); }
.mpr-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin: 0 0 0.8rem;
}
.mpr-page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 600px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.mpr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}
.mpr-contact-info-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  color: var(--white);
}
.mpr-contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 2rem;
}
.mpr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mpr-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(181,154,93,0.15);
  border: 1px solid rgba(181,154,93,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mpr-contact-detail h4 { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 4px; }
.mpr-contact-detail p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: 0; }
.mpr-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,35,73,0.08);
}
.mpr-form-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 2rem;
}
.mpr-form-group { margin-bottom: 1.2rem; }
.mpr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mpr-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mpr-form-group input,
.mpr-form-group select,
.mpr-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,35,73,0.15);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.mpr-form-group input:focus,
.mpr-form-group select:focus,
.mpr-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,154,93,0.15);
}
.mpr-form-group textarea { resize: vertical; min-height: 120px; }

/* =============================================
   SCHEDULE TABLE
   ============================================= */
.mpr-schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.mpr-schedule-table thead { background: var(--navy); }
.mpr-schedule-table thead th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.mpr-schedule-table tbody tr {
  border-bottom: 1px solid rgba(0,35,73,0.06);
  transition: var(--transition);
}
.mpr-schedule-table tbody tr:hover { background: var(--cloud); }
.mpr-schedule-table tbody td {
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--anchor-grey);
}
.mpr-schedule-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.mpr-status-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.mpr-status-open { background: #d4edda; color: #155724; }
.mpr-status-few { background: #fff3cd; color: #856404; }
.mpr-status-full { background: #f8d7da; color: #721c24; }

/* =============================================
   CERTIFICATES PAGE
   ============================================= */
.mpr-cert-search {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,35,73,0.08);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.mpr-cert-search h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.mpr-cert-search p { color: var(--anchor-grey); font-size: 0.9rem; margin-bottom: 1.5rem; }
.mpr-cert-search-row { display: flex; gap: 1rem; }
.mpr-cert-search-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(0,35,73,0.15);
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  outline: none;
}
.mpr-cert-search-row input:focus { border-color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .mpr-about-grid { grid-template-columns: 1fr; }
  .mpr-footer-grid { grid-template-columns: 1fr 1fr; }
  .mpr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mpr-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mpr-nav-links, .mpr-lang-switcher { display: none; }
  .mpr-hamburger { display: flex; }
  .mpr-hero { min-height: 70vh; }
  .mpr-hero-stats { gap: 1.5rem; }
  .mpr-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mpr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mpr-form-row { grid-template-columns: 1fr; }
  .mpr-topbar-left { display: none; }
  .mpr-schedule-table { font-size: 0.8rem; }
  .mpr-schedule-table thead th, .mpr-schedule-table tbody td { padding: 0.7rem 0.8rem; }
}

@media (max-width: 480px) {
  .mpr-stats-grid { grid-template-columns: 1fr 1fr; }
  .mpr-courses-grid { grid-template-columns: 1fr; }
  .mpr-hero-buttons { flex-direction: column; }
  .mpr-cert-search-row { flex-direction: column; }
}

/* =============================================
   HIDE DEFAULT THEME ELEMENTS
   ============================================= */
.wp-block-template-part,
.wp-site-blocks > header,
.wp-site-blocks > footer,
header.wp-block-template-part,
footer.wp-block-template-part {
  display: none !important;
}

/* Override Twenty Twenty-Five defaults */
body { --wp--style--global--content-size: 100%; }
.wp-site-blocks { padding: 0 !important; }
.entry-content { max-width: none !important; padding: 0 !important; }
.wp-block-post-content { max-width: none !important; }
