body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('images/background.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
}


header {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 300px;
    height: auto;
}

.hero {
    padding: 10px 10px;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

a {
    color: #98C0E4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.button-wrapper {
    text-align: center;
}

.icon-button {
    width: 100px;
    height: 100px;
    transition: transform 0.2s ease;
}

.icon-button:hover {
    transform: scale(1.1);
}

.button-label {
    margin-top: 5px;
    font-size: 16px;
    font-weight: bold;
}

.alt-blog-posts {
    padding: 40px 20px;

}

.alt-blog-posts h2 {
    text-align: center;
    color: white;
    margin-top: 20px;
    margin-bottom: 10px;
}

.alt-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.post-image {
    flex: 0 0 40%;
    max-width: 40%;
    padding-right: 30px; /* Increased spacing from text */
}

.post-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-content {
    flex: 1;
    text-align: left; /* Ensures all text is aligned to the left */
}

.post-content h3 {
    margin-top: 0;
    color: #98C0E4;
    text-align: left;
}

.post-content .date {
    font-size: 0.8em;
    font-style: italic;
    color: white;
    margin: 0 0 15px 0;
    text-align: left;
}

.post-content p {
    font-size: 1em;
    color: white;
    margin: 0 0 0 0;
    text-align: left;
}

.post-content p a {
    color: #98C0E4;
    text-decoration: none;
}

.post-content p a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background: black;
    font-size: 10px;
}


.alt-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px;
}

.alt-blog-posts hr {
    border-top: 1px solid #888;
    width: 50%;
}

.post-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.alt-post-card {
    padding: 0px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}



.post-card img {
    width: 100%;
    max-width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.alt-post-card img {
    width: 100%;
    max-width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.post-text h3 {
    color: #98C0E4;
    margin-top: 0;
}

.post-text .date {
    font-size: 0.9em;
    font-style: italic;
    color: #ccc;
    margin: 5px 0 15px 0;
}

.post-text p a {
    color: #98C0E4;
    text-decoration: none;
}

.post-text p a:hover {
    text-decoration: underline;
}
.post-text p {
    color: white;
}
