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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'Kalam', cursive;
    font-weight: 300;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 200px;
    overflow: hidden;
}

.sidebar-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.content {
    margin-left: 200px;
    padding: 60px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.links a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.links a:hover {
    transform: translateX(10px);
    opacity: 0.8;
}

.contact {
    margin-top: auto;
}

.contact p {
    font-size: 1rem;
    letter-spacing: 1px;
}

.contact a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact a:hover {
    opacity: 0.7;
}

/* Default winter colors */
h1, .links a, .contact p, .contact a {
    color: #a8c4e6;
}

/* Seasonal color classes */
.winter { color: #a8c4e6; } /* light blue */
.spring { color: #a8e6a8; } /* light green */
.summer { color: #e6d4a8; } /* light tan */
.autumn { color: #e6b8a8; } /* light orange */

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: 200px;
    }
    
    .sidebar-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .content {
        margin-left: 0;
        padding: 40px 20px;
    }
    
    .container {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2rem;
    }
} 