@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: auto;
    background-color: #f9f9f9;
    overflow-x: hidden;
    color: #1a1a1a;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #e6e6e6;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 12px;
    transition: all 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: #c9302f;
}

/* Navigation Bar */
nav {
    width: 100%;
    height: 10vh;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: #222;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px #04BFAD;
}

.hamburger, .cancel {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: #333;
    font-size: 1.5rem;
    display: none;
}

.nav-container .links {
    display: flex;
    gap: 20px;
}

.nav-container .links a {
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-container .links a:hover {
    color: #04BFAD;
}

/* Dropdown Menu */
.dropdown {
    display: none;
    position: absolute;
    top: 10vh;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    z-index: 9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
}

.dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown .links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dropdown .links a {
    color: #222;
    background: #f3f3f3;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropdown .links a:hover {
    background-color: #b74b4b;
    color: #fff;
}

.dropdown .cancel:hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .nav-container .links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Optional: make the nav full-width and stacked on mobile */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Main container */
.main-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem 3rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(3, 125, 115, 0.2);
  color: #222;
}

/* Section headings */
h2 {
  color: #037d73;
  margin-bottom: 1rem;
  border-left: 5px solid #037d73;
  padding-left: 0.75rem;
  font-weight: 700;
  font-size: 1.75rem;
  text-shadow: 0 1px 4px rgba(3, 125, 115, 0.4);
}

/* Paragraphs */
p {
  margin-bottom: 1.25rem;
  color: #555;
  font-size: 1.1rem;
}

/* Lists */
ul {
  margin-left: 1.25rem;
  margin-bottom: 1.5rem;
  color: #666;
  list-style-type: disc;
}

ul li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

/* Strong text */
strong {
  color: #3dad2b; /* same subtle green */
}

/* Image styling */
.image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(3, 125, 115, 0.4);
  display: block;
  margin: 1rem auto;
  border: 3px solid #037d73;
}

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.image-item {
  background: #f2f7f6;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(3, 125, 115, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
}

.image-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(3, 125, 115, 0.3);
}

.image-item p {
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #037d73;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

.image-item img {
  max-width: 100%;
  border-radius: 8px;
  border: 2px solid #037d73;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  border-top: 1px solid #ddd;
  color: #999;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .main-container {
    padding: 1.5rem 1.5rem;
  }

  .hamburger {
    display: block;
  }

  .links {
    display: none;
  }

  .dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}
