body {
    font-family: 'Roboto', sans-serif;
    color: #333; /* Adjust text color to make it more readable */
    line-height: 1.6; /* Improve readability by adding space between lines */
  }
  
  /* Apply Lora to headings (h1, h2, etc.) */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: #000; /* Ensure headings stand out */
    font-weight: 700; /* Make headings bold */
  }
body, html {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

/* ===== Header Section ===== */
/*
.header {
    background-color: #3d4654;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
*/
.header{
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    align-items: center; /* Ensures vertical alignment of items */
    justify-content: space-between; /* Keeps logo and navbar at opposite ends */
    position: absolute; /* Layer above the video */
    width: 100%;
    z-index: 10; /* Keeps it above the video */
    padding: 10px 20px;
}
/* New: Group logo and navbar together */
.logo-nav {
    display: flex;
    align-items: center;
}

/* Logo */
.header img {
    max-height: 50px;
    height: auto;
    margin-right: 20px; /* Add spacing between logo and nav */
}

/* Navigation */
.navbar {
    display: flex;
}

.navbar a {
    font-family: 'Roboto', sans-serif;
    color: #F0F0F0;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2rem;
}

.navbar a:hover {
    color: #1ab555;
    text-decoration: underline;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.language-switcher .flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.language-switcher .flag:hover {
    transform: scale(1.1);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    height: 380px; /* Adjust as needed */
    background: url('../images/pexels.jpg') no-repeat center center/cover; /* Hero image */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns text to the left */
    padding-left: 5%; /* Moves text a bit from the edge */
    color: white;
    text-transform: uppercase;
    font-size: 3rem;
    font-family: 'Lora', serif;
}

/* Dark overlay for better text visibility */
.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 50% Dark overlay */
    top: 0;
    left: 0;
}

/* Ensure text is above the overlay */
.hero h1 {
    color: white; 
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
    position: relative;
    z-index: 2;
}

/* ===== Message Section ===== */

/* Style for the President's Message Section */
.president-message {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Light background for contrast */
    text-align: center;
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start slightly below */
    transition: opacity 1s ease, transform 1s ease; /* Smooth transition */
}

/* This will be added when the section is in view */
.president-message.show {
    opacity: 1;
    background-color: rgba(25, 46, 72, 0.1); /* Light blue with transparency */
    transform: translateY(0); /* Move to original position */
}

/* Styling for the content inside the message */
.message-container h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: rgb(25, 46, 72);
    margin-bottom: 20px;
}

/* Ensuring all paragraphs are styled consistently */
.message-container p {
    font-size: 1.2rem;
    color: rgb(25, 46, 72);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px; /* Added margin-bottom for space between paragraphs */
}

/* Styling for the last paragraph */
.message-container p:last-child {
    font-weight: bold;
    color: rgb(25, 46, 72);
    font-style: italic;
    margin-top: 30px;
}

/* ===== Contact Section ===== */

/* Style for the Contact Section */

.contact-section {
    display: flex;
    padding-left: 10px;
    justify-content: center; /* Centers the content horizontally */
    padding: 50px 20px;
    background-color: #f9f9f9;
    width: 100%; /* Ensures the section takes up the full width of the parent */
    box-sizing: border-box; /* Ensures padding doesn't affect the layout */
    }

  /* Google Maps Container */
  .map-container iframe {
    border-radius: 15px; /* Round the corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
  }
  
  /* Styling for the Contact Details */
  .contact-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 250px;
  }
  
  /* Individual Contact Items */
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #1a2a3a;
  }
  
  .contact-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: #1a2a3a; /* Dark color for the icon */
  }
  
  /* Contact Links */
  .contact-item p a {
    color: #1a2a3a;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-item p a:hover {
    color: #377968; /* Matching the theme's green */
  }
  
  /* Responsive design for small screens */
  @media (max-width: 898px) {
    .contact-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .contact-details {
      margin-left: 0;
      margin-top: 20px;
    }
    
    .contact-item {
      margin-bottom: 15px;
    }
  }
  
/* ===== Footer Section ===== */
.footer {
    background-color: #222; /* Dark background for the footer */
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-family: 'Lora', serif; /* Elegant font for the logo */
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 1rem;
    color: #f1f5f2;
}

.footer-contact p {
    font-size: 1.1rem;
    color: #f1f5f2;
    margin: 5px 0;
}

.footer-contact a {
    color: #377968; 
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline; /* Underline on hover for better user experience */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px; /* Spacing between icons */
}

.social-icons a {
  color: #377968;
  font-size: 35px; /* Icon size */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row; /* Arrange content horizontally for larger screens */
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-logo {
        text-align: left;
    }

    .footer-contact {
        text-align: right;
    }
}

