* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: white;
  color: #F0F4F8;
}

section {
  padding: 40px 40px;
  max-width: 1500px;
  margin: auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-link{
  text-decoration: none;
}

.name {
  font-size: 33px;
  color: white;
  margin: 0;
  padding: 0;
  font-family: serif;
}

.tagline {
  font-size: 14px;
  color: #f9a825;
  margin: 0;
  text-align: left;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* desktop: keep right-aligned */
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding-right: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  font-size: 18px;
}

.nav-menu a:hover {
  color: saddlebrown; /* accent color */
}

/* ---------- Hamburger Button ---------- */
/* Move hamburger icon to right */
.nav-toggle {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}


/* ---------- Responsive ---------- */

/* Tablets / Laptops: center nav links */
@media (max-width: 1200px) {
  .nav-bar {
    justify-content: center; /* center nav menu */
    width: 100%;
  }

  .nav-menu {
    justify-content: center; /* center links inside nav */
    padding-right: 0;
  }
}

/* Mobile / Small Tablets */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: black;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    flex-direction: column;
    align-items: center; /* center links vertically */
  }

  .nav-bar.active {
    max-height: 300px; /* show menu */
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;   /* center links horizontally */
    justify-content: center;
    text-align: center;    /* text centered */
    width: 100%;
    padding: 1rem 0;
    gap: 1rem;
    padding-left: 0;
  }
}

.founder-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdfaf6 0%, #fff8f0 100%);
  display: flex;
  justify-content: center;
}

.founder-wrapper {
  display: flex;
  align-items: center;
  max-width: 1000px;
  position: relative;
  gap: 40px;
}

/* Message Card */
.founder-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  flex: 1;
  position: relative;
  z-index: 1;
}

.founder-card h2 {
  font-size: 32px;
  color: #6E260E;
  margin-bottom: 20px;
  font-family: 'Times New Roman', serif;
  text-align: center;
}

.IML {
  color: #6E260E;
}


.founder-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.founder-name {
  font-weight: 500;
  font-style: italic;
  color: #6E260E;
}

/* Founder Image overlapping the card */
.founder-image {
  position: relative;
  z-index: 2;
  margin-left: -80px; /* overlap effect */
}

.founder-image img {
  width: 220px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #6E260E;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.founder-image img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Responsive Layout */

/* Tablets / iPads */
@media(max-width: 1024px) {
  .founder-wrapper {
    gap: 30px;
  }

  .founder-card h2 {
    font-size: 28px;
  }

  .founder-card p {
    font-size: 16px;
  }

  .founder-image {
    margin-left: -40px;
  }
}

/* Mobile Phones */
@media(max-width: 768px) {
  .founder-wrapper {
    flex-direction: column-reverse; /* stack text on top, image below */
    text-align: center;
  }

  .founder-card {
    padding: 30px 20px;
  }

  .founder-image {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .founder-image img {
    width: 200px;
    height: 260px;
  }

  .founder-card h2 {
    font-size: 24px;
  }

  .founder-card p,
  .founder-name {
    font-size: 16px;
  }
}

/* SECTION */
.ila-info {
  width: 100%;
  padding: 40px 40px;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  ),
  rgba(110, 38, 14, 0.9);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

/* LEFT / RIGHT */
.ila-left, .ila-right {
  flex: 1;
  padding: 0 20px;
  margin-bottom: 10px;
}

/* TITLE — FIXED + FORCED */
.ila-info .ila-title {
  font-size: 35px;
  font-weight: 500;
  color: black !important;        /* FORCE apply */
  font-family: 'Times New Roman', Times, serif;
  position: relative;
}

/* Contact title only */
.ila-right .ila-contact {
  font-size: 35px;             /* same as left title */
  font-weight: 500;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  position: relative;
  text-align: right;
  padding-right: 180px;
}

.ila-follow{
  font-size: 25px;             /* same as left title */
  font-weight: 500;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  position: relative;
  padding-top: 40px;
}

/* Keep the rest of contact details normal */
.ila-right p:not(.ila-contact) {
  font-size: 18px;
  color: blanchedalmond;
  margin: 6px 0;
  line-height: 1.4;
  text-align: left;
  padding-left: 300px;
}

.ila-subtitle{
  font-size: 15px;
  color: #f9a825;
}

.ila-email {
  color: #f9a825;       /* gold-ish color for visibility */
  text-decoration: none; /* remove underline */
  font-weight: 500;
}

.ila-email:hover {
  text-decoration: underline; /* optional hover effect */
  color: #6E260E;
}

/* Facebook icon link */
a[href*="facebook.com"] {
  font-size: 24px;               /* size of the icon */
  color: #1877f2;                /* Facebook blue */
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
  text-decoration: none;         /* remove underline */
}

a[href*="facebook.com"]:hover {
  color: #0f5bb5;                /* darker blue on hover */
  transform: scale(1.1);         /* slight grow effect */
}

.whatsapp-icon {
  color: #25D366;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
}

.whatsapp-icon:hover {
  color: #1ebe5d;
  transform: scale(1.1);
}

@media (max-width: 768px) {

  /* Stack layout */
  .ila-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    gap: 20px;
  }

  /* Left + Right full width */
  .ila-left, 
  .ila-right {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  /* Titles (Left + Right) */
  .ila-info .ila-title,
  .ila-right .ila-contact {
    font-size: 26px;
    padding-right: 0;
    text-align: center;
  }

  /* Contact text */
  .ila-right p:not(.ila-contact) {
    padding-left: 0;
    font-size: 16px;
    text-align: center;
  }

  /* Subtitle */
  .ila-subtitle {
    font-size: 14px;
  }

  /* Follow title */
  .ila-follow {
    font-size: 22px;
    padding-top: 15px;
    text-align: center;
  }

  /* Facebook icon */
  a[href*="facebook.com"] {
    font-size: 22px;
  }

  /* Hide decorative vertical line if exists */
  .ila-info::before {
    display: none !important;
  }
}


footer {
  background-color:black;
  color: #F0F4F8;
  text-align: center;
  padding: 15px 30px;
}
