/* === CSS Reset === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  box-sizing: border-box;
}

@font-face {
  font-family: "Main";
  src: url(assets/fonts/Dimica-Light.otf) format("opentype");
}
/* Alifinart Studio” (behance.net/alifinart) */
@font-face {
  font-family: "Secondary";
  src: url(assets/fonts/SalmaproMediumnarrow.otf) format("opentype");
}

@font-face {
  font-family: "Accessory";
  src: url(assets/fonts/Praise-Regular.ttf) format("truetype");
}

html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

body {
  margin: 0;
  font-family: "Main";
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(120deg, #e6e4db 0%, #ceafcb 45%, #f3cfdc 100%);
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4),
    transparent 70%
  );
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

/* === Navbar === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: rgba(18, 18, 38, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  margin: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(white 0.8px, transparent 0.8px),
    radial-gradient(white 0.6px, transparent 0.6px);
  background-size: 40px 40px, 100px 100px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.logo {
  font-family: "Main";
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  z-index: 1;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 11;
}

/* Nav Links - Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  z-index: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #cd90b3;
}

.contact-button {
  padding: 0.6rem 1.2rem;
  background-color: #8fa7e3;
  color: #fff;
  border-radius: 24px;
  font-weight: bold;
  border: none;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background-color: #ffffff;
  color: #8fa7e3;
}

/* === Responsive Navbar Additions === */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    margin: 1rem;
    gap: 0.75rem;
  }

  .navbar-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1.4rem;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-weight: bold;
  }

  .menu-toggle {
    display: block !important;
    font-size: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 11;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.5rem 0;
    color: #ffffff;
  }

  .contact-button {
    display: block;
    margin: 1rem auto;                /* centers it */
    padding: clamp(0.55rem, 2.5vw, 0.8rem) 
             clamp(1rem, 5vw, 1.4rem); /* fluid padding */
    font-size: clamp(0.8rem, 3.5vw, 0.95rem); /* scales with screen */
    border-radius: 24px;
    max-width: clamp(160px, 70%, 220px); /* keeps neat width */
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  }

}

@media screen and (max-width: 480px) {
  .contact-button {
    display: block;
    margin: 0.6rem auto;       /* centers nicely */
    padding: .85rem .85rem !important;     /* reduced padding */
    font-size: 0.8rem;         /* smaller text */
    border-radius: 18px;       /* smaller pill */
    max-width: 180px;          /* keeps it from being oversized */
    text-align: center;
    line-height: 1.1;
  }
}



.about-wrapper {
  background: #f5f4f2;
  font-family: "Georgia", serif;
  color: #462c8e;
  line-height: 1.6;
  padding-bottom: 3rem;
}

/* === Intro Section === */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: left;
}

.intro-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #462c8e;
  font-weight: 700;
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4a3d8f;
  line-height: 1.7;
}

.about-btn {
  background-color: #8e8dcf;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 32px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: #6d6cb0;
  transform: translateY(-2px);
}


/* Decorative Gradient Frame */
.intro-img-wrapper {
  position: relative;
  display: inline-block;
}

.intro-img-wrapper::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 6%;
  width: 88%;
  height: 88%;
  background: linear-gradient(135deg, #d9c9f7, #e8defc);
  border-radius: 24px;
  z-index: -1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.about-mission {
  background: #f7e2eb;
  padding: 4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}


.mission-text {
  flex: 1 1 400px;
  max-width: 520px;
  text-align: left;
}

.mission-text h2 {
  color: #8e8dcf;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.mission-text p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #462c8e;
  line-height: 1.7;
}

/* === Mobile Optimization === */
@media screen and (max-width: 768px) {
  .about-intro,
  .about-mission {
    flex-direction: column;
    padding: 2.5rem 1.2rem;
    text-align: center;
    gap: 1.8rem;
  }

  .intro-text h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

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



  .mission-text h2 {
    font-size: 1.4rem;
  }

  .mission-text p {
    font-size: 0.95rem;
  }
}



/* === Mission Section === */
.about-mission {
  background: #f7e2eb;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-radius: 24px;
  max-width: 1200px;
  margin: 3rem auto;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}


.mission-text {
  flex: 1 1 420px;
  max-width: 540px;
  text-align: left;
}

.mission-text h2 {
  color: #8e8dcf;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.mission-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8e8dcf, #cd90b3);
  margin-top: 0.6rem;
  border-radius: 2px;
}

.mission-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #462c8e;
  line-height: 1.7;
}

/* === Mobile Optimizations === */
@media screen and (max-width: 768px) {
  .about-mission {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.2rem;
    gap: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-radius: 18px;
  }


  .mission-text {
    text-align: center;
    max-width: 100%;
  }

  .mission-text h2 {
    font-size: 1.5rem;
  }

  .mission-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}

/* === Image Styling Shared === */
.intro-img,
.mission-image img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-img:hover,
.mission-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

/* Desktop Aspect Ratios */
.intro-img {
  aspect-ratio: 3 / 4;
  max-width: 360px;
}

.mission-image img {
  aspect-ratio: 4 / 5;
  max-width: 480px;
}

/* === Mobile Optimizations === */
@media screen and (max-width: 768px) {
  /* General fixes */
  .intro-images,
  .mission-image {
    max-width: 95%;
    margin: 0 auto;
  }

  /* Intro images */
  .intro-img {
    aspect-ratio: 1 / 1; /* perfect square */
    max-width: 80%;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  /* Mission image */
  .mission-image img {
    aspect-ratio: 3 / 4; /* slightly taller for elegance */
    max-width: 85%;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }
}



.site-footer {
  background: #f5f4f2;
  background: linear-gradient(to top, #f5f4f2, #f5f4f2);
  color: #462c8e;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  font-family: "Georgia", serif;
  border-top: 3px solid #cd90b3;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #462c8e;
}

.footer-left p {
  margin: 0.3rem 0;
  line-height: 1.5;
  max-width: 500px;
}

.legal-disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.8rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: #462c8e;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #ceafcb;
  width: fit-content;
  padding-bottom: 1px;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #8e8dcf;
}
/* === Mobile Optimization === */
@media screen and (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-left h4 {
    font-size: 1rem;
  }

  .footer-left p,
  .legal-disclaimer {
    font-size: 0.8rem;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-nav a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.7rem;
    margin-top: 1.5rem;
  }
}
