/* Styles for the weather forecast section */
.weather-forecast {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px;
    padding: 8px;
    border: 1px solid #e2e2e2;
    border-radius: 15px;
    background-color: #fff;
}

/* Individual weather day block */
.weather-day {
    flex-basis: calc(33.33% - 20px); /* Adjusted for 7 days */
    margin: 5px 0;
    padding: 10px 10px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 22px;
    text-align: left;
    color: white;
    background-color: #b32e75; /* Default background */
    transition: all 0.3s ease-in-out; /* For smooth hover effect */
}

/* Hover effect for interactivity */
.weather-day:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Background colors for each day */
.weather-day:nth-child(2) {
    background-color: #029ea3;
}

.weather-day:nth-child(3) {
    background-color: #5d3b70;
}

.weather-day:nth-child(4) {
    background-color: #2eb370;
}

.weather-day:nth-child(5) {
    background-color: #e9804e;
}

.weather-day:nth-child(6) {
    background-color: #306db3;
}

.weather-day:nth-child(7) {
    background-color: #a372b3;
}

/* Text and Image inside weather blocks */
.weather-day p {
    margin: 5px 0;
}

.weather-day img {
    max-width: 50px;
    height: 50px;
    margin: 0px;
}

/* Styles for the weather header */
.weather-header {
    background-color: black;
    padding: 4px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.weather-header-content {
    font-size: 20px;
    font-weight: bold;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .weather-day {
        flex-basis: 100%; /* Full width on mobile */
        padding: 15px;
        font-size: 20px;
    }
}

/* Post titles */
body .entry-title {
    padding: 3%;
    padding-bottom: 10px;
    margin-top: 20px;
    font-size: 1.5em; /* Adjust as needed for larger titles */
    background-color: #fff;
    box-shadow: rgb(23 43 99 / 30%) 0 2px 10px;
    border-radius: 12px;
    display: inline-block; /* Ensure it doesn't stretch full width */
}


/* GeneratePress Site CSS */ /* grey line under navigation */
.site-header {
	border-bottom: 1px solid #dddddd;
}

/* makes featured article section full width */
.generate-columns-container .featured-column {
	width: 100%;
} /* End GeneratePress Site CSS */