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

:root {
    --color-beige: #F5F5DC;
    --color-garnet: #742639;
    --color-garnet-light: #8B4251;
    --color-text: #333;
}

body {
    font-family: 'Tiro Devanagari Sanskrit', serif;
    line-height: 1.6;
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: var(--color-beige);
}

/* Header und Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(116, 38, 57, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-garnet);
}

/* Main Content */
main {
    margin-top: 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero {
    background-color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 3px solid var(--color-garnet);
}

.hero h1 {
    font-family: 'Parisienne', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-garnet);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text);
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.content-section.reverse {
    flex-direction: row-reverse;
}

.text-content,
.image-content {
    flex: 1;
}

.text-content h2 {
    font-size: 2.0rem;
    margin-bottom: 1rem;
    color: var(--color-garnet);
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(116, 38, 57, 0.15);
    border: 3px solid #fff;
}

/* Footer */
footer {
    background-color: var(--color-garnet);
    color: #fff;
    padding: 3rem 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    background-color: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer-title {
    font-family: 'Parisienne', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-beige);
}

.footer-contact,
.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    grid-column: 1 / -1;
}

/* Kontakt */
.contact-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(116, 38, 57, 0.15);
}

.contact-name {
    font-family: 'Parisienne', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-garnet);
}

.contact-detail {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

/* Additional Styles */
h3 {
    font-family: 'Parisienne', cursive;
    color: var(--color-garnet);
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .content-section,
    .content-section.reverse {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .text-content h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-links {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }
} 