/*
   Simplified CSS for provenedikt-website
   Removed all fixed positioning and unnecessary styles
*/

/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #000000;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    height: 50px;
    margin-bottom: 20px;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Content wrapper - for horizontal layout */
.content-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
    margin-bottom: 50px;
}

/* Left side - Logo */
.left-side {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* Right side - Content */
.right-side {
    flex: 0 0 50%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo */
.logo {
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

/* Title */
.title {
    margin-bottom: 20px;
}

.title h2 {
    font-size: 35px;
    font-weight: bold;
    color: #000000;
}

/* Contact information */
.contact-info {
    margin-bottom: 20px;
}

.contact-item {
    margin: 8px 0;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: bold;
    color: #3b3b3b;
}

/* Social links */
.social-links {
    margin-bottom: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.social-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.social-item p {
    margin: 0;
}

.social-item a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    line-height: 32px;
}

.social-item a:hover {
    text-decoration: underline;
}

/* Construction notice */
.construction-notice {
    text-align: center;
    color: yellow;
    margin-bottom: auto;
    padding: 10px 0;
}

.construction-notice h1 {
    font-size: 28px;
}

/* Footer */
footer {
    height: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        flex: 0 0 100%;
    }
}