/*
Theme Name: Zuzana Ceralová Petrofová for Senát
Author: Petr
Author URI: https://www.linkedin.com/in/petr-vasicek/
Description: Custom campaign theme
Version: 1.0
Text Domain: zuzana-senat
*/


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(25, 71, 77, 0.75);
    backdrop-filter: blur(8px);
}

.main-nav {
    height: 76px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links a:hover {
    color: #d6b56d;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 30px;
}
.hero-banner {
    margin-top: -76px;
    padding-top: 76px;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-banner {
        margin-top: -68px;
        padding-top: 68px;
    }
}

.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 32px;
}

.content-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .main-nav {
        height: 68px;
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero {
        margin-top: -68px;
        padding-top: 68px;
    }

    .hero-content {
        padding: 0 24px;
    }
}


.supporters-section {
    background: #f5f1e8;
    padding: 120px 32px;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(42px, 5vw, 64px);
    margin-bottom: 24px;
    color: #222;
}

.section-header p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.supporters-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.supporter-card {
    background: #fff;
    padding: 48px 36px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.supporter-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);
}

.supporter-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;

    border-radius: 50%;

    margin-bottom: 28px;
}

.supporter-card-top img {
    object-position: center top;
}

.supporter-card h3 {
    font-size: 28px;
    margin: 0 0 10px;
    color: #222;
}

.supporter-role {
    display: block;

    margin-bottom: 24px;

    color: #9c7a38;

    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.supporter-quote {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.supporters-button-wrap {
    text-align: center;
    margin-top: 70px;
}

.supporters-button {
    display: inline-block;

    padding: 16px 34px;

    border: 1px solid #222;

    color: #222;
    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    font-size: 14px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.supporters-button:hover {
    background: #222;
    color: #fff;
}

@media (max-width: 900px) {

    .supporters-grid {
        grid-template-columns: 1fr;
    }

    .supporters-section {
        padding: 90px 24px;
    }

    .supporter-card {
        padding: 40px 28px;
    }

    .supporter-card h3 {
        font-size: 24px;
    }

    .supporter-quote {
        font-size: 17px;
    }
}


.supporters-page {
    background: #f8f5ee;
}

.supporters-page-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 130px 32px 80px;
    text-align: center;
}

.supporters-page-hero h1 {
    font-size: clamp(48px, 7vw, 86px);
    margin: 0 0 28px;
}

.supporters-page-hero p {
    font-size: 22px;
    line-height: 1.7;
    color: #555;
    margin: 0 auto;
    max-width: 780px;
}

.supporters-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px 120px;
}

.supporter-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: center;

    background: #fff;
    border-radius: 22px;
    padding: 34px;
    margin-bottom: 34px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.supporter-row-image img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.supporter-row-content h2 {
    font-size: 34px;
    margin: 0 0 10px;
}

.supporter-row-content span {
    display: block;
    color: #9c7a38;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.supporter-row-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 800px) {
    .supporters-page-hero {
        padding: 100px 24px 60px;
    }

    .supporters-list {
        padding: 0 24px 90px;
    }

    .supporter-row {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 26px;
    }

    .supporter-row-image img {
        width: 100%;
        height: auto;
        max-height: 420px;
    }

    .supporter-row-content h2 {
        font-size: 28px;
    }

    .supporter-row-content p {
        font-size: 18px;
    }
}


.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-links a {
    color: #fff;
    width: 22px;
    height: 22px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.social-links a:hover {
    color: #d6b56d;
    transform: translateY(-2px);
}

.social-links svg {
    width: 100%;
    height: 100%;
    display: block;
}

.about-section {
    background: #fff;
    padding: 120px 32px;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;

    vertical-align: top;
}

.about-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.section-label {
    display: inline-block;
    color: #9c7a38;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
}

.about-content {
    vertical-align: top;
}


.about-content h2 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.08;
    margin: 0 0 32px;
    color: #222;
}

.about-lead {
    font-size: 22px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    max-width: 720px;
}

.about-divider {
    width: 90px;
    height: 1px;
    background: #9c7a38;
    margin: 42px 0;
}

.about-points {
    list-style: none;
    padding: 0;
    margin: 0 0 46px;
}

.about-points li {
    font-size: 20px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.about-points li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #9c7a38;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 13px;
}

.about-button {
    display: inline-block;
    padding: 16px 34px;
    border: 1px solid #222;
    color: #222;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
}

.about-button:hover {
    background: #222;
    color: #fff;
}

@media (max-width: 900px) {
    .about-section {
        padding: 90px 24px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image img {
        height: auto;
        max-height: 520px;
    }

    .about-lead {
        font-size: 20px;
    }

    .about-points li {
        font-size: 18px;
    }
}


.wpcf7 {
    max-width: 720px;
    margin: 0 auto;
}

.wpcf7 label {
    display: block;
    margin-bottom: 26px;

    font-size: 16px;
    color: #222;
    font-weight: 500;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    margin-top: 10px;
    padding: 16px 18px;

    border: 1px solid #d6d0c4;
    border-radius: 0;

    background: #fff;

    font-size: 17px;
    line-height: 1.5;
    color: #222;

    box-sizing: border-box;
}

.wpcf7 textarea {
    min-height: 180px;
    resize: vertical;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #9c7a38;
    box-shadow: 0 0 0 2px rgba(156, 122, 56, 0.15);
}

.wpcf7 input[type="submit"] {
    display: inline-block;

    padding: 16px 40px;

    border: 1px solid #222;
    background: #222;
    color: #fff;

    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #fff;
    color: #222;
}

.wpcf7 .wpcf7-not-valid-tip {
    margin-top: 8px;
    color: #b00020;
    font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 32px 0 0;
    padding: 16px 20px;
    border: 1px solid #9c7a38;
    color: #222;
}


.site-footer {
    background: #111;
    color: rgba(255,255,255,0.7);

    padding: 34px 24px;

    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.supporter-row-top img {
    object-position: center top;
}





@media (max-width: 768px) {

    .main-nav {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;

        background: rgba(20, 20, 20, 0.95);
        padding: 24px;

        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links.is-open {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }
}


.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 32px;
}

.page-header {
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: clamp(42px, 6vw, 72px);
    margin: 0;
}

.page-body {
    font-size: 18px;
    line-height: 1.8;
}

.events-page {
    background: #fff;
}

.events-hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 130px 32px 70px;
    text-align: center;
}

.events-hero h1 {
    font-size: clamp(48px, 7vw, 86px);
    margin: 0 0 24px;
}

.events-hero p {
    font-size: 22px;
    color: #555;
}

.events-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px 120px;
}

.event-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;

    padding: 36px 0;
    border-bottom: 1px solid #ddd;
}

.event-date {
    color: #9c7a38;
    font-size: 18px;
    font-weight: 600;
}

.event-content h2 {
    margin: 0 0 16px;
    font-size: 32px;
}

.event-content h2 a {
    color: #222;
    text-decoration: none;
}

.event-content h2 a:hover {
    color: #9c7a38;
}

.event-excerpt {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .event-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .event-content h2 {
        font-size: 26px;
    }
}