
/* Ensure the popup is hidden by default */
#popup {
    display: none 
}

/* Ensure the overlay is also hidden by default */
#overlay {
    display: none 
}

body {
    font-family: Lato, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.about-section {
    display: flex;
    justify-content: space-between;
    padding: 0px;
    gap: 10px;
}

.category, .about-me {
    padding:20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.travel-category, .inspiration-category {
    background-color: #bfc8b2;
    flex: 1; /* Ensure equal width for the travel and inspiration boxes */
}

.about-me {
    background-color: #fff;
    flex: 2; /* Make the middle box wider */
    display: flex;
    flex-direction: column;
		justify-content: center;
}

.category img, .about-me img {
    width: 100%;
    height: auto;
    display: block;
}

.about-me-wrapper {
    display: flex;
    align-items: center; /* Align items to the top */
    gap: 10px; /* Space between image and text */
		justify-content: center;
}

.about-me-text {
    flex: 1;
    text-align: left;
}

.image-container {
		display: flex;
    width: 230px; /* Fixed size for the square image */
    height: 300px; /* Fixed size for the square image */
    overflow: none; /* Ensure image doesn't spill out */
    position: relative; /* Positioning context for absolute positioning */
    flex-shrink: 0; /* Prevent image container from shrinking */
		justify-content: center;
		align-items: center,
}

.about-me-img {
    width: 100%; /* Ensure the image fits the container */
    height: 100%; 
    object-fit: cover;
    border-radius: 2%; 
    position: center; 
    right: 0; 
		justify-content: center;
}

.category-content {
    padding: 3px;
}

.about-me h4, .about-me h2, .category h3 {
    margin: 10px 0;
    color: #333;
}

.about-me p, .category p {
    color: #666;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.read-more:hover {
    background-color: #333;
    color: #fff;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 10px;
    }

    .category, .about-me {
        margin-bottom: 20px; /* Add spacing between sections on mobile */
    }

    .about-me-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .about-me-text {
        text-align: center;
        margin-right: 0;
        margin-top: 35px;
    }

    .image-container {
        width: 125px; /* Adjust size on mobile */
        height: 100px;
    }

    .about-me-img {
        width: 100%;
        height: 100%;
    }
}
