/*
Theme Name: Na břízce
Author: Nguyen Tom
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, #5a6b5f 0%, #7a8d7f 25%, #6b7d6e 50%, #8a9d92 75%, #4a5c50 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tree-logo {
    animation: float 3s ease-in-out infinite;
}

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

.countdown-circle {
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.countdown-circle:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

@media (max-width: 360px) {
    .countdown-circle {
        width: 110px;
        height: 110px;
    }
}

.countdown-number {
    font-size: 48px;
    font-weight: bold;
    color: white;
    tabular-nums;
}

.countdown-label {
    font-size: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

@media (max-width: 360px) {
    .countdown-number {
        font-size: 36px;
    }
    .countdown-label {
        font-size: 10px;
    }
}

/* Events Section Styles */
.glass-event {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.glass-event:hover {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}


/* Contact Section Styles */
.glass-contact {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.glass-contact:hover {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Map styles */
#map, #map-full {
    background: rgba(0, 0, 0, 0.3);
}