html, body {
    overflow: hidden;
    height: 100vh;
}

:root {
    --accent: #eeb611;
    --main: #000000;
}

/*pozadi*/
body {
    background-image: url(https://odraz.umelecka.cz/wp-content/uploads/2025/06/papir-scaled.jpg);
    padding: 20px;
}

/* logo na uvodni strane */
.logomale {
    position: relative;
    width: 109px;
    height: auto;
}

.logomale img {
    display: block;
    margin: 0; /* Remove margin! */
    width: 200px;
    height: auto;
    transition: opacity 0.2s;
}

.logomale::after {
    content: "";
    position: absolute;
    top: 0;    /* Align perfectly with the image */
    left: 0;
    width: 200px;
    height: 109px;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/logo1.png') no-repeat center/contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.logomale:hover img {
    opacity: 0;
}
.logomale:hover::after {
    opacity: 1;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/*nadpis*/
.nadpis {
    font-family: "ltr-ncnd-variable";
    font-style: normal;
    font-variation-settings: "wght" 850;
    font-size: 70px;
    margin: 10px 0 0 0;
    /* Optional: add right margin or padding if needed */
}
@media (min-width: 1025px) {
.nadpis::before{
    content: "•";
    margin: 0 20px;
    color: var(--accent); 
    vertical-align: middle; 
    width: 18px;         /* Adjust size as needed */
    height: 18px;
    margin: 0 6px;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/tecka.png') no-repeat center/contain;
}
.nadpis::after {
    content: "•";
    margin: 0 20px;
    color: var(--accent); 
    vertical-align: middle;
    width: 18px;         /* Adjust size as needed */
    height: 18px;
    margin: 0 6px;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/tecka.png') no-repeat center/contain;
}
}
/*obrazek*/
.ptak {
    position: absolute;
    display: block;
    margin: 0 0 0px 0; 
    margin-top: 45px;
    margin-left: 20px;
    margin-right: auto;
    width: 650px; 
    height: auto;
    z-index: -1;
    pointer-events: none;
}
.ptak img {
    width: 100%;
    height: auto;

}


@media (min-width: 769px) {
/*video*/
.video-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* Aligns video to the center */
    margin: 3rem 0;
}
.video-right {
    width: 800px;      /* Adjust as needed */
    max-width: 90vw;
    height: 45vh;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0,0,0,0);
    transform: translateX(30%);
}
}


/*text*/
.velkyodst {
    margin-top: 60px;
    font-family:"ltr-ncnd-variable";
    font-style: normal;
    font-variation-settings: "wght" 630;
    font-size: 26px;
    text-align: center;
    position: fixed;
    bottom: 120px;
    right: 90px;
    margin: 0;
    z-index: 200;
    background: rgba(218, 218, 218, 0.1); /* Minimal opacity background */
    padding: 6px 18px;           /* Space around text */
    border-radius: 0px;
    backdrop-filter: blur(2px);      /* This applies the blur */
    -webkit-backdrop-filter: blur(8px); /* For Safari support */          
    display: inline-block;
       max-width: 46%;
    box-sizing: border-box;
}

.tecka {
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;      /* Adjust as needed */
    height: auto;
    z-index: 3;
    transform: translate(50%, -50%);
    /* This shifts the image so its center aligns with the corner */
}

/*ikony socialnich medii*/
.socmed {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 100px;         /* space between icons */
    padding-bottom: 10px; /* space from bottom edge */
}
.icon-instagram {
    display: block;
    width: 80px;
    height: 80px;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/instagram-1.png') no-repeat center/contain;
    transition: background-image 0.3s ease;
}
.icon-instagram:hover, .icon-instagram:focus {
    background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/instagram1.png'); /* colored or alternate version */
}

.icon-x {
    display: block;
    width: 80px;
    height: 80px;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/x.png') no-repeat center/contain;
    transition: background-image 0.3s ease;
}
.icon-x:hover, .icon-x:focus {
    background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/x1.png'); /* colored or alternate version */
}

