/* ====== GLOBAL STYLES ====== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #003366;
    color: white;
    padding: 10px 0;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar li {
    margin: 0 15px;
    position: relative; /* needed for dropdown positioning */
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
}

.navbar a:hover {
    text-decoration: underline;
}

/* ====== HERO SECTION ====== */ 

/*
.hero-images {
    display: flex;              /* put them side by side */
    /* justify-content: center;     center horizontally */
    justify-content: flex-start; /* 👈 aligns images to the left */
    gap: 20px;                  /* space between images */
    margin-bottom: 20px;        /* space below images */
}

.hero-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    /* REMOVE the centering below: */
    display: block; /* <- you can keep this or remove, doesn't affect flex layout */
    margin: 0; /* <-- remove auto-centering */
}
*/

.hero-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; /* ✅ allows them to stack on very small screens */
}

.hero-image {
  max-width: 45%;  /* ✅ scales down with screen */
  height: auto;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}









.twitter-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1DA1F2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.twitter-button:hover {
    background-color: #0d8ddb;
}

/* ====== MAIN CONTENT ====== */
section {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

/* ====== FOOTER ====== */
footer {
    text-align: center;
    padding: 20px;
    background-color: #003366;
    color: white;
}

/* ====== DROPDOWN MENU ====== */
.dropdown {
    display: inline-block;
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px 15px;
    font-weight: bold;
}

.dropdown-content {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%; /* positions right below the button */
    left: 0;
    background-color: #333;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

/* Show dropdown when JS adds .show */
.dropdown-content.show {
    display: flex;
}

.dropdown-btn {
    background-color: #444;
    border: none;
    color: white;
    padding: 12px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid #555;
    transition: background-color 0.2s ease;
}

.dropdown-btn:last-child {
    border-bottom: none;
}

.dropdown-btn:hover {
    background-color: #555;
}

