/*
Theme Name: Pinky
Author: You
Version: 1.0
*/


html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}


.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 2rem;
  border-bottom: 3px solid #f44336;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.logo span {
  display: block;
  color: #f44336;
  font-size: 1rem;
}

.header-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

#searchform {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#searchform select,
#searchform input {
  padding: 0.3rem;
  border: 1px solid #ccc;
}

#menuToggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Slide Menu */
.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 300px;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: right 0.3s ease;
  z-index: 1000;
}

.slide-menu.open {
  right: 0;
}

.slide-menu button {
  background: none;
  border: none;
  font-size: 1.5rem;
  float: right;
}

.slide-menu ul {
  list-style: none;
  padding: 2rem 0 0;
}

.slide-menu ul li {
  margin-bottom: 1rem;
}


.hero-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 1rem;
  max-width: 80%;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 2rem;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }


.main-nav {
  background: #eee;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ccc;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}


/* =========================
   Responsive (Phone View)
   ========================= */
@media screen and (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }

  .header-left {
    width: 100%;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  #searchform {
    flex: 1;
  }

  #searchform input {
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-slider .slide-caption {
    bottom: 15px;
    left: 15px;
    font-size: 0.9rem;
    padding: 0.8rem;
    max-width: 95%;
  }

  .prev, .next {
    padding: 0.5rem;
    font-size: 1.2rem;
  }
}


.site-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 2rem;
  border-bottom: 3px solid #f44336;
}

.header-left {
  flex: 1;
}


.blog-section {
  padding: 2rem;
  background: #f9f9f9;
}

.blog-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 1rem;
}

.blog-content h3 {
  margin-top: 0;
  font-size: 1.2rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #f44336;
  font-weight: bold;
}


.single-post-page {
  padding: 2rem 15%;
  font-family: Georgia, serif;
}

.single-post-content {
  line-height: 1.8;
  font-size: 1.05rem;
  color: #222;
}

.single-post-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}


.post-wrapper h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.post-content {
  line-height: 1.7;
  font-size: 1.05rem;
}


.blog-section {
  padding: 2rem 15%;
  background: #f9f9f9;
  font-family: Georgia, serif;
}

.blog-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}

.blog-post {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}

.blog-post h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-post a {
  text-decoration: none;
  color: #333;
}

.blog-post a:hover {
  color: #f44336;
}

.blog-post .excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #f44336;
}



.page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15%;
}


.site-footer {
  padding: 3rem 0;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #333;
}

.site-footer h4 {
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.footer-icons a {
  color: #333;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #f44336;
}

.survey-link {
  font-weight: bold;
  color: #0074cc;
  cursor: pointer;
  font-size: 0.9rem;
}

.footer-links {
  margin-top: 1rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.85rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  text-align: left;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  white-space: nowrap; /* ⛔ Prevent line breaks */
}

.footer-logo-text strong {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.footer-logo-text small {
  font-size: 0.85rem;
  color: #666;
}


@media screen and (max-width: 768px) {
  .footer-logo-text {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}


.about-page,
.contact-page {
  padding: 2rem 15%;
  font-family: Georgia, serif;
}

.about-page h1,
.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form button {
  background: #f44336;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact-form button:hover {
  background: #d32f2f;
}


.contact-page {
  font-family: Georgia, serif;
  padding: 2rem 15%;
}

.contact-page h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-box p,
.contact-right p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-box a,
.contact-right a {
  color: #003399;
  font-weight: bold;
  text-decoration: none;
}

.contact-box a:hover,
.contact-right a:hover {
  text-decoration: underline;
}

.contact-right strong {
  font-weight: bold;
  display: inline-block;
  margin-right: 4px;
}

@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


.services-page .intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.services-column {
  flex: 1 1 30%;
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.services-column h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}

.services-column ul {
  list-style: none;
  padding-left: 0;
}

.services-column li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.services-column img.services-image {
  width: 100%;
  border-radius: 6px;
  margin: 1rem 0;
}

.services-grid .grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 2rem;
    margin-top: 2rem;
  }

  .services-box, .reference-box, .programs-box {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  .two-columns {
    column-count: 2;
    column-gap: 2rem;
  }

  .two-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .two-columns li {
    margin-bottom: 1rem;
  }

  .services-page h1 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1rem;
  }