/* ============================================================
   GynodoctorXXX – Main Stylesheet
   Colour palette: deep charcoal, crimson red, soft white, blush pink
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c0152a;
  --red-dark:  #8a0e1e;
  --red-light: #e8304a;
  --charcoal:  #1a1a1a;
  --dark:      #111111;
  --mid:       #2a2a2a;
  --light:     #f5f0f0;
  --white:     #ffffff;
  --blush:     #f7e8ea;
  --text:      #e8e0e0;
  --muted:     #9a8888;
  --border:    #3a2a2a;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-ui:   'Arial', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--red-light); text-decoration: none; }
a:hover { color: var(--white); }

img { max-width: 100%; display: block; }

/* ---- Overlay & Pop-up ---- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  overflow-y: auto;
}

.popup {
  background: var(--charcoal);
  border: 2px solid var(--red);
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(192,21,42,0.4);
}

.popup-logo {
  margin: 0 auto 1.5rem;
  max-width: 260px;
}

.popup-logo img {
  width: 100%;
  border-radius: 6px;
}

.popup h2 {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  color: var(--red-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popup-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* ---- Forms ---- */
.form-group {
  text-align: left;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: bold;
  color: var(--light);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--red);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-group label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--light);
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
  cursor: pointer;
}

.form-error {
  background: rgba(192,21,42,0.15);
  border: 1px solid var(--red);
  border-radius: 6px;
  color: #ff8080;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Buttons ---- */
.btn-enter,
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 0.75rem 2rem;
  transition: background 0.2s, transform 0.1s;
}

.btn-enter,
.btn-primary {
  background: var(--red);
  color: var(--white);
  width: 100%;
  margin-top: 0.5rem;
}

.btn-enter:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--red-light);
  border: 2px solid var(--red);
  width: auto;
}

.btn-secondary:hover {
  background: var(--red);
  color: var(--white);
}

/* ---- Site Content ---- */
.site-content { min-height: 100vh; }

/* ---- Header ---- */
.site-header {
  background: var(--charcoal);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link { display: block; }

.header-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--red-light);
  border-bottom-color: var(--red-light);
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #1a0505 0%, #2a0a0a 40%, #1a1a1a 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,21,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
  font-family: var(--font-ui);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.brand { color: var(--red-light); }

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.hero .btn-primary,
.hero .btn-secondary {
  width: auto;
  margin: 0.4rem;
}

.hero-models {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a1a 40%, #1a1a1a 100%);
}

/* ---- Sections ---- */
.section {
  padding: 5rem 1.5rem;
}

.section:nth-child(even) {
  background: var(--charcoal);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red-light);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

/* ---- Intro Section ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; }
}

.intro-text p {
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1rem;
}

.intro-highlight {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.highlight-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.4rem;
}

.highlight-card h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red-light);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Teaser / Video ---- */
.teaser-section {
  background: var(--dark);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(192,21,42,0.25);
}

.video-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}

.video-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ---- Newsletter ---- */
.newsletter-section {
  background: linear-gradient(135deg, #1a0505 0%, #2a0a0a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-form { max-width: 680px; margin: 0 auto; }

.nl-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nl-fields input {
  flex: 1;
  min-width: 180px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.nl-fields input:focus { border-color: var(--red); }

.nl-fields .btn-primary {
  width: auto;
  margin-top: 0;
  flex-shrink: 0;
}

.nl-success {
  background: rgba(0,160,80,0.15);
  border: 1px solid #00a050;
  border-radius: 6px;
  color: #60e090;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  margin-top: 1rem;
}

/* ---- Recruitment ---- */
.recruitment-section { background: var(--dark); }

.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .recruit-grid { grid-template-columns: 1fr; }
}

.recruit-text p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

.requirements-box,
.process-box {
  background: var(--mid);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.requirements-box h3,
.process-box h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red-light);
  margin-bottom: 0.75rem;
}

.requirements-box ul,
.process-box ol {
  padding-left: 1.25rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.8;
}

.recruit-video-col { }

.video-col-title {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red-light);
  margin-bottom: 0.75rem;
}

.recruit-video-col > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ---- Application Form ---- */
.apply-section { background: var(--charcoal); }

.apply-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.apply-form .btn-primary {
  width: auto;
  margin-top: 1rem;
}

.req { color: var(--red-light); }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  border-top: 2px solid var(--red);
  padding: 3rem 1.5rem;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--red-light); }

.footer-legal {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 0.75rem;
  line-height: 1.6;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 480px) {
  .header-inner { flex-direction: column; text-align: center; }
  .hero { padding: 4rem 1rem; }
  .popup { padding: 1.75rem 1.25rem; }
}
