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

html, body {
    height: 100vh;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1c407a;
    font-family: 'Crimson Text', serif;
    color: #e3bc83;
    position: relative;
}

.container {
    max-width: 500px;
    width: 100%;
    height: 100vh;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

/* --- Icon + Header --- */
.top-section {
    flex-shrink: 0;
}

.acoustic-decoration {
    font-size: 40px;
    margin-bottom: 8px;
    opacity: 0.8;
    animation: gentleFloat 3s ease-in-out infinite;
    text-align: center;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

header {
    text-align: center;
}

.band-name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 6px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 14px;
    opacity: 0.85;
    font-style: italic;
}

/* --- Links --- */
.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    flex-grow: 1;
    justify-content: center;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #1c407a;
    border: 2px solid #e3bc83;
    border-radius: 8px;
    color: #e3bc83;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.link-item:hover {
    background: rgba(227, 188, 131, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 188, 131, 0.2);
}

.link-item i {
    font-size: 20px;
}

/* --- EVENTS --- */
.events-container {
    width: 100%;
    margin-top: 5px;
}

.events-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: #1c407a;
    border: 2px solid #e3bc83;
    border-radius: 8px;
    color: #e3bc83;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.events-toggle:hover {
    background: rgba(227, 188, 131, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 188, 131, 0.2);
}

.events-toggle i {
    font-size: 20px;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.arrow-icon.rotated {
    transform: rotate(180deg);
}

.events-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.events-list.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: #1c407a;
    border: 1px solid rgba(227, 188, 131, 0.3);
    border-radius: 8px;
    margin-bottom: 8px;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-item:hover {
    background: rgba(227, 188, 131, 0.1);
    border-color: #e3bc83;
    transform: translateX(5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 5px 10px;
    background: rgba(227, 188, 131, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(227, 188, 131, 0.2);
}

.date-day {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: #e3bc83;
}

.date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    margin-bottom: 2px;
    color: #e3bc83;
}

.event-info p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    padding: 5px 10px;
    background: rgba(227, 188, 131, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(227, 188, 131, 0.2);
}

.date-day {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    color: #e3bc83;
}

.date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.date-year {
    font-size: 9px;
    opacity: 0.5;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* --- Footer --- */
footer {
    flex-shrink: 0;
    text-align: center;
    opacity: 0.8;
    padding-top: 10px;
}

.motto {
    font-style: italic;
    font-size: 13px;
    margin-bottom: 4px;
}

.copyright {
    font-size: 12px;
}

/* --- Responsif --- */
@media (max-height: 600px) {
    .band-name { font-size: 28px; }
    .tagline { font-size: 12px; }
    .acoustic-decoration { font-size: 28px; }
    .link-item { padding: 10px 16px; font-size: 14px; }
    .link-item i { font-size: 16px; }
    .links { gap: 7px; }
    .motto { font-size: 11px; }
    .copyright { font-size: 10px; }
    .events-toggle { padding: 10px 16px; font-size: 14px; }
    .event-item { padding: 10px 12px; }
    .event-info h4 { font-size: 13px; }
    .event-info p { font-size: 11px; }
    .date-day { font-size: 18px; }
    .date-month { font-size: 10px; }
    .date-year { font-size: 8px; }
    .event-date { min-width: 45px; padding: 4px 8px; }
}

@media (max-width: 380px) {
    .band-name { font-size: 28px; }
    .tagline { font-size: 12px; }
    .link-item { padding: 12px 14px; font-size: 14px; }
}

@media (orientation: landscape) and (max-height: 450px) {
    .acoustic-decoration { display: none; }
    .band-name { font-size: 24px; margin-bottom: 2px; }
    .tagline { font-size: 11px; }
    .links { gap: 6px; }
    .link-item { padding: 8px 14px; font-size: 13px; }
    .link-item i { font-size: 14px; }
    .motto { font-size: 10px; }
    .copyright { font-size: 9px; }
    .container { padding: 10px 20px; }
    .events-toggle { padding: 8px 14px; font-size: 13px; }
    .event-item { padding: 8px 10px; }
    .event-info h4 { font-size: 12px; }
    .event-info p { font-size: 10px; }
    .date-day { font-size: 16px; }
    .date-month { font-size: 9px; }
    .date-year { font-size: 7px; }
    .event-date { min-width: 40px; padding: 3px 6px; }
}