*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}

body{
    background:#e2e8f0;
    color:#1e293b;
    line-height:1.6;
}

/* HLAVIČKA */
.hero{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:50px 20px;
}

.hero h1{
    font-size:45px;
    margin-bottom:10px;
}

.hero p{
    color:#cbd5e1;
}

/* MENU */
nav{
    margin-top:25px;
}

nav a{
    text-decoration:none;
    color:white;
    background:#2563eb;
    padding:12px 18px;
    margin:5px;
    border-radius:25px;
    display:inline-block;
    transition:0.3s;
}

nav a:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* KARTY */
.card{
    max-width:1100px;
    margin:30px auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

.card h2{
    margin-bottom:20px;
    color:#2563eb;
}

/* O MNE */
.about-box{
    display:flex;
    gap:30px;
    align-items:center;
    flex-wrap:wrap;
}

.about-box img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #2563eb;
}

/* ZÁĽUBY */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.box{
    background:#f8fafc;
    padding:15px;
    border: radius 15px;
    text-align:center;
}

.box img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:15px;
}

.box h3{
    margin-top:15px;
}
ul{
text-align: start;

}





/* TABUĽKA */
table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:#2563eb;
    color:white;
}

th,
td{
    border:1px solid #cbd5e1;
    padding:10px;
    text-align:center;
}

/* GALÉRIA */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap: 15px;
}

.gallery img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.08);
}

/* FOOTER */
footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}

/* MOBIL */
@media(max-width:768px){

    .about-box{
        flex-direction:column;
        text-align:center;
    }

    nav a{
        display:block;
        width:220px;
        margin:10px auto;
    }
}