/* General */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Roboto', sans-serif;}
body { line-height:1.6; color:#4B2E2E; background:#FFFFFF; scroll-behavior: smooth; }

/* Navbar */
/* Navbar */
nav {
  width: 100%;
  padding: 20px 0;
  background: #4B2E2E;
  position: absolute;
  top: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between; /* logo on left, links on right */
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #F9E2AE;
  flex-shrink: 0; /* prevent shrinking */
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}

/* Nav links aligned to the right */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: nowrap; /* keep on single line */
}

.nav-links li a {
  text-decoration: none;
  color: #F9E2AE;
  font-weight: 500;
  transition: 0.3s;
  padding: 5px 10px;
  border-radius: 5px;
}

.nav-links li a:hover {
  color: #FFFFFF;
  background: #B03A2E;
  transform: scale(1.05);
}

/* Responsive Navbar for Mobile */
@media (max-width: 1024px) {
  .nav-container {
    flex-wrap: wrap; /* allow links to wrap under logo if needed */
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }
}


/* Hero Section */
#hero {
  position: relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}

.hero-img {
  width: 100%;
  height: 100%;          /* use viewport height for better proportion */
  object-fit: cover;     /* ensures image covers area without distortion */
  object-position: center; /* centers the important part of the image */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 20px;   /* optional: soft corners */
  box-shadow: 0 12px 35px rgba(0,0,0,0.12); /* optional shadow */
  transition: opacity 1s ease-in-out; /* smooth fade if you want */
}


#hero::after {
  content:"";
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(75,46,46,0.45);
  z-index:0;
}

.hero-content {
  position:relative;
  z-index:1;
  animation:fadeInUp 1s ease forwards;
  max-width:800px;
  padding:0 20px;
}

#hero h1 {
  font-family:'Montserrat', sans-serif;
  font-size:3.2rem;
  font-weight:700;
  margin-bottom:20px;
}

#hero p {
  font-size:1.3rem;
  margin-bottom:30px;
}

.btn {
  padding:12px 30px;
  background:linear-gradient(90deg,#B03A2E,#F9E2AE);
  color:#4B2E2E;
  text-decoration:none;
  font-weight:600;
  border-radius:8px;
  transition:0.3s;
}

.btn:hover {
  transform:translateY(-3px);
  box-shadow:0 6px 15px rgba(176,58,46,0.4);
}

/* Sections */
.section { padding:100px 20px; }
.bg-light { background:#FFF9E5; }
.container { max-width:1200px; margin:auto; }
.section h2 { font-size:2.5rem; font-weight:700; margin-bottom:30px; text-align:center; color:#4B2E2E; }
.section-img { width:100%; border-radius:12px; margin:25px 0; }

/* Advocacy & Focus - 2 Cards per Row, Compact Layout */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 cards filling row */
  column-gap: 5px;   /* tiny horizontal gap between cards */
  row-gap: 30px;     /* vertical gap between rows */
  margin-top: 40px;
}

.focus-card {
  display: flex;
  flex-direction: column; /* image on top, text below */
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  width: 80%;       /* fills the column */
  text-align: center;
  transition: 0.4s;
  overflow: hidden;
}

.focus-card img {
  width: 100%;          
  height: 350px;        /* taller to show more of the image */
  object-fit: cover;    
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: block;
}

.focus-card h4 {
  margin: 15px 10px 10px 10px;
  color: #4B2E2E;
  font-size: 1.15rem;
}

.focus-card p {
  margin: 0 10px 15px 10px;
  color: #4B2E2E;
  font-size: 1rem;
  line-height: 1.5;
}

/* Hover effect */
.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Responsive: 1 card per row on smaller screens */
@media(max-width: 1024px) {
  .focus-grid {
    grid-template-columns: 1fr; /* stack vertically */
    column-gap: 0;  /* no horizontal gap */
    row-gap: 25px;  /* smaller vertical gap */
  }

  .focus-card img {
    height: 350px; /* slightly smaller for tablet */
  }
}

@media(max-width: 768px){
  .focus-card img {
    height: 300px; /* smaller for mobile */
  }
}

/* Achievements – Plain Vertical Layout */
.achievements-plain {
  margin-top: 50px;
}

.achievement-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.achievement-row.reverse {
  flex-direction: row-reverse;
}

.achievement-row img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.achievement-text {
  max-width: 600px;
}

.achievement-text h4 {
  font-size: 1.3rem;
  color: #4B2E2E;
  margin-bottom: 10px;
}

.achievement-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4B2E2E;
}

/* Mobile */
@media (max-width: 768px) {
  .achievement-row,
  .achievement-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .achievement-row img {
    width: 120px;
  }
}


/* Impact */
.impact-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:25px; margin-top:40px; }
.impact-card { background:#FFFFFF; padding:30px; border-radius:12px; text-align:center; box-shadow:0 5px 20px rgba(0,0,0,0.1); transition:0.4s; }
.impact-card:hover { transform:translateY(-10px); box-shadow:0 10px 25px rgba(0,0,0,0.15); }
.impact-card h3 { font-size:2.5rem; color:#B03A2E; margin-bottom:10px; }
.impact-card p { font-size:1rem; }

/* Fund Section Layout */
.fund-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
/* Fund Section Image – FORCE PERFECT CIRCLE */
.fund-image {
  width: 380px;
  aspect-ratio: 1 / 1;   /* 🔥 forces square */
  flex-shrink: 0;        /* prevents flex from stretching it */
  margin: auto;
}

.fund-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .fund-image {
    width: 280px;
  }
}

/* Right Content */
.fund-content {
  flex: 1 1 450px;
}

.fund-content h2 {
  text-align: left;
  margin-bottom: 20px;
  color: #4B2E2E;
}

/* Fund List */
.fund-list {
  margin-top: 20px;
  padding-left: 25px;
}

.fund-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #4B2E2E;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .fund-container {
    flex-direction: column;
    text-align: center;
  }

  .fund-content h2 {
    text-align: center;
  }

  .fund-image img {
    height: 300px;
  }
}


