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

html {
    scroll-behavior: smooth; 
}

body {
    background-color: #0b0f19; 
    color: #d1d5db; 
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Cinzel', serif;
    color: #4db8ff; 
    text-shadow: 0 0 10px rgba(77, 184, 255, 0.3);
}

/* hero */

.hero-section {
    background: linear-gradient(rgba(11, 15, 25, 0.8), rgba(11, 15, 25, 0.95)), url('obrazky/Background_4.png') no-repeat center center;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(77, 184, 255, 0.2);
}

/* efekt */

.floating-img {
    filter: drop-shadow(0 0 20px rgba(77, 184, 255, 0.4));
    animation: float 4s ease-in-out infinite;
}

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

/* karty */

.ability-card {
    background-color: #111827;
    border: 1px solid rgba(77, 184, 255, 0.1);
    transition: all 0.3s ease; 
}

.ability-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(77, 184, 255, 0.2); 
    border-color: rgba(77, 184, 255, 0.5);
}

.ability-icon {
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #4db8ff;
}


.text-highlight {
    color: #4db8ff;
    font-weight: bold;
}

footer {
    background-color: #05080f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* sklo v menu */
.navbar {
    background: rgba(17, 24, 39, 0.7) !important; 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 15px auto; 
    width: 95%; 
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/* upravy */
.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 5px;
}

.nav-link:hover {
    color: #4db8ff !important;
}


