/* Custom Font */
@font-face {
    font-family: 'Alliance No.2';
    src: url('../fonts/Alliance No.2 Regular.otf') format('opentype');
    font-weight: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #450084;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: #009698;
    color: white;
}

.btn-primary:hover {
    background: #8EE4D7;
    color: #333333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #8EE4D7;
    color: #333333;
    border: 2px solid #009698;
}

.btn-secondary:hover {
    background: #009698;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #009698;
    border: 2px solid #009698;
}

.btn-outline:hover {
    border-color: #8EE4D7;
    background: #8EE4D7;
    color: #333333;
}

/* Hero Section */
.hero {
    background: #009698;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero h1 {
    font-family: 'Alliance No.2', serif;
    font-size: 3.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: #009698;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Alliance No.2', serif;
    font-size: 3rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-family: 'Alliance No.2', serif;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 3rem;
    text-align: center;
    color: #009698;
}

section h3 {
    font-family: 'Alliance No.2', serif;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #009698;
}

/* Mission Section */
.mission {
    background: #F4EFE1;
}

.mission p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #009698;
}

.highlight-card h3 {
    color: #009698;
    margin-bottom: 0.5rem;
}

.highlight-card .date {
    color: #009698;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.focus-list {
    list-style: none;
    margin: 0.5rem 0 2rem 0;
}

.focus-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.focus-list li:last-child {
    border-bottom: none;
}

.placeholder-image {
    background: #f1f5f9;
    height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
}

.community-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Timeline */
.origin-story {
    background: #F4EFE1;
}

.timeline {
    max-width: 600px;
    margin: 2rem auto;
}

.timeline-item {
    display: flex;
    margin: 2rem 0;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #009698;
    border-radius: 50%;
    margin-right: 2rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.timeline-content h4 {
    color: #009698;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.member-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #8EE4D7;
}

.member-photo {
    margin-bottom: 1rem;
}

.member-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8EE4D7;
}

.placeholder-photo {
    width: 80px;
    height: 80px;
    background: #009698;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto;
}

.member-role {
    color: #009698;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-bio {
    color: #64748b;
    font-size: 0.95rem;
}

.member-login {
    background: #F4EFE1;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.login-note {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Lessons Page */
.lessons-filter {
    background: #F4EFE1;
    padding: 2rem 0;
}

.semester-section {
    text-align: center;
    margin: 4rem 0 3rem;
}

.semester-section h2 {
    color: #450084;
    margin-bottom: 1rem;
}

.semester-description {
    font-size: 1.1rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
}

/* Individual Lesson Pages */
.lesson-content {
    padding: 2rem 0 4rem;
}

.lesson-nav {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.lesson-main {
    max-width: 800px;
    margin: 0 auto;
}

.lesson-overview {
    background: #8EE4D7;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.lesson-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.lesson-objectives,
.lesson-topics,
.lesson-resources {
    margin-bottom: 3rem;
}

.lesson-objectives ul,
.topic-section ul,
.topic-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.lesson-objectives li,
.topic-section li {
    margin: 0.5rem 0;
    color: #333333;
}

.topic-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border: 1px solid #8EE4D7;
}

.topic-section h3 {
    color: #009698;
    margin-bottom: 1rem;
}

.status-banner {
    background: #009698;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.status-banner h3 {
    color: white;
    margin-bottom: 1rem;
}

.status-banner ul {
    text-align: left;
    max-width: 400px;
    margin: 1rem auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.resource-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
    text-align: center;
}

.resource-item h4 {
    color: #009698;
    margin-bottom: 0.5rem;
}

.resource-item p {
    color: #333333;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.status-coming-soon {
    background: #009698;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Leadership Page */
.leadership-content {
    padding: 4rem 0;
}

.leadership-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.leader-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.leader-card.founder {
    border-color: #009698;
    box-shadow: 0 8px 25px rgba(0, 150, 152, 0.15);
}

.leader-photo {
    flex-shrink: 0;
}

.leader-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8EE4D7;
}

.founder .leader-photo img {
    border-color: #009698;
}

.leader-info h3 {
    color: #009698;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.leader-title {
    color: #009698;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.leader-bio {
    color: #333333;
    line-height: 1.6;
}

.leadership-mission {
    background: #F4EFE1;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.leadership-mission h2 {
    color: #009698;
    margin-bottom: 2rem;
}

.leadership-mission > p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.leadership-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
}

.value-item h4 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: #333333;
    line-height: 1.6;
}