/* Footer */
footer { background: linear-gradient(135deg, #4B2E2E, #B03A2E); color:#fff; text-align:center; padding:25px 0; font-weight:500; }

/* Animations */
@keyframes fadeInUp { 0% {opacity:0; transform:translateY(20px);} 100% {opacity:1; transform:translateY(0);} }

/* Responsive */
@media(max-width:1024px){
  .vision-mission { flex-direction:column; }
  #hero h1 { font-size:2.5rem; }
  #hero p { font-size:1.1rem; }
}

@media(max-width:768px){
  #hero { height:70vh; }
  .btn { padding:10px 20px; font-size:0.9rem; }
}

/* About Us Split Layout */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 20px;
  color:#4B2E2E;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
  color:#4B2E2E;
}

.about-image {
  flex: 1 1 500px;
}

.about-image img {
  width: 500px;        /* same as height to make it square */
  height: 500px;
  border-radius: 50%;  /* makes it circular */
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  object-fit: cover;   /* ensures the image covers the circle nicely */
}


/* Responsive */
@media(max-width:1024px){
  .about-container { gap: 30px; }
}

@media(max-width:768px){
  .about-container { flex-direction: column-reverse; }
  .about-text { text-align: left; }
  .vision-mission { flex-direction: column; }
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.achievement-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.achievement-card img {
  width: 80px;
  margin-bottom: 15px;
}

.achievement-card h4 {
  color:#4B2E2E;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.achievement-card p {
  font-size: 0.95rem;
  color:#4B2E2E;
}

/* Contact Map */
.contact-map {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 0 auto 30px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Contact Info */
.contact-info {
  text-align: center;
  margin-bottom: 25px;
}

.contact-info p {
  margin: 12px 0;
  font-size: 1.1rem;
  color:#4B2E2E;
}

.contact-info a {
  color:#F9E2AE;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  color:#B03A2E;
  text-decoration: underline;
}

/* Social Links */
.contact-social {
  text-align: center;
  margin-top: 20px;
}

.contact-social a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: inherit;
  transition: transform 0.3s;
}

.contact-social a:nth-child(1) { color:#3b5998; }   
.contact-social a:nth-child(2) { color:#C13584; }   
.contact-social a:nth-child(3) { color:#000000; }   
.contact-social a:nth-child(4) { color:#0088cc; }   
.contact-social a:nth-child(5) { color:#0e76a8; }   

.contact-social a:hover {
  transform: scale(1.3);
  opacity: 0.9;
}

footer {
  background: linear-gradient(135deg, #4B2E2E, #B03A2E);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-weight: 500;
  position: relative;
}

footer .footer-content p {
  margin: 8px 0;
}

footer .footer-note {
  font-size: 0.9rem;
  color: #F9E2AE;
  margin-top: 10px;
}

footer .footer-social {
  margin: 15px 0;
}

footer .footer-social a {
  margin: 0 10px;
  font-size: 1.4rem;
  color: #fff;
  transition: 0.3s;
}

footer .footer-social a:hover {
  color: #F9E2AE;
  transform: scale(1.2);
}

/* Vision & Mission */
.vision-mission {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}

.vision-mission > div {
  background: none;       
  padding: 0;             
  box-shadow: none;      
  border-radius: 0;       
  margin-bottom: 40px;    
}

.vision-mission h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color:#B03A2E;
  margin-bottom: 15px;
}

.vision-mission p {
  font-size: 1.1rem;
  line-height: 1.8;
  color:#4B2E2E;
  margin: 0 auto;
  max-width: 700px;
}

/* Story Section */
.story-section {
  background: #FFFFFF;
}

.story-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.story-image img {
  width: 420px;       /* Make width equal to height */
  height: 420px;      /* Keep it square for a perfect circle */
  object-fit: cover;  /* Keeps the image fully covering the circle */
  border-radius: 50%; /* Makes it circular */
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}


.story-text {
  max-width: 520px;
}

.story-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color:#B03A2E;
}

.story-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color:#4B2E2E;
  margin-bottom: 20px;
}

.quote-section {
  background: linear-gradient(135deg, #B03A2E, #4B2E2E);
  padding: 90px 20px;
  text-align: center;
  position: relative; /* allow absolute positioning for image */
}

.quote-content {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.quote-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #F9E2AE;
  font-family: 'Montserrat', sans-serif;
}

.quote-author {
  display: block;
  margin-top: 25px;
  font-size: 1rem;
  color:#FFF1B0;
}

/* Passport Image in Corner */
.quote-image {
  position: absolute;
  bottom: 0;
  right: 0; /* can also use left:0 for bottom-left */
  width: 100px;      /* adjust size */
  height: 100px;     /* square */
  border-radius: 50%; /* circular */
  object-fit: cover;
  border: 3px solid #F9E2AE; /* optional border to highlight */
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .quote-text {
    font-size: 1.4rem;
  }

  .quote-image {
    width: 70px;
    height: 70px;
    bottom: 10px;
    right: 10px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .story-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .story-image img {
    height: 320px;
  }

  .quote-text {
    font-size: 1.4rem;
  }
}
.story-text .story-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background-color: #4B2E2E;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.story-text .story-btn:hover {
  background-color: #6a3f3f;
  transform: translateY(-2px);
}
/* Partner Feature */
.partner-feature {
  padding: 80px 0;
  background: #fdfaf6;
}

.partner-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.partner-photo img {
  width: 300px;
  height: 300px;
  object-fit: cover;
 border-radius: 50%;

}

.partner-text h2 {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.partner-text h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #333;
}

.partner-role {
  font-weight: 500;
  color: #b48a3a;
  margin-bottom: 20px;
}

.partner-text p {
  max-width: 520px;
  line-height: 1.7;
  color: #555;
}
/* Mobile responsiveness */
@media (max-width: 768px) {

  .partner-feature {
    padding: 50px 20px;
  }

  .partner-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .partner-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }

  .partner-text h3 {
    font-size: 1.6rem;
  }

  .partner-text p {
    max-width: 100%;
    font-size: 0.95rem;
  }
}
/* Watch Video Button */
.watch-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #4B2E2E;
  border: 1px solid #4B2E2E;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.watch-video-btn i {
  font-size: 0.85rem;
}

.watch-video-btn:hover {
  background: #4B2E2E;
  color: #fff;
}
@media (max-width: 600px) {
  .watch-video-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    margin-top: 14px;
  }
}
.support-section {
  background: #f9f9f9;
  text-align: center;
}

.support-text {
  max-width: 600px;
  margin: 10px auto 30px;
}

.support-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.support-item img {
  width: 90px;
  margin-bottom: 8px;
}

.support-item {
  min-width: 150px;
}

/* GoFundMe button — brown theme */
.gofund-btn {
  background:  #4B2E2E;      /* medium brown */
  color: #FFFFFF;           /* white text */
  border: 1px solid #6B4F3F;/* dark brown border */
}

.gofund-btn:hover {
  background: #4B2E2E;      /* dark brown */
  color: #FFFFFF;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #F9E2AE;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;       /* hide links initially on mobile */
    flex-direction: column;
    width: 100%;
    background: #4B2E2E;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .nav-links.show {
    display: flex;       /* show when hamburger is clicked */
  }

  .nav-links li a {
    padding: 12px 20px;
  }
}
@media (max-width: 768px) {
  /* About Us and Story text */
  .about-text,
  .story-text {
    text-align: left;       /* align text to the left */
    max-width: 95%;         /* prevent it from being too wide */
    margin: 0 auto;         /* center container if smaller than screen */
  }

  /* Optional: limit the inner paragraph width for readability */
  .about-text p,
  .story-text p {
    max-width: 500px;       /* paragraphs won’t stretch too far */
    margin: 0 auto 15px;    /* auto center horizontally with spacing between paragraphs */
  }
}
/* ================= MOBILE ENHANCEMENTS ================= */
@media (max-width: 768px) {

  /* Hero Section */
  #hero {
    height: 65vh; /* reduce height on small screens */
    padding: 0 15px;
  }

  #hero h1 {
    font-size: 2rem !important;
  }

  #hero p {
    font-size: 1rem !important;
  }

  .btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }

  /* Hero image */
  .hero-img {
    border-radius: 10px !important;
  }

  /* Navbar adjustments */
  .nav-container {
    padding: 0 15px !important;
  }

  .nav-links li a {
    padding: 10px !important;
    font-size: 0.95rem !important;
  }

  .logo {
    font-size: 1.2rem !important;
  }

  .logo-img {
    width: 35px !important;
    height: 35px !important;
  }

  /* Story Section */
  .story-wrapper {
    flex-direction: column !important;
    gap: 25px !important;
  }

  .story-image img {
    width: 280px !important;
    height: 280px !important;
  }

  .story-text {
    max-width: 95% !important;
    text-align: center !important;
  }

  .story-text h2 {
    font-size: 1.8rem !important;
  }

  .story-text p {
    font-size: 1rem !important;
  }

  .story-text .story-btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
  }

  /* About Us */
  .about-container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .about-text,
  .about-image img {
    width: 90% !important;
    max-width: 400px !important;
    height: auto !important;
  }

  .about-text h2 {
    font-size: 1.8rem !important;
  }

  .about-text p {
    font-size: 1rem !important;
  }

  /* Partner Feature */
  .partner-wrapper {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .partner-photo img {
    width: 180px !important;
    height: 180px !important;
  }

  .partner-text h3 {
    font-size: 1.4rem !important;
  }

  .partner-text p {
    font-size: 0.9rem !important;
  }

  /* Fund Section */
  .fund-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 25px !important;
  }

  .fund-image {
    width: 30px !important;
    height: 300px !important;
  }

  .fund-content h2 {
    font-size: 1.8rem !important;
    text-align: center !important;
  }

  .fund-list li {
    font-size: 1rem !important;
  }
  /* Fund Section – FIXED for Mobile */
