/* =====================
   ROOT VARIABLES
===================== */
:root {
  --pink-light: #ffd1dc;
  --pink-main: #f6a5c0;
  --pink-soft: #fff1f4;
  --navy: #1f2a44;
  --navy-dark: #162033;
  --dark: #0e0f10;
  --gray: #555;
  --white: #ffffff;
  --neutral-bg: #f8fafc;
}

/* =====================
   GLOBAL STYLES
===================== */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #f4f6f8;
}

a {
  text-decoration: none;
}

/* =====================
   NAVBAR (STICKY)
===================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 16px;
  background: linear-gradient(to right, var(--pink-light), var(--pink-main));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 70px;
  margin-right: 10px;
}

/* Nav Links */
.nav-links a {
  color: var(--navy);
  margin-left: 18px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(31, 42, 68, 0.15);
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

/* =====================
   HERO SECTION
===================== */
.hero {
  height: 100vh;
  background: url("../images/hero3.webp") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  color: var(--white);
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  background: var(--navy);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
}

/* ============================
   CONTACT SECTION
============================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1200px;
  margin: 4rem auto;
  border-radius: var(--radius-lg);
  overflow: hidden; /* seamless */
  background: linear-gradient(135deg, #fadadd, #f6a5c0);
  /* background: linear-gradient(135deg, var(--pink-soft), var(--pink-primary)); */
  box-shadow: var(--shadow-soft);
}

.contact-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-dark);
}

.contact-info h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.school-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5a2d45;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.directions-btn {
  margin-top: 1.8rem;
  align-self: flex-start;
  padding: 0.75rem 1.6rem;
  background: var(--text-dark);
  color: var(--text-light);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.directions-btn:hover {
  background: #162033;
  transform: translateY(-2px);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================
   FOOTER
===================== */
footer {
  background: linear-gradient(to right, var(--pink-main), var(--pink-light));
  color: var(--navy);
  text-align: center;
  padding: 1rem;
  font-weight: bold;
}

/* ============================
   UTILITY / TYPOGRAPHY
============================ */
.contact-title {
  max-width: 900px;
  margin: 3rem auto 1.5rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
}

.contact-title strong {
  color: #5a2d45;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    text-align: center;
  }

  .nav-links a {
    color: var(--white);
    padding: 15px;
    margin: 0;
  }

  .nav-links.show {
    display: flex;
  }
  .hero {
    height: 40vh;
  }

  .contact-title {
    font-size: 1.7rem;
    padding: 0 1rem;
  }
  .contact {
    grid-template-columns: 1fr;
  }

  .map iframe {
    height: 320px;
  }

  .contact-info {
    padding: 2.5rem 2rem;
  }

  .contact-info h2 {
    font-size: 2.1rem;
  }
}
/* Responsive Design for Mobile */
@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .map iframe {
    height: 320px;
  }

  .contact-info {
    padding: 2.5rem 2rem;
  }

  .contact-info h2 {
    font-size: 2.1rem;
  }
}
