/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
}

.logo img {
    width: 120px;
    height: auto;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 0.5rem;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.1rem);
    font-style: italic;
}

/* Navigation */
nav {
    background-color: #333;
    padding: 1rem;
}
/*
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}
*/
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

#nav-menu {
    display: block;
}

#nav-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

#nav-menu ul li {
    display: inline;
}

.hamburger span {
    background-color: white;
    height: 3px;
    width: 100%;
    border-radius: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

nav ul li {
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

nav a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
/*    background: url('/RadioWaves.png') center/cover no-repeat;*/
    color: white;
    text-align: center;
    padding: 3rem 1rem;
   /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
}

.hero h2 {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 0.75rem;
	color: #2a5298;
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #333;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: background-color 0.3s;
    touch-action: manipulation;
}

.cta-button:hover {
    background-color: #e6c200;
}

/* Sections */
section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 5vw, 1.8rem);
    color: #1e3c72;
    margin-bottom: 0.75rem;
}

section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 4vw, 1.6rem);
    color: #1e3c72;
    margin: 1rem 0 0.5rem;
}

section h4 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin: 1rem 0 0.5rem;
}

section p, section ul {
    margin-bottom: 0.75rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

section ul {
    list-style: disc;
    margin-left: 1.5rem;
}

/* Members and Admin Sections */
#members, #admin {
    background-color: #e9ecef;
}

.login-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.member-content {
    margin-top: 1rem;
}

#bylaws-content, #articles-content {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Forms */
#registration-form, #member-login-form, #admin-login, #event-form, #repeater-form,
#bylaws-form, #articles-form, #minutes-form, #other-content-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.25rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6"><path fill="%23333" d="M0 0h12L6 6z"/></svg>') no-repeat right 0.75rem center/12px 6px;
}

.form-notice {
    font-style: italic;
    color: #1e3c72;
}

/* Calendar Styles */
.calendar-month {
    margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calendar-month h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.calendar-events {
    list-style: none;
    padding: 0;
}

.calendar-events li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #f9f9f9;
    border-left: 4px solid #1e3c72;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: start;
}

.calendar-date {
    font-weight: bold;
    color: #1e3c72;
    font-size: 1.1rem;
}

.calendar-event-name {
    font-weight: bold;
    color: #333;
    grid-column: 2;
}

.calendar-event-desc {
    grid-column: 2;
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* Resource Items */
.resource-item {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.resource-item h4 {
    margin-top: 0;
    color: #1e3c72;
}

.resource-item p {
    margin-bottom: 0;
}

/* Admin Table */
#user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

#user-table th, #user-table td {
    border: 1px solid #ccc;
    padding: 0.5rem;
    text-align: left;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

#user-table th {
    background-color: #1e3c72;
    color: white;
}

#user-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

#user-table button {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

#user-table button:hover {
    background-color: #c9302c;
}

#user-table button.activate {
    background-color: #5cb85c;
}

#user-table button.activate:hover {
    background-color: #4cae4c;
}

/* Alternating Section Backgrounds */
#about, #events, #register {
    background-color: #fff;
}

#repeater, #contact {
    background-color: #e9ecef;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 1.5rem;
}

footer p {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    margin-bottom: 0.5rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
 /*   .hamburger {
        display: flex;
    }
	
	
    
	nav ul {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background-color: #333;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        text-align: center;
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }
	*/
	.hamburger {
        display: block;
    }

    #nav-menu {
        display: none;
    }
	#nav-menu.active {
        display: block;
    }

    #nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    #nav-menu ul li {
        margin: 0.5rem 0;
    }

    .logo img {
        width: 100px;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
    }

    section {
        padding: 1.5rem 1rem;
    }

    #registration-form, #member-login-form, #admin-login, #event-form, #repeater-form,
    #bylaws-form, #articles-form, #minutes-form, #other-content-form {
        max-width: 100%;
    }

    .login-container {
        max-width: 100%;
        padding: 1rem;
    }

    #user-table {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }

    #user-table th, #user-table td {
        padding: 0.3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
    }

    .hero h2 {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }

    section h2 {
        font-size: clamp(1.4rem, 4.5vw, 1.6rem);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.4rem;
    }

    #user-table {
        display: block;
        overflow-x: auto;
    }
	#user-list {
    display: table;
	}
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
header, footer {
  background: #003366;
  color: white;
  padding: 1em;
}
header h1 {
  margin: 0;
}
main {
  padding: 1em;
}
section {
  margin-bottom: 2em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}
form {
  margin-top: 0.5em;
}
form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.5em;
}
button {
  background: #0066cc;
  color: white;
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
}
button:hover {
  background: #004c99;
}
ul {
  list-style: none;
  padding: 0;
}
ul li {
  margin-bottom: 0.5em;
}
ul li button {
  margin-left: 0.5em;
}
