:root {
    --primary-orange: #f4a261;
    --accent-orange: #e76f51;
    --forest-green: #264653;
    --soft-green: #2a9d8f;
    --earth-brown: #5d4037;
    --bg-cream: #fffdf7;
    --text-dark: #2d3436;
    --white: #ffffff;
    --platinum: #e5e4e2;
    --gold: #ffd700;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: relative;
    color: var(--white);
    padding: 4rem 1rem 8rem;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden; 
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    background-color: var(--white);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid var(--primary-orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.logo-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 var(--earth-brown);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    position: relative;
}

.event-date {
    background-color: var(--primary-orange);
    color: var(--text-dark);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    position: relative;
}

.hero-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1rem auto 2rem;
    opacity: 0.95;
    position: relative;
}

.btn {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.4);
    font-size: 1.1rem;
    border: 2px solid transparent;
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.6);
    background-color: #d65a3b;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    color: var(--text-dark);
    margin-left: 10px;
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

header + .container {
    margin-top: -5rem;
}

section {
    background: var(--white);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.section-title {
    text-align: center;
    color: var(--forest-green);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary-orange);
    margin: 10px auto 0;
    border-radius: 5px;
}

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

.feature-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 5px 5px 0 var(--soft-green);
}

.feature-text h3 {
    color: var(--earth-brown);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.section-highlight {
    background-color: var(--soft-green);
    color: var(--white);
}

.section-highlight .section-title {
    color: var(--white);
}

.section-highlight .section-title::after {
    background-color: var(--white);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.highlight-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.highlight-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.agenda-day {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.agenda-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.agenda-day h3 {
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.agenda-day ul {
    list-style: none;
    padding: 0;
}

.agenda-day li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.agenda-day li:last-child {
    border-bottom: none;
}

.agenda-day li strong {
    display: block;
}

.agenda-day li em {
    font-style: italic;
    color: #555;
    font-size: 0.9rem;
}

.agenda-notes {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.agenda-notes p {
    margin: 0.5rem 0;
}

.bad-weather-options {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2.5rem;
    border-left: 5px solid var(--soft-green);
}

.bad-weather-options h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.bad-weather-options ul {
    padding-left: 20px;
    margin-bottom: 0;
}

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

#rules .rules-column h3 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

#rules .rules-column ul {
    list-style: none;
    padding: 0;
}

#rules .rules-column li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

#rules .rules-column p {
    font-size: 0.95rem;
    line-height: 1.5;
}

#rules .centered-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: #555;
}

#tickets {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--text-dark);
    text-align: center;
}

.ticket-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    display: inline-block;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: left;
}

footer {
    text-align: center;
    padding: 4rem 1rem;
    background-color: var(--forest-green);
    color: rgba(255, 255, 255, 0.7);
    font-.size: 0.9rem;
}

footer a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--white);
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


#supporters {
    background-color: var(--bg-cream);
}

#supporters .centered-text {
    max-width: 800px;
    margin: -1rem auto 2rem;
    font-size: 1.1rem;
    color: #555;
}


.supporters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.supporter-tier {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
}

.supporter-tier h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.supporter-tier ul {
    list-style: none;
    padding: 0;
}

.supporter-tier li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.supporter-tier a {
    color: var(--accent-orange);
    font-weight: bold;
    display: inline-block;
    transition: transform 0.2s;
}

.supporter-tier a:hover {
    transform: translateX(5px);
}

.supporter-tier:first-child h3 {
    color: var(--platinum); 
}

.supporter-tier:last-child h3 {
    color: var(--gold);
}

@media (max-width: 992px) {
    #agenda .agenda-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 2rem 1.5rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .btn-secondary {
        margin-top: 10px;
        margin-left: 0;
    }
    .features-grid,
    #rules .rules-grid,
    .supporters-grid {
        grid-template-columns: 1fr;
    }
}

.hero-buttons {
    margin-top: 2rem;
    position: relative;
}

#info .intro-text {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.features-grid-rtl {
    direction: rtl;
}

.feature-text-ltr {
    direction: ltr;
}

.alpenlodge-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-image-container-ltr {
    direction: ltr;
}

#tickets h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.ticket-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-box h3 {
    color: var(--forest-green);
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticket-box .ticket-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-ticket {
    background-color: var(--forest-green);
    color: white;
    width: 100%;
    display: block;
    text-align: center;
    border: none;
}

.ticket-box hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}

.contact-info {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.contact-info-link {
    color: var(--forest-green);
    font-weight: bold;
}

.telegram-updates {
    margin-top: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.language-switcher {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.language-switcher img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s ease-in-out;
}

.language-switcher img:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}