/* css/custom.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {

    padding: 20px;
}

header h1 {
    margin: 0;
}

header .btn-primary {
    background-color: #007bff;
    border: none;
    color: #fff;
}

.hero {
    background: url('../images/french_flowers.jpg') no-repeat center center;
    background-size: cover;

    text-align: center;
    padding: 100px 20px;
}

.hero h2 {
    margin-bottom: 20px;
}

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

.card {
    border: 1px solid #ddd;
    border-radius: .25rem;
    box-shadow: 0 0 .125rem rgba(0,0,0,.075);
}

.card-title {
    margin-bottom: .75rem;
}

.card-text a {
    color: #007bff;
    text-decoration: none;
}

.card-text a:hover {
    text-decoration: underline;
}

footer {
    background: #343a40;
    color: #fff;
    padding: 20px;
}

footer p {
    margin: 0;
}

.section-blue {

    background: #e1ecee;
}

/* Ensure the grid remains two columns when printing */
@media print {
    .col-md-6 {
        float: left;
        width: 50%;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
    }

    /* Optional: Adjust margins and padding to suit the printed format */
    .mb-4, .mb-5 {
        margin-bottom: 1rem !important;
    }

    /* Remove margins from the printed page */
    @page {
        margin: 0; /* Remove all page margins */
    }

    /* Make the content go to the edge of the page */
    body {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Remove container padding so content prints closer to the edge */
    .container {
        padding: 0 !important;
    }
}