/* ================================
   VARIABLES & RESET
   ================================ */

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

:root {
    --primary-color: #00D084;
    --secondary-color: #FFD700;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="%2300D084" opacity="0.05"/></svg>') no-repeat center bottom;
    background-size: cover;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 208, 132, 0.3));
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero .slogan {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ================================
   COUNTDOWN
   ================================ */

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(0, 208, 132, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   HERO SOCIAL LINKS
   ================================ */

.hero-social-links {
    margin: 2rem 0;
    text-align: center;
}

.social-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.4);
    border-color: var(--primary-color);
}

.social-icons a svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

/* ================================
   BUTTONS
   ================================ */

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: 0 5px 20px rgba(0, 208, 132, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 208, 132, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* ================================
   SECTION STYLES
   ================================ */

section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   VISION SECTION
   ================================ */

#vision {
    background: var(--light-bg);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.vision-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.vision-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vision-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   VALUES SECTION
   ================================ */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================
   CANDIDATE SECTION
   ================================ */

#candidat {
    background: var(--light-bg);
}

.candidate-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.candidate-profile {
    text-align: center;
}

.candidate-photo-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(0, 208, 132, 0.3);
    border: 5px solid var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.candidate-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.candidate-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.candidate-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.candidate-bio h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.candidate-bio p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.candidate-bio ul {
    list-style: none;
    padding: 0;
}

.candidate-bio li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.candidate-bio li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

/* ================================
   ACTIONS SECTION
   ================================ */

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    background: linear-gradient(135deg, var(--primary-color), #00a86b);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
    transition: transform 0.3s;
}

.action-card:hover {
    transform: translateY(-5px);
}

.action-number {
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.action-card p {
    line-height: 1.7;
    opacity: 0.95;
}

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

#contact {
    background: var(--dark-bg);
    color: var(--white);
}

#contact .section-title {
    color: var(--white);
}

#contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    margin: 2rem 0;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ================================
   FOOTER
   ================================ */

footer {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .slogan {
        font-size: 1.4rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .vision-content,
    .candidate-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        max-width: 280px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .social-icons a svg {
        width: 20px;
        height: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .candidate-photo-wrapper {
        width: 200px;
        height: 200px;
    }
}