@media (max-width: 768px) {
  .fund-image {
    width: 220px !important;   /* good mobile size */
    aspect-ratio: 1 / 1;       /* keep it perfectly square */
    height: auto !important;
    margin: 0 auto;
  }

  .fund-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
}


  /* Achievements */
  .achievement-row,
  .achievement-row.reverse {
    flex-direction: column !important;
    text-align: center !important;
  }

  .achievement-row img {
    width: 120px !important;
    margin-bottom: 15px !important;
  }

  .achievement-text h4 {
    font-size: 1rem !important;
  }

  .achievement-text p {
    font-size: 0.95rem !important;
  }

  /* Impact Grid */
  .impact-card h3 {
    font-size: 2rem !important;
  }

  .impact-card p {
    font-size: 0.95rem !important;
  }

  /* Quote Section */
  .quote-section {
    padding: 60px 15px !important;
  }

  .quote-text {
    font-size: 1.3rem !important;
  }

  .quote-image {
    width: 60px !important;
    height: 60px !important;
  }

  /* Support Section */
  .support-item img {
    width: 70px !important;
  }

  .support-item {
    min-width: 120px !important;
  }

  /* Watch Video Button */
  .watch-video-btn {
    font-size: 0.8rem !important;
    padding: 8px 14px !important;
  }

  /* Footer */
  footer {
    padding: 30px 15px !important;
  }

  footer .footer-social a {
    font-size: 1.2rem !important;
    margin: 0 8px !important;
  }

  /* Misc padding/margin */
  .section {
    padding: 60px 15px !important;
  }

  .focus-grid {
    grid-template-columns: 1fr !important;
  }

  .focus-card img {
    height: 250px !important;
  }

  .fund-list {
    padding-left: 15px !important;
  }

}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column !important;
    gap: 0 !important;      /* remove space between text and image */
  }

  .about-text,
  .about-image {
    margin: 0 !important;   /* remove any margin that could add space */
  }

  .about-image img {
    width: 90% !important;
    max-width: 400px !important;
    height: auto !important;
    margin: 0 auto !important; /* center image but no extra vertical space */
  }
}
@media (max-width: 768px) {
  .about-image {
    display:none !important;
  }
}
/* Tighten Vision & Mission under About Us on small screens */
@media (max-width: 768px) {
  .about-container {
    margin-bottom: 0 !important;  /* remove extra space below About Us */
  }

  .vision-mission {
    margin-top: 0 !important;     /* sit directly below About Us */
  }
}
.video-section {
  background: #4B2E2E;
  color: #fff;
  text-align: center;
}

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

