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

#kursoor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: cornflowerblue;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    }

#kursoori:hover
{
    cursor: none;
    border-color: cornflowerblue;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    color: #2c3e50;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

header img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 8px;
}

header h1 {
    font-size: 1.4rem;
    font-weight: 600;
}

nav {
    background-color: #fff;
    padding: 10px 30px;
    border-bottom: 1px solid #e9ecef;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

nav a:hover {
    color: #007bff;
    background-color: #f8f9fa;
}

main {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

main section{
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

#prefooter {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    max-width: 350px;
    max-height: 90px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


#tood, #game-section {
    grid-column: 1 / -1;
    width: 100%;
}

main h2 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.3rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

main p {
    color: #495057;
    margin-bottom: 15px;
}

main img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

main img:hover {
    transform: scale(1.02);
}

footer {
    text-align: center;
    background-color: #fff;
    color: #6c757d;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

#video, #map, #music {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}

#video .video-container iframe,
#map iframe,
#music iframe {
    width: 100%;
    height: 450px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

button {
    display: inline-block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    margin: 10px 5px 15px 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

#kellaaegvastus, #sunnipaevani {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    min-height: 40px;
    font-size: 14px;
    color: #495057;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    color: #495057;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

#game-section iframe {
    width: 100%;
    height: 60vh;
    border: none;
    border-radius: 8px;
    display: block;
    border: 1px solid #e9ecef;
}