/*
Theme Name: Engineers of Change
Theme URI: https://engineersofchange.com
Author: Engineers of Change
Author URI: https://engineersofchange.com
Description: A custom theme for Engineers of Change website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: engineersofchange
*/

@font-face {
    font-family: 'BasisGrotesqueProRegular';
    src: url('fonts/BasisGrotesqueProRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: BasisGrotesqueProRegular, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    width: 100%;
    padding: 0 1.25rem;
}

/* Content */
.site-content {
    flex: 1;
    width: 100%;
}

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

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Main Content Area */
.site-main {
    width: 100%;
}

/* Full Width Sections */
.hero-section,
.featured-content {
    width: 100%;
    padding: 5rem 1.25rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 48rem) {
    .container {
        padding: 0 0.9375rem;
    }
    
    .hero-section,
    .featured-content {
        padding: 3.75rem 0.9375rem;
    }
}

.footer-content {
    margin: 0.625rem 0;
}

/* Latest page styles have been moved to latest.css */

.page-header {
    text-align: center;
    padding: 2rem 0;
}

.page-title {
    font-size: 1.5rem;
    margin: 0;
}

/* Contact Page Styles */
.eoc-contact-page {
    min-height: calc(100vh - 80px - 100px); /* Subtract header (80px) and footer (100px) heights */
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 0; /* Remove the margin that was causing the gap */
}

.eoc-contact-main {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.eoc-contact-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.eoc-contact-content {
    text-align: center;
}

.eoc-contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-direction: column;
}

.eoc-contact-link {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Responsive Adjustments */
@media screen and (max-width: 48rem) {
    .eoc-contact-container {
        padding: 0 0.9375rem;
    }
}

/* Mobile Navigation Styles */
.mobile-nav-dropdown {
    display: none;
}

.mobile-nav-select {
    position: relative;
    width: 100%;
    padding: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-select::after {
    content: '';
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.mobile-nav-select.active::after {
    transform: rotate(180deg);
}

.dropdown-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav-select.active .dropdown-options {
    display: block;
}

.dropdown-options a {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Responsive Header Styles */
@media screen and (max-width: 1550px) {
    .site-header .container {
        flex-wrap: wrap;
    }

    .header-center {
        order: 3;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .page-title {
        margin: 0;
        text-align: center;
        min-width: 0;
        overflow: visible;
        white-space: normal;
    }

    .artist-nav,
    .artist-nav-divider {
        display: none !important;
    }

    .mobile-nav-dropdown {
        display: block;
        width: 200px;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 1000px) {
    .site-header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-left,
    .header-right {
        width: 100%;
    }

    .header-center {
        margin-top: 0;
        flex-direction: column;
        gap: 0;
        padding-left: 3rem;
    }

    .artist-mt{
        margin-top: 2.5rem;
    }

    .page-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .mobile-nav-dropdown {
        width: 100%;
    }
}

.entry-header .artist-name {
    font-size: 1.1em;
    color: #666;
    margin: 0.5em 0;
    font-weight: normal;
} 

h3{
    font-weight: normal;
    font-size: 0.8rem;
}

h2{
    font-weight: normal;
    font-size: 0.9rem;
}
h1{
    font-weight: normal;
    font-size: 1rem;
}
