/* Leksikon App - Main Stylesheet */

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

body {
    font-family: 'Muli', 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #4169E1;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.logo-image {
    max-width: 300px;
    height: auto;
}

.logo-text h1 {
    color: #4169E1;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-text p {
    color: #4169E1;
    font-size: 20px;
    font-weight: 400;
}

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

h2 {
    color: #333;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.content-section {
    margin-bottom: 40px;
}

.content-section p {
    margin-bottom: 20px;
    text-align: center;
    color: #666;
    font-size: 16px;
}

.content-section a {
    color: #4169E1;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4169E1;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background-color: #3154c4;
}

.btn-center {
    text-align: center;
    margin: 30px 0;
}

/* Contact Page */
.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-image {
    flex: 0 0 300px;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.contact-text {
    flex: 1;
}

.contact-email {
    text-align: center;
    margin: 40px 0;
    font-size: 18px;
}

.contact-email a {
    color: #4169E1;
    text-decoration: none;
    font-weight: 600;
}

/* Privacy Policy Page */
.privacy-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.privacy-image {
    flex: 0 0 300px;
}

.privacy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.privacy-text {
    flex: 1;
}

.privacy-text h2 {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.privacy-text h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.privacy-text p {
    text-align: left;
    margin-bottom: 15px;
}

.privacy-text strong {
    font-weight: 700;
}

/* Footer */
footer {
    background-color: #f8f8f8;
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}

footer p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

footer a {
    color: #4169E1;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-text h1 {
        font-size: 36px;
    }
    
    .logo-text p {
        font-size: 16px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-content,
    .privacy-content {
        flex-direction: column;
    }
    
    .contact-image,
    .privacy-image {
        flex: 1;
        text-align: center;
    }
}
