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

body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.5;
    background-color: #f7f8f9;
    color: #222222;
}

a {
    color: #1e73be;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    color: #000000;
}

/* Container */
.grid-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #013c98;
    padding: 20px 0;
    width: 100vw;
}

.inside-header {
    width: 100%;
    padding-left: calc((100vw - 1600px) / 2 + 20px);
    padding-right: calc((100vw - 1600px) / 2 + 20px);
    display: flex;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    padding: 30px;
}

.header-image {
    width: 100px;
    height: auto;
}

/* Main Content */
.site {
    width: 100vw;
    margin: 0;
    background-color: #ffffff;
}

.site-content {
    background-color: #ffffff;
}

.content-area {
    width: 100%;
}

.inside-article {
    padding: 0;
}

.entry-content {
    margin: 0;
}

/* Full Width Elements */
.alignfull {
    width: 100%;
    margin: 0;
    position: relative;
}

/* Hero Banner */
.wp-block-cover {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.wp-block-cover__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #013c98;
    opacity: 0.5;
    z-index: 1;
}

.wp-block-cover__image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
}

/* Section Headings */
.section-heading {
    background-color: #013c98;
    color: white;
    padding: 60px 0;
    margin: 0;
    font-size: 24px;
    line-height: 0;
    margin-bottom: 0;
    text-align: center;
}

.section-heading.white-background {
    background-color: #ffffff;
    color: #222222;
}

.section-heading span {
    color: white;
}

.white-background span {
    color: #222222;
}

/* Center About WVHF title */
.section-heading.about-title {
    text-align: center;
}

.section-heading.about-title span {
    padding-left: 0;
}

/* Center Support Us title */
.section-heading.support-title {
    text-align: center;
}

.section-heading.support-title span {
    padding-left: 0;
}

.wp-block-column {
    min-width: 0;
    padding: 0 20px;
}

.wp-block-column:first-child {
    padding-left: 40px;
}

.wp-block-column:last-child {
    padding-right: 40px;
}

.full-width {
    flex-basis: 100%;
}

/* Blue Background Sections */
.blue-background {
    background-color: #013c98;
    color: white;
    margin: 0;
}

.blue-background .wp-block-column {
    padding-left: calc((100vw - 1600px) / 2 + 40px);
    padding-right: calc((100vw - 1600px) / 2 + 40px);
}

.blue-background .wp-block-column:first-child {
    padding-left: calc((100vw - 1600px) / 2 + 40px);
}

.wp-block-columns {
    padding-bottom: 60px;
}

.blue-background a {
    color: white;
    text-decoration: underline;
}

.blue-background a:hover {
    color: #cccccc;
}

/* About Section - Single Column Centered */

.about-section .single-column {
    flex-basis: 100%;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
}

.about-section .single-column p {
    margin-bottom: 1.5em;
    line-height: 1.6;
}

/* Support Section */
.support-cover {
    background: none;
    min-height: 500px;
}

.support-cover .wp-block-cover__background {
    opacity: 0;
}

.support-cover .wp-block-cover__image-background {
    object-position: 51% 8%;
}

.support-columns {
    align-items: flex-start;
}

.frys-logo {
    margin-bottom: 30px;
}

.frys-logo img {
    max-width: 300px;
    height: auto;
}

.support-method-title {
    font-weight: bold;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    display: inline-block;
    margin: 20px 0 10px 0;
}

.support-cover ul {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px 15px 40px;
    margin: 10px 0 20px 0;
    border-radius: 5px;
    text-align: left;
}

.support-cover li {
    color: #222222;
    margin-bottom: 8px;
}

/* Support Us Section */
.support-us-section {
    text-align: center;
}

.support-us-section p {
    max-width: 1500px;
    margin: 0 auto 2em auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Contact and Membership Two-Column Section */
.contact-membership-section {
    display: flex;
    margin: 0;
}

.contact-column {
    flex: 1;
    background-color: #013c98;
    color: white;
    padding: 60px 0;
}

.membership-column {
    flex: 1;
    background-color: #ffffff;
    color: #222222;
    padding: 60px 0;
}

.contact-column .section-heading,
.membership-column .section-heading {
    background: none;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
}

.contact-content a {
    color: white;
    text-decoration: underline;
}

.contact-content a:hover {
    color: #cccccc;
}

/* Content Paragraphs */
p {
    margin-bottom: 0em;
    line-height: 1.5;
}

/* Regular content sections (not blue background) */
.entry-content > p {
    padding-left: calc((100vw - 1600px) / 2 + 40px);
    padding-right: calc((100vw - 1600px) / 2 + 40px);
    margin-bottom: 1em;
}

/* Lists */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Footer */
.site-footer {
    background-color: #55555e;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    width: 100vw;
}

.inside-site-info {
    width: 100%;
    padding-left: calc((100vw - 1600px) / 2 + 20px);
    padding-right: calc((100vw - 1600px) / 2 + 20px);
}

.copyright-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .inside-article {
        padding: 30px;
    }
    
    .section-heading {
        padding: 20px 30px;
    }
    
    .wp-block-column {
        flex-basis: 100%;
        padding: 0 30px;
    }
    
    .wp-block-column:first-child,
    .wp-block-column:last-child {
        padding: 0 30px;
    }
    
    .blue-background {
        padding: 30px 0;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .wp-block-columns {
        flex-direction: column;
    }
    
    .frys-logo img {
        max-width: 250px;
    }
    
    .support-cover {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .inside-article {
        padding: 20px;
    }
    
    .section-heading {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .wp-block-column {
        padding: 0 20px;
    }
    
    .wp-block-column:first-child,
    .wp-block-column:last-child {
        padding: 0 20px;
    }
    
    .blue-background {
        padding: 20px 0;
    }
    
    .hero-title,
    .hero-subtitle {
        font-size: 18px;
    }
    
    .frys-logo img {
        max-width: 200px;
    }
}

.contact-content, .membership-content {
  text-align: center;
}

.contact-membership-section, .support-us-section .wp-block-columns {
  padding-bottom: 0;
}