/* ZÁKLADNÉ NASTAVENIA */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(rgb(99, 151, 255), rgba(127,173,255,1));
    color: #29395c;
    text-align: center;
    font-family: 'Saira', sans-serif;
    margin: 0;
    padding: 20px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* LOGO A VIDEO */
#logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.video-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 40px auto;
}

.frame-border {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 2px solid #121a64;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.2);
}

/* SLUŽBY - GRID/FLEX */
#services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.inline-bevel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* Pre mobil sa to zlomí pod seba */
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    width: 100%;
    max-width: 640px;
    border: 1px solid rgb(140,180,255);
    background-color: rgb(127,173,255);
    border-radius: 15px;
    box-shadow: 10px 10px 20px #6c93d9, -10px -10px 20px #92c7ff;
}

.icon {
    flex: 0 0 auto;
}

.txt {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

h2 {
    margin-top: 0;
    color: rgb(18, 26, 100);
}

ul {
    list-style-type: circle;
    padding-left: 20px;
}

/* SOCIÁLNE SIETE CEZ CSS HOVER */
#social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    display: inline-block;
    position: relative;
}

.social-icon img {
    display: block;
    transition: opacity 0.1s;
}

.social-icon .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.social-icon:hover img {
    opacity: 0;
}

.social-icon:hover .hover-img {
    opacity: 1;
}

/* KONTAKT BEZ TABULIEK */
#contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    border-top: 1px solid rgba(18, 26, 100, 0.2);
}

.contact-item {
    text-align: left;
    min-width: 200px;
}

#contact a {
    color: #121a64;
    text-decoration: none;
    font-weight: bold;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: rgb(127,173,255); }
::-webkit-scrollbar-thumb { background: rgb(89, 150, 255); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgb(40, 86, 236); }
