/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Navigation - Campaign Style */
.navbar {
    background: #1e3a5f;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4a90e2;
}

.garden-link {
    color: #90c878 !important;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    color: white;
    padding: 6rem 20px 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: #4a90e2;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #357abd;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a5f;
}

/* Election Info */
.election-info {
    background: #f8f9fa;
    padding: 1.5rem 20px;
    text-align: center;
    border-bottom: 3px solid #4a90e2;
}

.election-info h2 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

/* Video Section */
.video-section {
    padding: 4rem 20px;
    background: white;
}

.video-section h2 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Intro Section */
.intro {
    padding: 4rem 20px;
    background: #f8f9fa;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro h2 {
    color: #1e3a5f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.intro-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Priority Cards */
.priorities-preview {
    padding: 4rem 20px;
    background: white;
}

.priorities-preview h2 {
    text-align: center;
    color: #1e3a5f;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.priority-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card h3 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8c 100%);
    color: white;
    padding: 4rem 20px;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

/* Content Sections */
.content-section {
    padding: 4rem 20px;
}

.content-section h2 {
    color: #1e3a5f;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.content-section h3 {
    color: #2d5a8c;
    margin: 2rem 0 1rem;
}

.content-section p,
.content-section ul {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.content-section ul {
    padding-left: 2rem;
}

/* Footer */
footer {
    background: #1e3a5f;
    color: white;
    padding: 2rem 20px;
    text-align: center;
}

footer a {
    color: #4a90e2;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Garden Section Styles */
.garden-hero {
    background: linear-gradient(135deg, #5a7a3f 0%, #7a9f5a 100%);
    color: white;
    padding: 6rem 20px 4rem;
    text-align: center;
}

.garden-dedication {
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.95;
}

.garden-section {
    padding: 4rem 20px;
    background: #f5f8f2;
}

.garden-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.garden-intro h2 {
    color: #5a7a3f;
    margin-bottom: 1rem;
}

.garden-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.garden-footer {
    background: #5a7a3f;
    color: white;
    padding: 3rem 20px;
    text-align: center;
}

.garden-footer h3 {
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3a5f;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

button[type="submit"] {
    background: #4a90e2;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #357abd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3a5f;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.8rem 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image {
        text-align: center;
    }

    .priority-cards {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}