/* Layout styles */

/* Header and navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    color: white;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.main-header {
    padding: 2rem 0;
}

.main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    max-width: 20rem;
}

.main-navigation {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.main-nav-list {
    display: flex;
    gap: 2.5rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 2.4rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero section */
.hero-section {
    margin-top: 12rem;
    position: relative;
    background-color: var(--dark-bg);
    color: white;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(25, 40, 71, 0.8), rgba(25, 40, 71, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    max-width: 80rem;
}

.hero-text {
    max-width: 70rem;
    margin: 0 auto;
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* Grid layouts */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    padding: 0 1.5rem;
    flex: 1;
    min-width: 0;
}

.col-12 {
    width: 100%;
}

.col-6 {
    width: 50%;
}

.col-4 {
    width: 33.33%;
}

.col-3 {
    width: 25%;
}

.col-8 {
    width: 66.66%;
}

/* Cards and features */
.card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 20rem;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #adb5bd;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.feature-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

/* Call to action sections */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 70rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* Team section */
.team-section {
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 30rem;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #adb5bd;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-light);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Issues grid */
.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 3rem;
}

.issue-card {
    display: flex;
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.issue-icon {
    flex: 0 0 8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.issue-content {
    flex: 1;
    padding: 2rem;
}

.issue-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* News section */
.news-card {
    margin-bottom: 3rem;
}

.news-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Events section */
.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.event-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.event-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.event-day {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1.6rem;
    text-transform: uppercase;
}

.event-details {
    padding: 2rem;
}

.event-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.event-time, .event-location {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

/* Contact section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-info-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-info-box {
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    flex: 0 0 4rem;
    height: 4rem;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
}

.contact-detail {
    flex: 1;
}

.contact-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 6rem 0 0;
}

.footer-logo {
    max-width: 18rem;
    margin-bottom: 2rem;
}

.footer-text {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 0.3rem;
    background-color: var(--secondary-color);
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}
