/* ======= ABOUT-MOBILE.CSS (MODIFIED FONT & COLOR ONLY) ======= */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  background: #B7A3E3;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: white;
  overflow-x: hidden;
  transition: background 0.5s ease-in-out;
  font-family: "Roboto", "Segoe UI", sans-serif; /* updated to match about.css */
}

/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(45, 29, 71, 0.95);
  padding: 12px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: "Roboto", sans-serif; /* updated font */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
  width: auto;
  border-radius: 50%;
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  font-family: "Roboto", sans-serif; /* updated font */
}

/* Hamburger Menu */
.menu-toggle {
  font-size: 26px;
  color: white;
  cursor: pointer;
  display: block;
}

/* Navigation Links (hidden initially) */
.nav-links {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(45, 29, 71, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: left 0.3s ease-in-out;
  z-index: 999;
}

.nav-links.show {
  left: 0;
}

.nav-links a {
  color: white; /* keep white */
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  font-family: "Roboto", sans-serif; /* updated font */
}

.nav-links a:hover {
  color: #f472b6;
}

/* ===== About Section ===== */
.about-section {
  margin-top: 90px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-header h2 {
  font-family: "Montserrat", sans-serif; /* updated font */
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #f472b6, #ec4899); /* updated colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.author-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 25px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #f472b6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.author-content {
  background: rgba(45, 29, 71, 0.85);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.author-image img {
  width: 80%;
  border-radius: 12px;
}

.author-text {
  font-family: "Merriweather", serif; /* updated font */
  font-size: 16px; /* updated to match about.css */
  line-height: 1.8; /* updated */
  max-width: 100%;
  padding: 10px;
  text-align: left;
  color: white; /* updated font color */
}

.highlight {
  font-weight: bold;
}

/* ===== Highlights & Gallery ===== */
.highlight-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 15px;
}

.highlight-title h3 {
  font-family: "Roboto", sans-serif; /* updated font */
  font-size: 20px;
  font-weight: bold;
  color: white;
}

/* Make image gallery scroll horizontally */
.image-gallery {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.image-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.image-item img {
  width: 150%;
  max-width: 100px;
  border-radius: 10px;
}

/* ===== WhatsApp Icon ===== */
.whatsapp-icon {
  position: fixed;
  bottom: 70px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  z-index: 1000;
}

.whatsapp-icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

/* ===== Image Popup Modal (Mobile) ===== */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: auto; /* allow scrolling if image too big */
}

.modal-content {
  max-width: 90%;
  max-height: 90%; /* fit inside viewport */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  object-fit: contain; /* maintain aspect ratio */
  display: block;
  margin: auto; /* CENTER the image in all directions */
}

.modal .close {
  position: fixed; /* stays visible on screen */
  top: 15px;
  right: 20px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
}

.modal .close:hover {
  color: #f472b6;
}





/* ===== Footer ===== */
footer {
  background: linear-gradient(90deg, #f472b6, #ec4899);
  color: rgba(45, 29, 71, 0.9);
  font-size: 14px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(5px);
  font-family: "Roboto", sans-serif; /* updated font */
}

footer a {
  color: rgba(45, 29, 71, 0.9);
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer a:hover {
  transform: scale(1.15);
  color: #fff;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
