/* Home page styling */
.home {
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
}

.landscape-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/landscape.png'); 
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    filter: brightness(0.9);
    z-index: -1;
}

.home-title {
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    border-radius: 100px;
}

.home-title:hover {
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
  /*  transform: scale(1.01); */
}

.home h1 {
    font-weight: 300;
    font-size: 4vw;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    margin: 0;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}

.home   h3   {
    font-size: 16px;
    font-weight: 300;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: fixed; 
    bottom: 0; 
    left:0;
    width: 100%;
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .home-title h1 {
        font-size: 10vw;
    }
    
    .home-title {
        padding: 1.5rem 2rem;
    }
}

/* Global styles */
body {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
    margin: 0;
    padding: 0;
}

/* Blog page layout */
.blog header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    border-bottom: 1px solid #EEEEEE;
}

.site-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    text-decoration: none;
    color: #333;
    letter-spacing: 0.1em;
}

.tag-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

#tag-selector {
    padding: 8px 12px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 5%;
}

/* Blog post styling */
.post {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #EEEEEE;
}

.post:last-child {
    border-bottom: none;
}

.post-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 0.5rem 0;
}

.post-author {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.post-content {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #F0F0F0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tag:hover {
    background-color: #E0E0E0;
}

#loading-indicator {
    text-align: center;
    padding: 2rem;
    color: #999;
    display: none;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 0.8rem;
    border-top: 1px solid #EEEEEE;
}