@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #5a3e1b;
}

/* Centered Logo */
.logo-container {
    text-align: center;
    padding: 100px 100px;
}

.logo {
    width: 400px;
    max-width: 80%;
    padding-top: 30px;
}

/* Story Section */
.story {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px 80px;
    align-items: flex-start;
}

/* Text Box */
.text {
    flex: 1 1 45%;
    background: #fcf5eb;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    line-height: 1.8;
    margin-left: 60px;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Sticky Right Section (Image + Donation Button) */
.sticky-container {
    position: sticky;
    top: 20px;
    align-self: start;
}

/* Image Styling */
.image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

/* Donation Button - Below the Image, Center-Aligned */
.donate-container {
    display: flex;
    justify-content: center;
    margin-top: 40px; /* Adds space below the image */
}

/* Donation Button Styling */
.donate-button {
    background: #ff8a06; /* User-specified color */
    color: white;
    padding: 14px 32px;
    font-size: 20px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-weight: bold;
    transition: 0.3s ease-in-out;
    display: flex; /* Align icon & text properly */
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Heart Icon Styling */
.donate-button .material-icons {
    font-size: 24px;
    margin-right: 8px; /* Space between icon and text */
}

.donate-button:hover {
    background: #e67c00;
}

/* Read More Functionality */
.read-more {
    display: none;
}

/* Read More / Show Less Button */
.show-more {
    text-align: right;
    margin-top: 15px;
    margin-right: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #ff8a06; /* Same orange color */
    transition: color 0.3s ease-in-out;
}

.show-more:hover {
    color: #e67c00; /* Slightly darker shade when hovered */
}


/* Responsive Fixes */
@media (max-width: 768px) {
    .story {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .text {
        margin-left: 0;
        height: auto;
    }

    .sticky-container {
        position: static; /* Removes sticky behavior for mobile */
        padding: 20px;
    }

    .donate-container {
        margin-top: 40px;
    }
}
