/* Global */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: white;
}

/* Banner (1000px centered) */
.banner-wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Page wrapper */
.page1 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Content (1000px centered) */
.page1 .content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 340px;
    text-align: left;
    font-family: "Times New Roman", serif;
    font-weight: bold;
    font-size: 18px;
    background: #00172c;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Headline */
.headline {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 36px;
    margin-bottom: 20px;
    color: #e1a937;
    padding: 0 12px;
    white-space: nowrap;
}

/* Bullet list */
.content ul {
    list-style: none;
    padding: 0 30px;
    margin: 0;
}

.content ul li {
    position: relative;
    padding-left: 62px;
    margin-bottom: 18px;
    line-height: 1.5;
    font-size: 20px;
    white-space: nowrap;
}

.content ul li::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #e1a937;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* Tagline */
.tagline-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 30px;
    margin-top: 40px;
    white-space: nowrap;
}

.tagline-text {
	font-size: 24px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2em;
    white-space: nowrap;
	padding-right: 8px;
}

.tagline-icon {
    position: relative;
    width: 1.4em;
    height: 1.4em;
}

.county-svg {
    width: 100%;
    display: block;
}

.icon-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    font-size: 1.9em;
    font-weight: 900;
    color: white;
    pointer-events: none;
}

/* Mobile logo base (hidden by default) */
.mobile-logo {
    display: none;
}

/* Footer (absolute positioning everywhere) */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0,0,0,0.85);
}

.footer-inner {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
}

/* Email + Facebook */
.footer-left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-left a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}

/* Next/Back button */
.footer-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn {
    background: white;
    color: black;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    border: none;
}

/* Mobile */
@media (max-width: 600px) {

    /*.page1 .content {
        padding: 8px 0 25px;
    }*/

    .headline {
        font-size: 19px;
        padding: 20px 0px 20px 1;
        white-space: nowrap;
        line-height: 1.1;
    }

    .content ul {
        padding: 0 6px;
    }

    .content ul li {
        font-size: 12px;
        padding-left: 22px;
        margin-bottom: 10px;
        white-space: nowrap;
        line-height: 1.7;
    }

    .content ul li::before {
        left: 6px;
        width: 6px;
        height: 6px;
        top: 5px;
    }

    .tagline-line {
        gap: 2px;
        padding: 4px 4px;
        margin-top: 20px;
        white-space: nowrap;
    }

    .tagline-text {
		color: white;
        font-size: 1.1em;
        white-space: nowrap;
        line-height: 1;
    }

    /* Mobile-only logo visible + same background as content */
    .mobile-logo {
        display: block;
        width: 100%;
        text-align: center;;
        background: #00172c;
        padding: 10px 0 80px 0;
    }


    /* Mobile footer adjustments */
    .footer-left {
        left: 10px;
    }

    .footer-right {
        right: 10px;
    }

    .footer-left a {
        font-size: 14px;
    }

    .nav-btn {
        padding: 6px 14px;
        font-size: 14px;
    }
}

/* Desktop scaling */
@media (min-width: 900px) {

    .page1 .content {
        font-size: 26px;
    }

    .headline {
        font-size: 48px;
        padding: 0 40px;
    }

    .content ul li {
        font-size: 28px;
    }

    .content ul li::before {
        width: 14px;
        height: 14px;
    }

    .tagline-text {
        font-size: 1.4em;

    }

    .tagline-icon {
        width: 2.1em;
        height: 2.1em;
    }

}


/* PAGE 2 — WHITE BACKGROUND + 1000px CONTENT AREA */
.page2 {
    background: white;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 120px; /* space above fixed footer */
    color: black;
}

/* 1000px centered content wrapper (same width as Page 1) */
.page2 .content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Two-column layout */
.two-col {
    display: flex;
    gap: 20px;
}

/* Left and right columns */
.col-left,
.col-right {
    flex: 1;
    font-size: 20px;
    line-height: 1.6;
}

/* Candidate photo */
.candidate-photo {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 30px;
}

/* Donate button */
.donate-btn {
    display: inline-block;
    /*margin-top: 20px;
    padding: 14px 22px;
    background: #e1a937;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;*/
}

.bio-pic {
    width: 500px;	
}

/* MOBILE — stack columns */
@media (max-width: 600px) {
    .two-col {
        flex-direction: column;
    }

    .page2 .content {
        padding: 20px 10px;
    }

    .donate-btn {
        font-size: 18px;
        padding: 12px 18px;
    }
	
	.col-right p:first-of-type {
		margin-top: 0;
	}
	
	.col-left p:last-of-type {
		margin-bottom: 0;
	}
}

@media (max-width: 600px) {
    .nav-btn {
        background: white !important;
        color: black !important;
        padding: 6px 14px;
        font-size: 14px;
        border-radius: 6px;
    }
	
	
	
	.bio-pic {
      margin-left: -20px;
      margin-right: -20px;
      width: calc(100% + 30px); /* Re-adjust width to cover the extra space */
      max-width: none; /* Ensure max-width doesn't clip the expansion */
	  top: 0;
    }
	

}
