﻿/* ----- PDF Downloads Section ----- */
.pdf-downloads {
    background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: "Poppins", sans-serif;
}

    .pdf-downloads h2 {
        font-size: 32px;
        color: #064e3b;
        font-weight: 700;
        margin-bottom: 40px;
    }

/* ----- Buttons Container ----- */
.pdf-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

    /* ----- Common Button Styles ----- */
    .pdf-buttons a {
        display: inline-block;
        padding: 18px 30px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        color: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* ----- Specific Button Colors ----- */
.btn-photo {
    background: linear-gradient(135deg, #0d9488, #10b981);
}

.btn-germination {
    background: linear-gradient(135deg, #047857, #34d399);
}

/* ----- Hover Effects ----- */
.pdf-buttons a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .pdf-buttons {
        flex-direction: column;
        gap: 20px;
    }
}
