@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap);
/* Import Google Fonts */

/* CSS Reset */
html {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* CSS Variables */
:root {
    --primary: #d7b81b;
    --primary-hover: #dde5eb;
    --header-height: 3rem;
    --header-bg: #1a6d1c;
    --text-white: #ffffff;
    --overlay-mobile-menu: #22476b;
    --hover-menu: rgba(99, 159, 119, 0.411);
    --overlay-hero: rgba(14, 74, 92, 0.611);
    --footer-bg-color: #0c3e0c;
    --footer-font-color: #d7b81b;
}

/* Header */
.header {
    background-color: var(--header-bg);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.header.scrolled {
    transition: all 0.9s ease;
    background-color: var(--header-bg);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 3rem 1.5rem;
    transition: box-shadow 0.3s ease;
}

.navbar li a {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-out;
    padding: 0.5rem 0.8rem;
}

.navbar li a:hover {
    text-decoration: none;
    color: var(--primary-hover);
    background-color: var(--hover-menu);
    transition: all 0.6s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 4.2rem;
}

.nav-menu {
    display: none;
    justify-content: space-between;
    align-items: center;
}

.nav-menu svg {
    margin-right: 0.3rem;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.nav-menu.active li {
    width: 100%;
    text-align: left;
}

.nav-menu.active a {
    display: flex;
    align-items: center;
    padding: 0.8rem;
}

.nav-menu.active .submenu a {
    padding: 0.8rem 1rem 0.8rem 1.5rem;
    background-color: var(--header-bg);
}

.nav-menu.active a:hover {
    background-color: var(--hover-menu);
    color: var(--primary-hover);
}

.nav-menu a:hover {
    color: var(--text-white);
}

/* Hamburger menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    margin-right: 0.2rem;
    transition: transform 0.9s ease;
}

.hamburger:hover span {
    background-color: var(--primary-hover);
}

.hamburger span {
    width: 32px;
    height: 3px;
    background-color: var(--primary);
    margin: 2px 0;
    transition: 0.5s;
    border-radius: 3px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
}

.hamburger.active span:nth-child(4) {
    opacity: 0;
    transform: translateX(10px);
}

/* HERO */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-hero);
    z-index: 1;
    pointer-events: none;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
}

/* FOOTER */
.footer {
    background: var(--footer-bg-color);
    padding: 1.5rem 2.5rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-bottom-wrap {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-wrap div {
    color: var(--footer-font-color);
    font-size: 0.9rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ========================================
   HERO GRID SECTION
   ======================================== */

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 1.5rem 5rem 1.5rem;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    max-width: 100%;
}

.hero-text {
    color: var(--text-white);
    text-align: center;
}

.hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.hero-btn-primary {
    background-color: var(--primary);
    color: var(--header-bg);
}

.hero-btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(215, 184, 27, 0.4);
}

.hero-btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.hero-btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--header-bg);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    min-width: 0;
    height: auto;
}

@media (min-width: 768px) {
    .hero-video {
        height: 100vh;
    }

    .hero-content {
        height: 100%;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        max-width: 1200px;
        width: 100%;
        align-items: center;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-image img {
        min-width: 500px;
        width: 100%;
        max-width: none;
    }
}

/* Media */
@media (min-width: 1000px) {
    .header {
        background-color: transparent;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .navbar a:hover {
        border-radius: 6px;
    }

    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   CARDS SECTION
   ======================================== */

.cards-section {
    padding: 4rem 2rem;
    background: #143b0c;
    background: linear-gradient(360deg, var(--footer-bg-color) 0%, rgb(206, 199, 137) 100%);
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--header-bg);
    margin-bottom: 1rem;
}

.card p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

@media (min-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   CANDIDATES SECTION
   ======================================== */

.candidates-section {
    padding: 8rem 1.5rem 4rem;
    max-width: 100%;
    margin: 0 auto;
    background: #143b0c;
    background: linear-gradient(231deg, rgba(20, 59, 12, 1) 0%, rgba(87, 199, 133, 1) 54%, rgba(237, 221, 83, 1) 100%);
}

.president {
    text-align: center;
    margin-bottom: 3rem;
}

.president .hexagon-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.2rem;
}

.president h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.president .role {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.president .candidate-number {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    bottom: 8px;
    left: 35px;
}

.candidates-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.member {
    text-align: center;
}

.hexagon-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 0.8rem;
    position: relative;
}

.hexagon-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.candidate-number {
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--header-bg);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(21, 90, 7, 0.733);
    z-index: 10;
}

.member h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.member .position {
    font-size: 0.85rem;
    color: #666;
}

.candidate-info {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-self: start;
    position: sticky;
    top: 8rem;
}

.info-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--header-bg);
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #333;
    font-size: 0.95rem;
}

.info-card p strong {
    color: var(--header-bg);
}

@media (min-width: 768px) {
    .president .hexagon-wrapper {
        width: 250px;
        height: 250px;
    }

    .president h2 {
        font-size: 2rem;
    }

    .president .candidate-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        left: 40px;
        bottom: 10px;
    }

    .hexagon-wrapper {
        width: 150px;
        height: 150px;
    }

    .candidate-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        left: 22px;
    }

    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .member h3 {
        font-size: 1.2rem;
    }

    .candidates-wrapper {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .candidate-info {
        padding: 2rem;
    }

    .info-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .info-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1200px) {
    .hexagon-wrapper {
        width: 200px;
        height: 200px;
    }

    .candidate-number {
        left: 30px;
        bottom: 10px;
    }

    .members-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-section {
    position: relative;
    padding: 3rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0c3e0c 0%, #1a6d1c 50%, #0c3e0c 100%);
}

/* Animated Blob Background */
.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(215, 184, 27, 0.8) 0%, rgba(215, 184, 27, 0.3) 100%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87, 199, 133, 0.7) 0%, rgba(87, 199, 133, 0.2) 100%);
    top: 40%;
    right: -15%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(237, 221, 83, 0.6) 0%, rgba(237, 221, 83, 0.2) 100%);
    bottom: -5%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 30s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* Contact Content */
.contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--header-bg);
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--header-bg);
    font-size: 1rem;
}

.form-group label svg {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(215, 184, 27, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input.input-error,
.form-group textarea.input-error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    min-height: 1.2rem;
    display: block;
}

/* Submit Button */
.submit-btn {
    padding: 1.2rem 2rem;
    background: var(--primary);
    color: var(--header-bg);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(215, 184, 27, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.form-message.success-msg {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error-msg {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message svg {
    flex-shrink: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .contact-content {
        padding: 1rem;
    }

    .contact-header h2 {
        font-size: 3rem;
    }

    .blob-1 {
        width: 500px;
        height: 500px;
    }

    .blob-2 {
        width: 600px;
        height: 600px;
    }

    .blob-3 {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1000px) {
    .contact-section {
        padding: 8rem 2rem;
    }

    .blob {
        filter: blur(100px);
    }
}
