/* --- Global Styles --- */
body {
    background-color: #F5F2EA; /* Light cream background */
    font-family: 'Poppins', sans-serif  !important; /* Default sans-serif */
    margin: 0;
    padding: 0;
}

/* --- Typography --- */
.main-heading {
    font-family: 'Playfair Display', serif !important; /* Elegant serif for headings */
    font-weight: 600;
    color: #2F4F2F; /* Deep green for headings */
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

.body-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #666; /* Supporting text grey */
}

/* --- Section Styling --- */
.flower-section {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9F4E8;
}

/* --- Button Styling --- */
.custom-btn {
    background-color: #2F4F2F; /* Primary deep green */
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    padding: 0.6em 1.5em;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #3E7A3F; /* Accent green on hover */
    color: white;
    cursor: pointer;
}

/* --- Image Styling --- */
.image-grid .left-col img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

/* --- Responsive Layout --- */
@media (max-width: 991.98px) {
    .row.align-items-center {
        flex-direction: column;
    }

    .col-lg-6 {
        width: 100%;
    }

    .text-content {
        text-align: center;
    }
}
