/* General Styles */
body {
  margin: 0;
  font-family: 'Adelphi PE', Arial, sans-serif; /* Set main font */
  box-sizing: border-box;
}

h1 {
  font-weight: 700; /* Bold */
}

p {
  font-weight: 300; /* Light */
}

/* Make sure body and html elements are 100% width */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  background-color: #0099cc;
  width: 100%; /* Ensures full width, but no overflow */
  box-sizing: border-box; /* Include padding and border in the total width */
  z-index: 999;
}

.logo-and-lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 90px;
  height: auto;
}

.language-toggle {
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.language-toggle a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  margin: 0 5px;
  font-weight: 600;
}

.language-toggle a:hover {
  color: #2287ca;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-menu .bar {
  width: 30px;
  height: 4px;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.open .bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {

  html, body {
      overflow-x: hidden; /* Prevent horizontal scrolling */
      scroll-behavior: smooth;
  }

  .navbar {
      flex-wrap: wrap; /* Stack items on smaller screens */
      position: relative; /* Ensure proper stacking */
      z-index: 10; /* Ensure navbar stays above other elements */
      
  }

  /* Logo and Language Toggle */
  .logo-and-lang {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between;
      margin-bottom: 10px;
  }

  /* Hamburger Menu */
  .hamburger-menu {
      display: flex; /* Show hamburger menu on mobile */
      position: relative; /* Ensure it stacks properly */
      z-index: 20; /* Higher than the logo */
  }

  /* Hide nav links by default on small screens */
  .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 10px;
      padding: 10px;
      background-color:#0099cc;
      position: absolute;
      top: 80px;
      left: 0;
  }

  /* Show the nav links when the 'active' class is added */
  .nav-links.active {
      display: flex;
  }

  /* Make nav link items spaced with borders on mobile */
  .nav-links li {
      border-bottom: 1px solid white;
      padding: 10px 0;
  }

  .nav-links li:last-child {
      border-bottom: none;
  }
}



/* Hero Section */
.hero {
  height: 100vh;
  background: 
      linear-gradient(rgba(63, 158, 212, 0.7), rgba(61, 141, 199, 0.7)), 
      url('hero-image.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-color: #444; /* Fallback color */
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0 0 15px 0;
  font-family: 'Adelphi PE', Arial, sans-serif; /* Adelphi PE font */
  font-variation-settings: "wght" 900; /* Use "Display Bold" weight */
  font-weight: 900; /* Fallback for older browsers */
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: 'Adelphi PE', Arial, sans-serif; /* Optional: match header */
  font-weight: 400; /* Normal weight */
}

/* Updated CTA Button in Hero Section */
.hero-content .cta {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: transparent; /* Remove orange background */
  color: white;
  border: 2px solid white; /* Add white border */
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease; /* Add transition for color changes */
  font-family: 'Adelphi PE', Arial, sans-serif;
  font-weight: 600; /* Semi-bold for button */
  text-decoration: none;
}

.hero-content .cta:hover {
  background-color: white; /* White background on hover */
  color: #0099cc; /* Change text color to blue on hover */
  border-color: #0099cc; /* Change border color to blue on hover */
}


/* About Content Section */
.about-content {
  padding: 50px 30px;
  background-color: #f0f0f0; /* Light gray background for this section */
  color: #333; /* Dark text for better readability */
  text-align: center; /* Center-align text */
  font-family: 'Adelphi PE', Arial, sans-serif;
}

/* Title for "Our Story" */
.about-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0099cc; /* Blue color for the title */
}

/* Paragraph styling for story content */
.about-content p {
  font-size: 1.2rem;
  font-weight: 300; /* Lighter weight for the text */
  margin-bottom: 30px; /* Add spacing between paragraphs */
  line-height: 1.6; /* Increased line height for better readability */
  color: #555; /* Medium gray color for text */
}

/* Updated CTA Button in About Section */
.about-content .cta {
  padding: 12px 25px;
  font-size: 1.2rem;
  background-color: transparent; /* Remove orange background */
  color: #0099cc; /* Blue text color */
  border: 2px solid #0099cc; /* Blue border */
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-content .cta:hover {
  background-color: #0099cc; /* Blue background on hover */
  color: white; /* Change text color to white on hover */
  transform: translateY(-2px); /* Slightly lift the button */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .about-content {
      padding: 30px 15px; /* Adjust padding on smaller screens */
  }

  .about-content h2 {
      font-size: 2rem; /* Smaller title font size on mobile */
  }

  .about-content p {
      font-size: 1rem; /* Slightly smaller text for readability on small devices */
  }

  .about-content .cta {
      font-size: 1rem; /* Make CTA button text smaller */
      padding: 10px 20px; /* Adjust button padding */
  }
}



.gallery-section {
  padding: 50px 30px;
  background-color: #f0f0f0;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #0099cc;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for images */
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for videos */
  gap: 20px;
}

.video-item video {
  width: 50%;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* 2 columns for smaller screens */
  }

  .video-grid {
    grid-template-columns: 1fr; /* Single column for videos on small screens */
    width: fit-content;
  }
}

.image-gallery-section {
  padding: 50px 30px;
  background-color: #f0f0f0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #0099cc;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for images */
  gap: 1px; /* Smaller gap between images */
  margin-bottom: 30px;
}

.image-item img {
  width: 50%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
  }
}




/* Footer Styling */
.footer {
  background-color: #123456; /* Replace with your dark blue color */
  color: white;
  padding: 40px 20px;
  text-align: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  margin: 0 10px;
}

.footer-column h3 {
  font-size: 1.5em; /* Increased header size */
  margin-bottom: 15px;
  color: white;
}

.footer-column p, 
.footer-column li, 
.footer-credit {
  font-size: 1em;
}

.footer-column ul {
  list-style-type: disc;
  margin-left: 0; /* Align bullet points with header */
  padding-left: 0;
}

.footer-column ul li {
  margin-left: 20px; /* Add indentation to the list items */
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.social-icon {
  width: 30px;
  height: 30px;
}

.footer-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo img {
  max-width: 150px; /* Increased logo size */
  height: auto;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}