/* Members List */
.members-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #8EE4D7;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.member-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.member-initial {
    width: 40px;
    height: 40px;
    background: #009698;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.member-name {
    font-weight: 500;
    color: #333333;
}

.membership-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.stat-item {
    background: #F4EFE1;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
}

.stat-item h3 {
    font-family: 'Alliance No.2', serif;
    font-size: 2.5rem;
    color: #009698;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #333333;
    font-weight: 500;
}

/* Social Media Section */
.social-media {
    background: #F4EFE1;
    text-align: center;
}

.social-media h2 {
    color: #009698;
    margin-bottom: 1rem;
}

.social-media p {
    color: #333333;
    margin-bottom: 2rem;
}

.social-links-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.social-link-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #009698;
}

.social-icon {
    font-size: 2rem;
    font-weight: bold;
    color: #009698;
    background: #8EE4D7;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.social-link-card h3 {
    color: #009698;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.social-link-card p {
    color: #333333;
    margin: 0;
    font-weight: 500;
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: #8EE4D7;
    color: #009698;
}

/* Homework Page */
.homework-content {
    padding: 4rem 0;
}

.homework-info {
    margin-bottom: 4rem;
}

.assignment-card {
    background: #8EE4D7;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #009698;
    max-width: 800px;
    margin: 0 auto;
}

.assignment-card h3 {
    color: #333333;
    margin-bottom: 1rem;
}

.assignment-description {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.assignment-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.due-date {
    color: #009698;
    font-weight: 600;
}

.assignment-type {
    background: #009698;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.submission-form-section {
    margin-bottom: 4rem;
}

.homework-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
}

.homework-form .form-group {
    margin-bottom: 1.5rem;
}

.homework-form input[type="file"] {
    border: 2px dashed #8EE4D7;
    padding: 1rem;
    background: #F4EFE1;
}

.homework-form small {
    color: #009698;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.homework-guidelines {
    margin-bottom: 4rem;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guideline-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
}

.guideline-item h4 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guideline-item p {
    color: #333333;
    line-height: 1.6;
}

.assignments-list {
    max-width: 800px;
    margin: 0 auto;
}

.assignment-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.assignment-item h4 {
    color: #009698;
    margin-bottom: 0.5rem;
}

.assignment-item p {
    color: #333333;
    margin: 0;
}

.status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status.completed {
    background: #10b981;
    color: white;
}

/* Coming Soon Events */
.coming-soon {
    text-align: center;
    margin-bottom: 4rem;
}

.coming-soon-card {
    background: #8EE4D7;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #009698;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-card h3 {
    color: #333333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.coming-soon-card p {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coming-soon-card ul {
    text-align: left;
    max-width: 400px;
    margin: 2rem auto;
    color: #333333;
}

.coming-soon-card li {
    margin: 0.5rem 0;
}

.coming-soon-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.regular-meetings {
    background: #F4EFE1;
    padding: 3rem 0;
    text-align: center;
}

.meeting-info {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
}

.meeting-info h3 {
    color: #009698;
    margin-bottom: 1.5rem;
}

.meeting-info p {
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.meeting-info strong {
    color: #009698;
}

/* Google Forms Styling */
.google-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #8EE4D7;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.google-form-container iframe {
    max-width: 100%;
    border-radius: 8px;
}

