/* Scandinavian Minimalist Style - Pastel Colors, Nude Tones */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F5F3F0;
    color: #3D3D3D;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 100vh;
}

/* Header */
.header {
    background: linear-gradient(135deg, #E8DCC6 0%, #D4C4B0 100%);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 3px solid #C9B99B;
}

.header h1 {
    color: #5A5A5A;
    font-size: 2.5em;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Main Content */
.main-content {
    padding: 40px 30px;
}

.intro {
    margin-bottom: 50px;
}

.intro h2 {
    color: #8B7D6B;
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 20px;
    border-bottom: 2px solid #E8DCC6;
    padding-bottom: 10px;
}

.intro p {
    color: #5A5A5A;
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

/* Navigation Buttons */
.navigation {
    margin-bottom: 50px;
}

.navigation h2 {
    color: #8B7D6B;
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 30px;
    border-bottom: 2px solid #E8DCC6;
    padding-bottom: 10px;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.nav-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #D4C4B0;
    color: #5A5A5A;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid #C9B99B;
    text-align: center;
    min-width: 180px;
}

.nav-button:hover {
    background-color: #C9B99B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Image Placeholder */
.image-placeholder {
    background-color: #F5F3F0;
    padding: 30px;
    text-align: center;
    border: 2px dashed #D4C4B0;
    border-radius: 5px;
    color: #8B7D6B;
    font-style: italic;
    margin-bottom: 30px;
}

/* Content Pages */
.content-page {
    padding: 40px 30px;
}

.content-page h1 {
    color: #8B7D6B;
    font-size: 2.2em;
    font-weight: 300;
    margin-bottom: 30px;
    border-bottom: 3px solid #E8DCC6;
    padding-bottom: 15px;
}

.content-page h2 {
    color: #8B7D6B;
    font-size: 1.6em;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #E8DCC6;
    padding-bottom: 8px;
}

.content-page h3 {
    color: #6B6B6B;
    font-size: 1.3em;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-page p {
    color: #5A5A5A;
    font-size: 1.05em;
    margin-bottom: 15px;
    text-align: justify;
}

.content-page ul, .content-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: #5A5A5A;
}

.content-page li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.content-page strong {
    color: #6B6B6B;
    font-weight: 600;
}

/* Back to Home Button */
.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background-color: #D4C4B0;
    color: #5A5A5A;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid #C9B99B;
}

.back-button:hover {
    background-color: #C9B99B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Images */
.content-image {
    float: right;
    margin: 15px 0 15px 20px;
    max-width: 250px;
    border: 3px solid #E8DCC6;
    border-radius: 5px;
    padding: 5px;
    background-color: #F5F3F0;
}

.content-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-image-left {
    float: left;
    margin: 15px 20px 15px 0;
    max-width: 250px;
    border: 3px solid #E8DCC6;
    border-radius: 5px;
    padding: 5px;
    background-color: #F5F3F0;
}

.content-image-left img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #8B7D6B;
    font-size: 0.9em;
    margin-top: 5px;
}

/* Footer */
.footer {
    background-color: #E8DCC6;
    padding: 20px 30px;
    text-align: center;
    color: #8B7D6B;
    border-top: 2px solid #D4C4B0;
    margin-top: 50px;
}

/* Clear floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8em;
    }
    
    .nav-buttons {
        flex-direction: column;
    }
    
    .nav-button {
        width: 100%;
    }
    
    .content-image, .content-image-left {
        float: none;
        display: block;
        margin: 20px auto;
        max-width: 100%;
    }
}

