/* Global Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333333;
    background-color: #f5f5f5; /* Light cream background */
    line-height: 1.6;
}

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

/* Header */
.dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown button {
  background-color: rgb(223, 229, 231);
    
    color: white;
    padding: 0px 0px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: -7px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;

    
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown button:hover {
    background-color: #768d76;
  }
  .imgdrop{
      width: 50px;
      height: 40px;
  }

header {

  margin: 10px 10px 10px 10px;

  border-radius: 25px;
  background-color: rgb(223, 229, 231);
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .logo h1 {
  font-size: 24px;
}

header nav ul {
  list-style-type: none;
  display: flex;
  justify-content: baseline;
}

header nav ul li {
  margin-left: 20px;
  
}

header nav ul li a {
  color: black;
  text-decoration: none;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section with Video */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    z-index: -1; /* Push video to the background */
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensures text appears above the video */
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Add shadow for readability */
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Add shadow for readability */
}

.cta-button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #ff6f61;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6554d;
}

/* Programs Section */
.programs {
    padding: 50px 20px;
    text-align: center;
}

.program-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.program-item {
    max-width: 300px;
}

.program-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.program-item p {
    font-size: 16px;
    color: #555555;
}

/* Gallery Section (Image size updated to 500x300) */
.gallery {
    padding: 50px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
