@font-face {
    font-family: "Candal";
    src: url("fonts/Candal-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Oswald";
    src: url("fonts/Oswald-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "VT323";
    src: url("fonts/VT323-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Roboto Flex";
    src: url("fonts/RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf")
        format("truetype");
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    //background-color: rgba(0, 0, 0, 0.58);
    background-color: "blue";
    color: #ffffff;
    font-family: sans-serif;
}
a {
    color: #75e8a6;
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffffff;
}
.page-wrapper {
    background-color: #0000ff;
    //background-color: #111111;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.main-title h1 {
    font-family: "Candal", sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.main-title h2 {
    font-family: "Oswald", sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
}

.header-image img {
    max-width: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100%;
    border: 3px solid #75e8a6;
}

.green-divider {
    border: none;
    height: 3px;
    background-color: #75e8a6;
    width: 100%;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.nav-button {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 25px;
    border: 2px solid #75e8a6;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    max-width: 250px;
}

.nav-button:hover {
    background-color: #75e8a6;
    color: #111111;
}

.hero-banner {
    width: 100%;
    box-sizing: border-box;
    aspect-ratio: 1100 / 270;
    background-image: linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.03)), url("prt.png");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 15px;
    container-type: inline-size;
}

.hero-text {
    font-family: "VT323", monospace;
    font-size: 3.5cqi;
    font-weight: 400;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
    line-height: 1;
    width: 100%;
}

.text-white {
    color: #ffffff;
    text-align: left;
}

.text-green {
    color: #75e8a6;
}

.election-info {
    text-align: center;
    padding: 30px 20px;
}

.election-info h3 {
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.white-divider {
    border: none;
    height: 2px;
    background-color: rgb(255, 255, 255);
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.priorities-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.priorities-box {
    background-color: #ffffff;
    color: #000000;
    border-radius: 60px;
    padding: 50px 60px 60px 60px;
    text-align: left;
}

.priorities-box-inner {
    background-color: #75e8a65c;
    color: #000000;
    border-radius: 60px;
    padding: 30px 30px 30px 30px;
    text-align: left;
}

.priorities-box h2 {
    font-family: "Roboto Flex", sans-serif;
    font-size: 65px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1;
}

.priorities-list {
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    line-height: 1;
    margin-left: 70px;
}

.priorities-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.learn-more-btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #75e8a6;
    color: #000000;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 20px;
    padding: 15px 40px;
    border: 2px solid #000000;
    border-radius: 40px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.learn-more-btn:hover {
    background-color: #5bd48e;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #222222;
    border: 3px solid #75e8a6;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75e8a6;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1.5;
    font-size: 20px;
    line-height: 1.6;
}

.about-text h2,
.plan-container h2 {
    font-family: "Roboto Flex", sans-serif;
    margin-bottom: 20px;
    color: #75e8a6;
}
.plan-container h3 {
    font-family: "Roboto Flex", sans-serif;
    margin-bottom: 14px;
    color: #ffffff;
}
.plan-container {
    padding: 40px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
}

.videos-container {
    padding: 40px;
    width: 100%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.video-item {
    display: flex;
    flex-direction: column;
    background-color: #222222;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #75e8a6;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #75e8a6;
    font-family: "Oswald";
    font-size: 24px;
}

.video-caption {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 1050px) {
    .header-container {
        flex-direction: column;
        justify-content: center;
        padding: 20px;
    }
    .nav-menu {
        align-items: center;
        margin-top: 15px;
        width: 100%;
    }
}

@media (max-width: 850px) {
    .about-container {
        flex-direction: column;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title h1 {
        font-size: 50px;
    }
    .main-title h2 {
        font-size: 22px;
    }
    .priorities-box {
        padding: 40px 30px 60px 30px;
        border-radius: 40px;
    }
    .priorities-box h2 {
        font-size: 45px;
    }
    .priorities-list {
        font-size: 18px;
        margin-left: 0;
    }
    .priorities-list li {
        margin-bottom: 12px;
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    .about-text,
    .plan-container {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 30px 15px 15px 15px;
    }
    .header-left {
        flex-direction: column;
        text-align: center;
    }
    .main-title {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .main-title h1 {
        font-size: 40px;
    }
    .main-title h2 {
        font-size: 18px;
    }
    .nav-button {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        text-align: center;
        max-width: none;
    }
    .election-info h3 {
        font-size: 20px;
    }
    .priorities-box h2 {
        font-size: 35px;
    }
    .priorities-list {
        font-size: 20px;
    }
    .learn-more-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