/* Responsive iframe */
@media (max-width: 768px) {
    .google-form-container {
        padding: 1rem;
    }
    
    .google-form-container iframe {
        height: 1200px;
    }
}

.filter-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search-input,
.filter-select {
    padding: 12px 16px;
    border: 2px solid #8EE4D7;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 200px;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #009698;
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.lesson-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.lesson-card:hover {
    transform: translateY(-5px);
}

.lesson-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    min-height: 60px;
}

.lesson-header h3 {
    flex: 1;
    margin: 0;
    line-height: 1.3;
    min-width: 0; /* Allow text to shrink */
}

.lesson-tag {
    background: #009698;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.lesson-description {
    padding: 0 1.5rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.lesson-meta {
    padding: 0 1.5rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.lesson-resources {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.resource-link {
    background: #8EE4D7;
    color: #333333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.resource-link:hover {
    background: #009698;
    color: white;
}

/* Events Page */
.events-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-3px);
}

.event-card.featured {
    border-color: #009698;
    box-shadow: 0 8px 25px rgba(0, 150, 152, 0.15);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .month {
    display: block;
    background: #009698;
    color: white;
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-date .day {
    display: block;
    background: #8EE4D7;
    color: #333333;
    padding: 0.75rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 1.5rem;
    border: 2px solid #009698;
    border-top: none;
}

.event-details h3 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.event-type {
    color: #009698;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-description {
    color: #64748b;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.calendar-integration {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.calendar-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Join Page */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #e2e8f0;
}

/* Removed benefit icons for cleaner professional look */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #009698;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #009698;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.next-steps {
    background: #f8fafc;
}

.next-steps ul {
    max-width: 600px;
    margin: 2rem auto;
    list-style-position: inside;
}

.next-steps li {
    padding: 0.5rem 0;
    color: #64748b;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.social-link:hover {
    text-decoration: underline;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.newsletter {
    background: #009698;
    color: white;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    min-width: 300px;
    font-size: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.faq-item h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #64748b;
}

/* Footer */
.footer {
    background: #333333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        display: block;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 8px;
        padding: 1rem 0;
    }

    .dropdown-toggle::after {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .calendar-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 250px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .leader-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .leader-photo img {
        width: 100px;
        height: 100px;
    }
    
    .members-list {
        grid-template-columns: 1fr;
    }
    
    .membership-stats {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #F4EFE1;
        margin-top: 0.5rem;
    }
    
    .dropdown-toggle::after {
        display: none;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .assignment-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Enhanced Lesson Page Styles */
.discussion-topics {
    margin-bottom: 3rem;
}

.talking-points {
    background: #F4EFE1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.talking-points h4 {
    color: #009698;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.talking-points h4:first-child {
    margin-top: 0;
}

.talking-points p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.talking-points strong {
    color: #450084;
}

.talking-points ul, .talking-points ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.talking-points li {
    margin: 0.5rem 0;
    line-height: 1.5;
}

/* Open Positions Section */
.open-positions {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 16px;
}

.positions-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.position-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 150, 152, 0.15);
}

.position-card h3 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.position-description {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #8EE4D7;
    color: #009698;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.apply-section {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #009698;
}

.apply-section h3 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.apply-section p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apply-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Open Positions */
@media (max-width: 768px) {
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .position-card {
        padding: 1.5rem;
    }
    
    .apply-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .apply-buttons .btn {
        width: 200px;
    }
}/* Contact
 Page Redesign */
.contact-content {
    padding: 4rem 0;
}

.contact-hero {
    background: linear-gradient(135deg, #009698 0%, #8EE4D7 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.contact-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 150, 152, 0.15);
}

.contact-card.primary {
    border-color: #009698;
    background: linear-gradient(135deg, #009698 0%, #8EE4D7 100%);
    color: white;
}

.contact-card.primary .contact-icon {
    color: white;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(0, 150, 152, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #009698;
}

.contact-card.primary .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-card h3 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-card.primary h3 {
    color: white;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-card.primary p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    color: #009698;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.contact-card.primary .contact-link {
    color: white;
}

.contact-link:hover {
    border-bottom-color: currentColor;
}

.location-details, .schedule-details {
    text-align: left;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #009698;
}

.contact-card.primary .location-details,
.contact-card.primary .schedule-details {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: white;
}

.attendance-note {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-card.primary .attendance-note {
    color: #ffeb3b;
}

.social-links-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link-modern.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-link-modern.linkedin {
    background: #0077b5;
    color: white;
}

.social-link-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Leadership Recruitment Redesign */
.leadership-recruitment {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.recruitment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recruitment-header h2 {
    font-size: 2.5rem;
    color: #009698;
    margin-bottom: 1rem;
    font-weight: 700;
}

.recruitment-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.recruitment-hero {
    background: linear-gradient(135deg, #009698 0%, #8EE4D7 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.recruitment-hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.recruitment-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.recruitment-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.benefit-icon {
    font-size: 1.2rem;
}

.positions-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.position-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.position-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 150, 152, 0.15);
    border-color: #8EE4D7;
}

.position-card-modern.featured {
    border-color: #009698;
    background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
}

.position-card-modern.featured::before {
    content: "⭐ Featured";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #009698;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.position-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.position-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 150, 152, 0.1);
    border-radius: 12px;
    color: #009698;
    flex-shrink: 0;
}

.position-title-area {
    flex: 1;
}

.position-title-area h3 {
    color: #009698;
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.position-badge {
    background: #8EE4D7;
    color: #009698;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.position-card-modern .position-description {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.position-card-modern .position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.position-card-modern .skill-tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.position-card-modern:hover .skill-tag {
    background: #8EE4D7;
    color: #009698;
}

.recruitment-cta {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid #009698;
    box-shadow: 0 8px 25px rgba(0, 150, 152, 0.1);
}

.cta-content h3 {
    color: #009698;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .contact-hero-content h2 {
        font-size: 2rem;
    }
    
    .recruitment-header h2 {
        font-size: 2rem;
    }
    
    .recruitment-benefits {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .positions-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .position-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
    
    .social-links-modern {
        flex-direction: column;
        align-items: center;
    }
}
/* Co
mprehensive Mobile Responsiveness */

/* Mobile First - Base mobile styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Typography adjustments */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
        display: block;
        text-align: center;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Hero section mobile */
    .hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Navigation mobile improvements */
    .nav-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 40px;
    }

    /* Page headers */
    .page-header {
        padding: 6rem 0 3rem;
        text-align: center;
    }

    /* Grid layouts */
    .about-grid,
    .contact-grid,
    .leadership-grid,
    .positions-grid,
    .contact-cards-grid,
    .positions-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .leader-card,
    .contact-card,
    .position-card,
    .position-card-modern {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .leader-photo img {
        width: 80px;
        height: 80px;
    }

    /* Forms */
    .newsletter-form,
    .contact-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        min-width: auto;
    }

    /* Lesson content */
    .lesson-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .lesson-nav .btn {
        width: 100%;
        max-width: 200px;
    }

    .topic-section {
        padding: 1.5rem;
    }

    .talking-points ul,
    .talking-points ol {
        padding-left: 1.5rem;
    }

    /* Tables */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact page mobile */
    .contact-hero {
        padding: 2.5rem 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-hero-content h2 {
        font-size: 1.8rem;
    }

    .contact-hero-content p {
        font-size: 1rem;
    }

    /* Leadership recruitment mobile */
    .recruitment-header h2 {
        font-size: 1.8rem;
    }

    .recruitment-hero {
        padding: 2rem 1.5rem;
    }

    .recruitment-hero-content h3 {
        font-size: 1.5rem;
    }

    .recruitment-benefits {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .benefit-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* Position cards mobile */
    .position-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .position-icon {
        align-self: center;
    }

    /* Social links */
    .social-links-modern {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .social-link-modern {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    /* CTA sections */
    .cta-buttons,
    .apply-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons .btn,
    .apply-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    /* Footer */
    .footer {
        text-align: center;
        padding: 2rem 0;
    }

    /* Homework page */
    .assignment-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Events page */
    .event-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .event-date {
        align-self: center;
        margin-bottom: 1rem;
    }

    .calendar-buttons {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    /* Members page */
    .members-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .membership-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Lessons page */
    .lessons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* About page */
    .about-content {
        padding: 3rem 0;
    }

    /* Join page */
    .join-content {
        padding: 3rem 0;
    }

    /* Utility classes for mobile */
    .mobile-center {
        text-align: center;
    }

    .mobile-full-width {
        width: 100%;
    }

    .mobile-hidden {
        display: none;
    }
}

/* Tablet styles */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 30px;
    }

    /* Grid adjustments for tablet */
    .about-grid,
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .positions-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Typography for tablet */
    .hero h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    /* Buttons for tablet */
    .btn {
        padding: 12px 24px;
        width: auto;
        display: inline-block;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    /* Cards for tablet */
    .leader-card {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }

    .leader-photo img {
        width: 100px;
        height: 100px;
    }
}

/* Large mobile/small tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    /* Adjust grid columns for larger tablets */
    .positions-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn,
    .nav-link,
    .social-link-modern {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove hover effects on touch devices */
    .leader-card:hover,
    .contact-card:hover,
    .position-card:hover,
    .position-card-modern:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    /* Improve dropdown behavior on touch */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }

    .page-header {
        padding: 4rem 0 2rem;
    }

    .nav-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .btn,
    .footer {
        display: none;
    }

    .page-header {
        padding: 2rem 0 1rem;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* Touch device specific styles */
.touch-device .btn:active,
.touch-device .nav-link:active,
.touch-device .social-link-modern:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.touch-device .leader-card:active,
.touch-device .contact-card:active,
.touch-device .position-card-modern:active {
    transform: scale(0.99);
    transition: transform 0.1s ease;
}

/* Ensure proper spacing on very small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .contact-hero,
    .recruitment-hero {
        padding: 2rem 1rem;
    }
    
    .leader-card,
    .contact-card,
    .position-card-modern {
        padding: 1rem;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Ensure focus states are visible */
    .btn:focus,
    .nav-link:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid #009698;
        outline-offset: 2px;
    }
    
    /* Improve readability */
    body {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better spacing for touch */
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}/* Password
 Protection Styles */
.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #009698 0%, #8EE4D7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.password-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    padding: 0;
    overflow: hidden;
}

.password-content {
    padding: 3rem 2rem;
    text-align: center;
}

.password-header {
    margin-bottom: 2rem;
}

.password-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.password-header h2 {
    color: #009698;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.password-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.password-form {
    margin-bottom: 2rem;
}

.password-field {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.password-field:focus {
    outline: none;
    border-color: #009698;
    box-shadow: 0 0 0 3px rgba(0, 150, 152, 0.1);
}

.password-btn {
    width: 100%;
    background: linear-gradient(135deg, #009698 0%, #8EE4D7 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 150, 152, 0.3);
}

.password-btn:active {
    transform: translateY(0);
}

.password-error {
    background: #fee2e2;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    border: 1px solid #fecaca;
}

.password-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.password-footer p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.password-footer a {
    color: #009698;
    text-decoration: none;
    font-weight: 600;
}

.password-footer a:hover {
    text-decoration: underline;
}

/* Animation for slide in */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsiveness for password overlay */
@media (max-width: 768px) {
    .password-container {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .password-content {
        padding: 2rem 1.5rem;
    }
    
    .password-header h2 {
        font-size: 1.5rem;
    }
    
    .password-logo {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .password-content {
        padding: 1.5rem 1rem;
    }
    
    .password-header h2 {
        font-size: 1.3rem;
    }
    
    .password-field,
    .password-btn {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}/*
 Assignment Guide Styles */
.assignment-guide {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.guide-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #009698;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h4 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.guide-example {
    margin-top: 1rem;
}

.guide-example p {
    margin-bottom: 0.75rem;
}

.guide-example ul {
    margin: 0.5rem 0 1rem 1.5rem;
}

.guide-example li {
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.example-text {
    background: #e8f4f8;
    border: 1px solid #8EE4D7;
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
}

.example-text p {
    margin-bottom: 0.5rem;
    color: #2d3748;
    line-height: 1.6;
}

.example-text em {
    font-style: normal;
    color: #1a202c;
}

/* Mobile responsiveness for assignment guide */
@media (max-width: 768px) {
    .assignment-guide {
        padding: 1rem;
    }
    
    .guide-section {
        padding: 1rem;
    }
    
    .guide-section h4 {
        font-size: 1.1rem;
    }
    
    .example-text {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
/* L
eadership Application Page */
.application-content {
    padding: 4rem 0;
}

.application-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.application-intro h2 {
    color: #009698;
    margin-bottom: 1rem;
}

.application-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #8EE4D7;
    font-weight: 500;
    color: #009698;
}

.benefit-highlight .benefit-icon {
    font-size: 1.2rem;
}

.application-form-section {
    margin: 4rem 0;
}

.application-form-section h2 {
    text-align: center;
    color: #009698;
    margin-bottom: 2rem;
}

.google-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.google-form-container iframe {
    width: 100%;
    min-height: 2348px;
    border: none;
}

.application-info {
    margin-top: 4rem;
}

.application-info h2 {
    text-align: center;
    color: #009698;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    text-align: center;
}

.info-item h4 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Application Page */
@media (max-width: 768px) {
    .application-benefits {
        gap: 1rem;
    }
    
    .benefit-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .google-form-container {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
}/*
 Attendance Page */
.attendance-content {
    padding: 4rem 0;
}

.attendance-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.attendance-intro h2 {
    color: #009698;
    margin-bottom: 1rem;
}

.attendance-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.attendance-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 2px solid #8EE4D7;
    font-weight: 500;
    color: #009698;
}

.attendance-benefits .benefit-icon {
    font-size: 1.2rem;
}

.attendance-sheet-section {
    margin: 4rem 0;
}

.attendance-sheet-section h2 {
    text-align: center;
    color: #009698;
    margin-bottom: 2rem;
}

.google-sheet-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    overflow: hidden;
    margin: 0 auto;
}

.google-sheet-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

.attendance-info {
    margin-top: 4rem;
}

.attendance-info h2 {
    text-align: center;
    color: #009698;
    margin-bottom: 2rem;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guidelines-grid .guideline-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    text-align: center;
}

.guidelines-grid .guideline-item h4 {
    color: #009698;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.guidelines-grid .guideline-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design for Attendance Page */
@media (max-width: 768px) {
    .attendance-benefits {
        gap: 1rem;
    }
    
    .attendance-benefits .benefit-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .google-sheet-container {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guidelines-grid .guideline-item {
        padding: 1.5rem;
    }
}/* Clean 
Attendance Page Styles */
.attendance-content {
    padding: 4rem 0;
}

.attendance-sheet-section {
    margin: 2rem 0;
}

.attendance-sheet-section h2 {
    text-align: center;
    color: #009698;
    margin-bottom: 2rem;
}

.google-sheet-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #8EE4D7;
    overflow: hidden;
    margin: 0 auto;
}

.google-sheet-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

/* Responsive Design for Clean Attendance Page */
@media (max-width: 768px) {
    .google-sheet-container {
        margin: 0 -1rem;
        border-radius: 0;
    }
}