@import url('./fonts.css');


:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #cc7c59;
    --background-color: #f8f9fa;
    --text-color: #333333;
    --spacing-unit: 1rem;
    --section-spacing: 5rem;
    --element-background: #e9ecef;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;

}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    hyphens: auto;
}





/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header styles */
.main-header {
    background-color: #fff;
    padding: var(--spacing-unit);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.main-header .logo img {
    height: 150px;
    width: auto;
    transition: height 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .logo img {
    height: 50px;
    width: auto;
    margin-top:-7px;
    margin-left: 10px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    gap: 2rem;
}

.logo a {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    left: 30px;
    top: 10px;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem;
}

.nav-link.highlight {
    background-color: var(--accent-color);
    color: white !important;
    border-radius: 5px;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-links .nav-item {
  position: relative;
}

.nav-links .nav-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.nav-trigger {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    cursor: default;
}

.nav-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}


.flyout {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.flyout a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.flyout a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
    white-space: nowrap;
}

.lang-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0 5px;
}

.lang-link:hover {
    color: #666;
}

/* Active language */
.lang-link.active {
    color: #000;
    font-weight: 700;
}

/* Video header */
.video-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Hero section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-image: url('/static/images/hero.jpg');
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Merriweather', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {ltzschtalbrück
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #c92a36;
}

.content {
    background: var(--background-color);
    position: relative;
    z-index: 1;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
}


.spacer {
    height: 200px;
}

/* Impress/Legal Notice Styles */
.impress-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
}

.impress-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.impress-content h2 {
    color: var(--primary-color);
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

h3 {
    color: #555;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.impress-content p {
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.8;
}

.impress-content strong {
    color: var(--primary-color);
}

.impress-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-details, .bank-details {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-details {
    border-left: 4px solid var(--primary-color);
}

.bank-details {
    border-left: 4px solid var(--accent-color);
}

.contact-details p, .bank-details p {
    margin-bottom: 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .impress-content {
        padding: 1rem;
    }

    .impress-content h1 {
        font-size: 2rem;
    }

    .impress-content h2 {
        font-size: 1.5rem;
    }

    .impress-content h3 {
        font-size: 1.2rem;
    }
}

.content-wrapper {
    width: 100%;
    background-color: #f8f9fa;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-text {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.link-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .logo a {
        left: 0px;
        top: 0px;
    }

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

    .main-header {
        padding: 15px 0;
        background-color: white;
    }

    .main-header.scrolled {
        box-shadow: none;
    }
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 var(--spacing-unit);
}

/* Section styles */
section {
    padding: var(--section-spacing) 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
}

/* History section */
.history-section {
    background-color: #f8f9fa;
}

/* Destinations section */
.destinations {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.destinations .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    width: 100%;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: white;
}

.card-content h3 {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
}

.card-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.card h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    transition: color 0.3s ease;
}

.card a:hover {
    color: #c1121f;
}

/* Accommodation & Food section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.accommodation, .gastronomy {
    text-align: center;
}

.accommodation img, .gastronomy img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #c1121f;
}

/* Events section */
.events {
    background-color: #f8f9fa;
}

.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    max-width: 800px;
    margin: 0 auto;
}

.event-date {
    background: var(--accent-color);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 1.2rem;
}

.event-content {
    padding: 1.5rem;
    flex-grow: 1;
}

/* Footer styles */
.main-footer {
    background-color: var(--element-background);
    color: var(--text-color);
    padding: 3rem var(--spacing-unit);
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section.inline-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .nav-container {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-item > a {
        padding: 1rem;
    }

    .flyout {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-left: 1rem;
        display: none;
    }

    .nav-item:hover .flyout {
        display: block;
    }

    .travel-content {
        grid-template-columns: 1fr;
    }

    .travel-info {
        grid-column: 1;
        grid-row: 1;
    }

    .main-content {
        grid-column: 1;
        grid-row: 2;
    }

    .travel-page h1 {
        font-size: 2rem;
    }

    .travel-page .subtitle {
        font-size: 1.25rem;
    }
}


.menu-preview {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.menu-preview h2 {
    margin-bottom: 1.5rem;
}

.menu-section {
    margin-bottom: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-weight: 500;
}

.menu-item-price {
    font-weight: 500;
    color: #666;
}

.menu-item-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

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

.activity-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.activity-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.activity-card-content {
    padding: 1rem;
}

/* Hiking tracks */
.hiking-tracks {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.track-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.track-detail {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.track-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.track-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .track-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .track-detail {
        display: inline-block;
    }
}

@media (max-width: 768px) {

    .grid {
        grid-template-columns: 1fr;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        padding: 1rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Partner Section Styles */
.partners .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-card img {
    max-width: 180px;
    width: auto;
    max-height: 120px;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.partner-card img:hover {
    opacity: 0.8;
}

/* For smaller screens */
@media (max-width: 768px) {
    .partners .grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 20px 0 10px 0;
        background-color: transparent;
        z-index: 9999;
    }
}

/* Lottery page styles */
.lottery-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.prize-info {
    margin-bottom: 3rem;
}


.prize-list p {
    margin: 1.5rem 0;
}

.prize-list strong {
    display: block;
    margin: 1.5rem 0;
    color: #D8582B;
}

#lottery-form {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
