/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #F7F9FB;
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    border-radius: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

    nav a:hover {
        text-decoration: underline;
    }

/* Hero Section */
.hero {
    background: url('../images/memberphotos/situs-place-sign.jpg') center 30% / 100% no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
    background-color: #0078D7; /* fallback */
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    background-color: #0078D7;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

    .btn:hover {
        background-color: #005fa3;
    }

.btn-secondary {
    color: #0078D7;
    text-decoration: none;
    font-weight: bold;
}

    .btn-secondary:hover {
        text-decoration: underline;
    }

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

    .news h2 {
        color: #003366;
    }

    .news ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

    .news li {
        margin: 10px 0;
        font-size: 1.1em;
    }

/* Quick Links */
.quick-links {
    background-color: #e8eff7;
    text-align: center;
    padding: 30px 0;
}

    .quick-links .btn {
        margin: 10px;
    }

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
}

/* About Hero Section */
.about-hero {
    background: url('../images/memberphotos/situs-place-sign.jpg') center 30% / 100% no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.about-content {
    padding: 50px 20px;
    background-color: #F7F9FB;
}

    .about-content h2 {
        color: #003366;
    }

    .about-content h3 {
        color: #005fa3;
        margin-top: 20px;
    }

    .about-content ul {
        list-style-type: disc;
        padding-left: 20px;
    }

    .about-content p {
        line-height: 1.6;
    }
/* Simple Board Members Section */
.board-members {
    padding: 40px 20px;
    background-color: #e8eff7;
    text-align: center;
}

    .board-members h2 {
        color: #003366;
        margin-bottom: 30px;
    }

.board-member {
    margin-bottom: 30px;
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.board-member h3 {
    color: #005fa3;
    margin-bottom: 5px;
}

.board-member p {
    font-size: 0.95em;
    line-height: 1.4;
}
/*
.pulse {
  display: inline-block;
  font-weight: bold;
  color: red;
  animation: pulse 1.3s ease-in-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
*/
.pulse {
  display: inline-block;
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}
