 /* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background: #632400;
    color: white;
    padding-bottom: 2rem;
}

header h1{
    font-family: "Playpen Sans";
    letter-spacing: 5px;
}
header h2{
    font-family: serif;
    font-weight: lighter;
    text-transform: uppercase;
    letter-spacing: 10px;
}
header p{
    font-family: "Merienda";
    font-size: 25px;
}
#scroll-to-top-btn {
  display: none; /* Hide the button by default */
  position: fixed; /* Make it stay in place as the user scrolls */
  bottom: 20px; /* Position it 20px from the bottom of the viewport */
  right: 20px; /* Position it 20px from the right of the viewport */
  z-index: 99; /* Put it on top of other elements */
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #b1b1b1;
  border: 2px solid rgb(97, 97, 97);
  color: white;
  cursor: pointer;
  padding: 7px;
  border-radius: 50%; /* Make it a circle */
}
#scroll-to-top-btn img{
    height: 30px;
}
#scroll-to-top-btn:hover {
  background-color: #333;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: white;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero p {
    margin: 1rem 0;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background: #ffcc00;
    padding: 0.75rem 1.5rem;
    color: black;
    font-weight: bold;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 2rem 1rem;
    max-width: 1800px;
    margin: auto;
}

section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #003366;
}

.text-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
    font-size: 1rem;
}

/* ===== Gallery Section ===== */
.gallery {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}

/* Carousel */
.carousel-container {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.caption {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #444;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.9);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Dots */
.carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.carousel-dots span {
  display: inline-block;
  width: 30px;
  height: 6px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.carousel-dots span.active {
  background: #eee;
}

.carousel-dots span.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #333;
  animation: fill 4s linear forwards;
}

@keyframes fill {
  from { width: 0; }
  to { width: 100%; }
}



.wel-principal{
    height: 30em;
    width: 100%;
    background-color: gainsboro;
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wel-principal img{
    height: 20em;
    width: 15em;
    object-fit: cover;
    border-radius: 10px;
    vertical-align: top;
    display: inline-block;
}
.wel-principal div{
    width: 30em;
    display: inline-block;
    vertical-align: top;
    margin-right: 1.4em;
}
.wel-principal div h1{
    font-size: 3em;
}
.wel-principal div p{
    font-size: 1.5em;
}
.wto{
    width: 100%;
    height: 20em;
    background-color: #222;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.wto .wto-img{
    background-color: white;
    display: inline-block;
    width: 15em;
    height: 15em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1em;
    margin-top: 2em;
    margin-bottom: 2em;
}
.wto .wto-img p{
    font-size: 1.3em;
    text-align: center;
    margin-top: 0;
}
.wto .wto-img img{
    height: 8em;
}
#leadership{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-section iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: grayscale(30%) brightness(0.8);
      z-index: 1;
    }

    .contact-box {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 20px;
      border-radius: 10px;
      max-width: 300px;
      margin: 20px;
      background-color: rebeccapurple;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: center;
    }

    .contact-box h2 {
      margin-top: 0;
    }

    .direction-button {
      margin-top: 15px;
      display: inline-block;
      padding: 10px 20px;
      background-color: #ffd700;
      color: #000;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
    }

    .direction-button:hover {
      background-color: #ffc107;
    }
/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    }

    .hero h1 {
    font-size: 2rem;
    }
}

  .contact-info {
      margin-bottom: 30px;
    }
    .map {
      width: 100%;
      height: 400px;
      border: none;
      border-radius: 10px;
    }
    .info-box {
      margin: 10px 0;
    }
    iframe{
        width: 200px;
        height: 100px;
    }