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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
}

nav {
    background: #2f2828;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #f1c40f;
}

.burger-menu {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

main {
    padding-top: 70px;
}

.page {
    display: none;
    padding: 2rem;
    min-height: calc(100vh - 70px);
}

.page.active {
    display: block;
}

section img {
    width: 100%;
    max-width: 1800px;
    max-height: 500px;
    margin: 2rem auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    object-fit: cover;
    object-position: center;
}

h1, h2 {
    text-align: center;
    margin: 2rem 0;
    color: #2f2828;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.services-grid, .events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-item, .event-item {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #555555;
}

.contact-info {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #555555;
}

.contact-info i {
    margin-right: 1rem;
    color: #2f2828;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background: #2f2828;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

button:hover {
    background: #2f2828;
}

@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2f2828;
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .language-switch {
        display: flex;
        gap: 0.5rem;
        margin-right: 1rem;
    }

    .language-switch button {
        background: transparent;
        border: 1px solid white;
        color: white;
        padding: 0.3rem 0.6rem;
        cursor: pointer;
        border-radius: 3px;
    }

    .language-switch button.active {
        background: white;
        color: #555555;
    }
}

footer {
    background: #2f2828;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

main {
    padding-bottom: 60px;
}

.page p {
    margin-bottom: 1rem;
    white-space: pre-wrap;
    line-height: 1.6;
    text-align: center;
}

#sakums p[data-translate="description"] {
    font-size: 1.5rem;
    margin: 2rem auto;
}



.about-text {
    font-size: 1.1rem;
}

.about-text strong {
    font-size: 2.8rem;
    display: block;
    margin: 2rem 0 1.5rem 0;
    color: #2f2828;
    font-weight: 900;
    text-transform: uppercase;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: calc(100vh - 130px);
    background-image: url('./attached_assets/image_1747074144028.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
}

.page.active.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    background: rgba(47, 40, 40, 0.7);
    padding: 3rem 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    white-space: pre-line;
}

.hero-section p {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Mobile responsive styles for hero section */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.3rem;
    }
}

/* School catering section styles */
.school-catering-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.subsection-title {
    font-size: 2rem;
    color: #2f2828;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.school-info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555555;
    text-align: left;
}

.info-link {
    color: #d35400;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: underline;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #e67e22;
    text-decoration: none;
}

/* Mobile styles for school catering section */
@media (max-width: 768px) {
    .school-catering-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .school-info-text {
        text-align: center;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .info-link {
        font-size: 1.1rem;
        display: inline-block;
        margin: 0.2rem 0;
    }
}