.icon-umelecka {
    display: block;
    width: 80px;
    height: 80px;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/umelecka.png') no-repeat center/contain;
    transition: background-image 0.3s ease;
}
.icon-umelecka:hover, .icon-umelecka:focus {
    background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/umelecka1.png'); /* colored or alternate version */
}

/*responsivita mobile*/
@media (max-width: 768px) {
    body{
         margin: 0;
        padding: 0;
        border: 0;
        
    }
    article {
        position: relative;
        height: 100vh;
        width: 100vw;
        padding: 0;
        margin: 0;
        top: 0;
        left: 0;
        overflow: hidden; /* Prevent scrolling */
    }
    

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/*ikony socialnich medii*/
.socmed {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 30px;         /* space between icons */
    padding-bottom: 10px; /* space from bottom edge */
}
.icon-instagram {
    display: block;
    width: 50px;
    height: auto;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/instagram-1.png') no-repeat center/contain;
    transition: background-image 0.3s ease;
}
.icon-instagram :active {
    background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/instagram1.png'); /* colored or alternate version */
}

.icon-x {
    display: block;
    width: 50px;
    height: auto;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/x.png') no-repeat center/contain;
    transition: background-image 0.3s ease;
}
.icon-x:active {
    background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/x1.png'); /* colored or alternate version */
}

.icon-umelecka {
    display: block;
    width: 50px;
    height: 50px;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/umelecka.png') no-repeat center/contain;
    transition: background-image 0.3s ease;
}
.icon-umelecka:active {
    background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/umelecka1.png'); /* colored or alternate version */
}

/*text*/
.velkyodst { 
    margin-top: 2rem;
    font-family:"ltr-ncnd-variable";
    font-style: normal;
    font-variation-settings: "wght" 630;
    font-size: 1.1rem;
    line-height: 1.05rem;
    text-align: center;
    position: fixed;
    bottom: 20%;
    right:7%;
    margin: 0;
    z-index: 200;
    background: rgba(218, 218, 218, 0.6); /* Minimal opacity background */
    padding: 1rem 1rem;           /* Space around text */
    backdrop-filter: blur(2px);      /* This applies the blur */
    -webkit-backdrop-filter: blur(1rem); /* For Safari support */          
    display: inline-block;
    max-width: 88vw;
    box-sizing: border-box;
}

    .tecka {
    position: absolute;
    top: 0;
    right: 0;
    width: 2.8rem;
    height: auto;
    z-index: 3;
    transform: translate(50%, -50%);
}

/*obrazek*/
.ptak {
    position: absolute;
    display: block;
    bottom: 11%;
    left: 50%;
    margin: 0; 
    margin-top:0;
    margin-left: -42%;
    margin-right: auto;
    width: 84%; 
    height: auto;
    z-index: -1;
    pointer-events: none;
}


/*logo*/
.logomale {
    position: relative;
    width: 30%;
    height: auto;
    margin: 1rem;
}
.logomale img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.2s;
}
.logomale::after {
    content: "";
    position: absolute;
    top: 0;    /* Align perfectly with the image */
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/logo1.png') no-repeat center/contain;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.logomale:hover img {
    opacity: 0;
}
.logomale:hover::after {
    opacity: 1;
}

/*nadpis*/
.nadpis {
    font-family: "ltr-ncnd-variable";
    font-style: normal;
    font-variation-settings: "wght" 850;
    font-size: 2rem;
    margin: 0px 1rem 0 0;
    align-self: flex-end;
    text-align: right;
}
.nadpis span {
    display: block;
}
    .header-row {
        display: flex;
        width: 100%;
        align-items: flex-start;
        justify-content: space-between;
    }

    .video-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 20px; /* Center on mobile for better fit */
    }
    .video-right {
        width: 90vw;
        max-width: 100%;
			height: 51vw;
    }

}

footer, wpulike{
	display: none;
}