.video-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.video-intro {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

/* VIDEO WRAPPER – NO CROPPING */
.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

/* SHOW FULL VIDEO FRAME */
.video-wrapper video {
  width: 100%;
  height: auto;              /* IMPORTANT */
  max-height: 80vh;          /* Prevents oversized video */
  object-fit: contain;       /* SHOW ENTIRE VIDEO */
  background: #000;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: block;
}

/* PLAY BUTTON OVERLAY */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.play-overlay::before {
  content: '';
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  position: absolute;
}

.play-overlay i {
  position: relative;
  color: #fff;
  font-size: 2.2rem;
  margin-left: 5px;
}

.play-overlay:hover::before {
  background: rgba(0,0,0,0.85);
}
.video-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #fff;
}


/* VIDEO TEXT RESPONSIVENESS */
@media (max-width: 768px) {
  .video-title {
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 0 15px;
  }

  .video-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 20px;
  }

  .video-hint {
    font-size: 0.9rem;
    padding: 0 20px;
  }

  .video-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .video-title {
    font-size: 1.4rem;
  }

  .video-intro {
    font-size: 0.9rem;
  }

}
@media (max-width: 768px) {
  .play-overlay {
    display: none;
  }
}
/* Founder Section */
.founder-section {
  background: #FFF9E5;
  padding: 120px 20px;
}

.founder-container {
  max-width: 760px;
  margin: auto;
}

/* Title */
.founder-title {
  text-align: center;
  margin-bottom: 80px;
}

.founder-title h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 500;
  color: #4B2E2E;
  letter-spacing: 0.5px;
}

/* Story flow */
.founder-story {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Story section (NOT BOXES) */
.story-block {
  position: relative;
  padding-left: 30px;
}

/* Soft vertical line like #about */
.story-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 100%;
  background: rgba(176, 58, 46, 0.25);
}

/* Subheadings */
.story-block h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B03A2E;
  margin-bottom: 20px;
}

/* Paragraphs — THIS is the magic */
.story-block p {
  font-family: "Shippori Mincho", serif;
  font-size: 1.15rem;
  line-height: 2;
  color: #3f2a2a;
  margin-bottom: 2px;
}

/* Highlight section — still elegant */
.story-block.highlight {
  padding-left: 30px;
  background: none;
}

.story-block.highlight::before {
  background: #B03A2E;
}

/* Plea section — emotional pause */
.story-block.plea {
  padding-left: 30px;
}

.story-block.plea p {
  font-style: italic;
}

/* Signature */
.founder-signature {
  margin-top: 1px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  color: #B03A2E;
}
/* Hero Image */
.founder-hero-image {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.founder-hero-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.story-image-pause {
  display: flex;
  justify-content: space-between; /* 👈 left | center | right */
  align-items: center;
  gap: 24px;
  margin: 100px auto 80px;
  max-width: 700px;              /* 👈 controls spread */
}

.story-image-pause img {
  width: 100%;
  max-width: 330px;
  height: 390px;              /* 👈 force same height */
  object-fit: cover;          /* 👈 crop, don’t stretch */
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.story-image-pause img:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .story-image-pause {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.media-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg,#B03A2E,#F9E2AE);
  color: #4B2E2E;
  font-weight: 600;
  border-radius: 22px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 0px;
}

.media-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(176,58,46,0.4);
}
