* {box-sizing: border-box;
               margin: 0;
               padding: 0;
        }




        nav {
            background-color:#1E2A75;
            padding: 20px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo img {
            height:70px; 
            width: auto;
            display: block;
}

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            position: relative;
            text-decoration: none;
            color: white;
            font-size: 20px;
            padding-bottom: 5px;
            font-family: "Mulish", sans-serif;
}



         .nav-links a::after {
             content: "";
             position: absolute;
             left: 0;
             bottom: 0;
             width: 0;
             height: 2px;
             background-color: white;
             transition: width 0.3s ease;
}


        
          .nav-links a:hover::after {
              width: 100%;
}

        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 4px 0;
        }

      
        @media (max-width: 768px) {
            nav {
                padding: 20px 40px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                right: 40px;
                background-color:  #1E2A75;
                border: 2px solid white;
                flex-direction: column;
                gap: 20px;
                padding: 20px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .hamburger {
                display: flex;
                
            }
        }








.hero {
height: 100vh;
background:
url("./slike/glavna.png");
background-size: cover;
background-position: center;
font-family: "Poppins", sans-serif;
display: flex;
align-items: center;
}


.hero-content {
margin-left: 80px;
max-width: 600px; 
color: white;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 30px;
    text-align: left;
}



.hero p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    margin-right: 180px;
     font-family: "Mulish", sans-serif;
    margin-bottom: 80px;
}


.hero-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #1E2A75; 
color: white;
text-decoration: none;
font-size: 18px;
border-radius: 10px;
border: 1px solid white;
transition: background-color 0.3s ease, transform 0.2s ease;
font-family: "Mulish", sans-serif;
}


.hero-button:hover {
background-color: #4A5FD1;
transform: translateY(-2px);
}





@media (max-width: 768px) {
    .hero-content {
        margin-left: 40px;
        margin-right: 40px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 40px;
    }

  
}






.glavni {
    margin: 250px 80px; 
}


.omotac {
    display: flex;
    background-color: white;
    align-items: center; 
    position: relative;
}



.livo-text {
    width: 50%;
     padding: 0 40px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.livo-text h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1E2A75;
    font-family: "Poppins", sans-serif;
}

.livo-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 80px;
    max-width: 500px;   /* OVO JE KLJUČNO */
    font-family: "Mulish", sans-serif;
}

.btn-livo {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 20px;
    background-color:#1E2A75;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid white;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: "Mulish", sans-serif;
}



.btn-livo:hover {
background-color: #4A5FD1;
transform: translateY(-2px);
}



.desno-image {
    width: 50%;
    height: 500px; 
    background:
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)),
        url("slike/onama.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-top: -50px;
    margin-bottom: -50px; 
}





@media (max-width: 900px) {
    .glavni {
        margin: 150px 40px;
    }

    .omotac {
        flex-direction: column;
        align-items: center;
    }

    .livo-text {
        width: 100%;
        padding: 0;
    }

    .desno-image {
        width: 100%;
        height: 300px;
        margin: 75px 0 20px 0;
    }
    
    .livo-text h1 {
        font-size: 35px;
    }
    
}








.pjesma {
    text-align: center;
}

.pjesma h3 {
    font-size: 28px;
    color: white;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    background-color: #1E2A75;
    padding-top: 30px;
    padding-bottom: 30px;
    font-style: italic;
}



@media (max-width: 768px) {
   
    .pjesma h3 {
        font-size: 22px;
    }
}







.glavni {
    margin: 250px 80px; 
}


.omotac {
    display: flex;
    background-color: white;
    align-items: center; 
    position: relative;
}




.lijevo-image {
    width: 50%;
    height: 500px;
    background:url("slike/polozaj.png");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-top: -50px;
    margin-bottom: -50px;
    
}


.desno-text {
    width: 50%;
    padding: 0 0 0 40px ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: "Mulish", sans-serif;
     text-align: right;
}




.desno-text h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1E2A75;
    font-family: "Poppins", sans-serif;
}

.desno-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 80px;
    max-width: 500px; 
    margin-left: auto;
}

.btn-desno {
    display: inline-block;
    align-self: flex-end;
    padding: 10px 20px;
    background-color: #1E2A75;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid white;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: "Mulish", sans-serif;
 
}

.btn-desno:hover {
    background-color: #4A5FD1;
    transform: translateY(-2px);
    align-self: flex-end;
}







@media (max-width: 900px) {

    .lijevo-image {
        width: 100%;
        height: 300px;
        margin: 20px 0 75px 0;

    }

    .desno-text {
        width: 100%;
        padding: 0 ;
       
    }
    
    .desno-text h1{
    font-size: 35px;
    }


}

















.ikonice-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
    padding: 50px;
    border-radius: 15px;
    border: 8px solid #1E2A75;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    margin-bottom: 200px;
}


.ikonica {
    width: clamp(50px, 10vw, 150px);  /* min 50px, max 200px, proporcionalno */
    height: auto;                      /* automatska visina */
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ikonica:hover {
    transform: scale(1.2);
}



@media (max-width: 900px) {
    .ikonice-container {
        gap: 15px;  
        padding: 30px;
        margin-bottom: 150px;
    }

    .ikonica {
        width: clamp(40px, 15vw, 100px); 
    }
}








.pecenjara {
text-align: center;
margin-right: 80px;
margin-left: 80px; 
}



.pecenjara h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1E2A75;
    font-family: "Poppins", sans-serif;
    
}

.pecenjara p {
    color: black;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 80px;
}


@media (max-width: 900px) {
    
    .pecenjara h1{
    font-size: 35px;
    }
    .pecenjara p{
       margin-bottom: 75px; 
    }
}








.konoba {
  display: flex;
  gap: 40px;                
  margin: 80px 80px 200px;  
  flex-wrap: wrap;          
}

.kb {
  width: calc(50% - 20px); 
  max-height: 400px;        
  overflow: hidden;         
  border-radius: 20px;
}

.kb img {
  width: 100%;
  height: 100%;
  object-fit: cover;        
  transition: transform 0.3s ease;
}


.kb:hover img {
  transform: scale(1.05);
}


@media (max-width: 900px) {
  .konoba {
    margin: 75px 40px 150px; 
  }

  .kb {
    width: 100%;          
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .konoba{
    margin: 75px 20px 150px;
  }

  .kb{
    max-height: 150px;
  }
}











.apartmanii {
text-align: center;
margin-right: 80px;
margin-left: 80px; 
}



.apartmanii h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color:#1E2A75;
    font-family: "Poppins", sans-serif;
    
}

.apartmanii p {
    color: black;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 80px;
}


@media (max-width: 900px) {
    
    .apartmanii h1{
    font-size: 35px;
    }
}










.apartmani {
  display: flex;
  gap: 40px;               
  margin: 80px 80px 200px;  
  flex-wrap: wrap;          
}

.ap {
  position: relative;         
  width: calc(50% - 20px); 
  max-height: 450px;         
  overflow: hidden;          
  border-radius: 20px;
}

.ap img {
  width: 100%;
  height: 100%;
  object-fit: cover;         
  transition: transform 0.3s ease;
}

.ap:hover img {
  transform: scale(1.05);
}


.ap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;               
  height: 100%;
  background:rgba(255, 255, 255, 0.9);
  color: black;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ap .overlay h2 {
  margin: 0 0 38px 0;       
  font-size: 30px;
  color: #1E2A75;
  font-family: "Poppins", sans-serif;  
}

.ap .overlay p {
  margin: 0 0 80px 0;        
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.ap .overlay .button {
  display: inline-block;
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #1E2A75;
    color: white;
    text-decoration: none;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid white;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: "Mulish", sans-serif;
}

.ap .overlay .button:hover {
    background-color: #4A5FD1;
    transform: translateY(-2px);
}




@media (max-width: 900px) {
  .apartmani {
    margin: 75px 40px 150px; 
  }

  .ap {
    width: 100%;            
    max-height: 400px;
  }

  .ap .overlay {
    width: 60%;              
  }
    
    .ap .overlay h2{
    font-size: 35px;
    margin-bottom: 20px;
    }
    
    
    .ap .overlay .button {
    padding: 8px 18px;
    font-size: 13px;
}

}


    
    
@media (max-width: 480px) {
  .apartmani{
    margin: 75px 20px 150px; 
  }

  .ap{
    max-height: 250px;
  }

  .ap .overlay {
    width: 100%;             
    height: 100%;
    padding: 15px;
  }

}









.video-section {
    position: relative;
    margin: 120px 80px;
    border-radius: 20px;
    overflow: hidden;
}

.video-section video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}



video {
    filter: brightness(0.9);
}








.footer {
    background-color:#1E2A75;
    padding: 80px 80px;
    color: white;
    text-align: center;
    margin-top:200px;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer h4 {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
}

.footer h5 {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
}


.footer-info {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
}

.footer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-row .icon {
    font-size: 18px;
}

.footer hr {
    margin: 80px 0 20px 0;
    border: none;
    height: 1px;
    background-color: white;
    opacity: 0.6;
}



.footer p {
    font-size: 16px;
    font-family: "Mulish", sans-serif;
}




@media (max-width: 768px) {
    .footer {
        padding: 80px 40px;
    }
    .footer h4 {
    font-size: 18px;
}

.footer h5 {
    font-size: 16px;
}
    
   .footer-row .icon {
    font-size: 14px;
} 
    
    .footer p {
    font-size: 14px;
}

    .footer-row {
        font-size:14px;
}


    
    .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}
}






.btn-back-to-top {
    position: fixed;           
    bottom: 30px;             
    right: 30px;               
    width: 50px;              
    height: 50px;              
    background-color: #1E2A75; 
    color: white;              
    border-radius: 50%;      
    display: flex;             
    align-items: center;       
    justify-content: center;   
    font-size: 24px;           
    text-decoration: none;
    border: 1px solid white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 1000;             
}

.btn-back-to-top:hover {
    background-color: #4A5FD1;
    transform: translateY(-2px);
}









/* NOA */












.heroN {
height: 100vh;
background:
linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)),
url("slike/vino.JPG");
background-size: cover;
background-position: center;
font-family: "Poppins", sans-serif;
display: flex;
align-items: center;
}


.heroN-content {
margin-left: 80px;
max-width: 600px; 
color: white;
}

.heroN h1 {
    font-size: 60px;
    margin-bottom: 30px;
    text-align: left;
}



.heroN p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    margin-right: 180px;
     font-family: "Mulish", sans-serif;
    margin-bottom: 80px;
}


.heroN-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #1E2A75; 
color: white;
text-decoration: none;
font-size: 18px;
border-radius: 10px;
border: 1px solid white;
transition: background-color 0.3s ease, transform 0.2s ease;
font-family: "Mulish", sans-serif;
}


.heroN-button:hover {
background-color: #4A5FD1;
transform: translateY(-2px);
}





@media (max-width: 768px) {
    .heroN-content {
        margin-left: 40px;
        margin-right: 40px;
        max-width: 100%;
    }

    .heroN h1 {
        font-size: 40px;
    }

  
}







.apartmaniN {
  display: flex;
  justify-content: center;  
  margin: 200px 0 200px 0; 
}

.apN {
  position: relative;
  width: calc(100% - 160px);
  max-height: 600px;        
  overflow: hidden;          
  border-radius: 20px;
}

.apN img {
  width: 100%;
  height: 100%;
  object-fit: cover;         
  transition: transform 0.3s ease;
}

.apN:hover img {
  transform: scale(1.05);
}


.apN .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;               
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: black;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px; 
}

.apN .overlay h2 {
  margin: 0 0 38px 0;       
  font-size: 35px;  
  color: #1E2A75;
  font-family: "Poppins", sans-serif;  
}

.apN .overlay p {
  margin: 0 0 80px 0;        
  font-family: "Mulish", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.apN .overlay .rezervacija-btn  {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 24px;
  background-color: #1E2A75;
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid white;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "Mulish", sans-serif;
}

.apN .overlay .rezervacija-btn:hover {
  background-color: #4A5FD1;
  transform: translateY(-2px);
}


@media (max-width: 900px) {
  .apN {
    width: calc(100% - 80px); /* manje margine */
    max-height: 500px;
  }

  .apN .overlay {
    width: 60%;              
    padding: 15px;
  }

  .apN .overlay h2 {
    font-size: clamp(28px, 2vw + 1rem, 35px); 
    margin-bottom: 20px;
  }

  .apN .overlay p {
    font-size: clamp(14px, 1.2vw + 0.5rem, 17px);
    margin-bottom: 40px;
  }

  .apN .overlay rezervacija-btn  {
    font-size: clamp(13px, 1vw + 0.5rem, 16px);
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .apN {
    width: calc(100% - 40px); 
    max-height: 350px;
  }

  .ap .overlay {
    width: 100%;
    padding: 10px;
  }
}













.apartman-galerija {
    max-width: 1200px;
    margin:  200px auto 0 auto;  
    padding: 0 20px;
}

.apartman-galerija h2 {
    font-family: "Poppins", sans-serif;
    color: #1E2A75;
    font-size: 42px;
    text-align: center;
    margin-bottom:30px;
    letter-spacing: 1px;
}


.apartman-galerija p {
    color: black;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 80px;
    text-align: center;
}


.galerija-grid {
    column-count: 3; 
    column-gap: 20px;
}

.galerija-item {
    break-inside: avoid; 
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.galerija-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 15px;
    transform: scale(1.0); 
   filter: grayscale(100%);
}

.galerija-item img:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    z-index: 2;
    filter: grayscale(0);
}







.apartman-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.apartman-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.apartman-lightbox button {
    position: absolute;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 28px;
    padding: 10px 15px;
    cursor: pointer;
}

.apartman-lightbox .close {
    top: 20px;
    right: 30px;
}

.apartman-lightbox .prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.apartman-lightbox .next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.apartman-lightbox button:hover {
    background: black;
}





@media (max-width: 1024px) {
    .galerija-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .galerija-grid {
        column-count: 1;
    }
}


































/* PIA */












.heroP {
height: 100vh;
background:
linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)),
url("slike/vino.JPG");
background-size: cover;
background-position: center;
font-family: "Poppins", sans-serif;
display: flex;
align-items: center;
}


.heroP-content {
margin-left: 80px;
max-width: 600px; 
color: white;
}

.heroP h1 {
    font-size: 60px;
    margin-bottom: 30px;
    text-align: left;
}



.heroP p {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    margin-right: 180px;
     font-family: "Mulish", sans-serif;
    margin-bottom: 80px;
}


.heroP-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #1E2A75; 
color: white;
text-decoration: none;
font-size: 18px;
border-radius: 10px;
border: 1px solid white;
transition: background-color 0.3s ease, transform 0.2s ease;
font-family: "Mulish", sans-serif;
}


.heroP-button:hover {
background-color: #4A5FD1;
transform: translateY(-2px);
}





@media (max-width: 768px) {
    .heroP-content {
        margin-left: 40px;
        margin-right: 40px;
        max-width: 100%;
    }

    .heroP h1 {
        font-size: 40px;
    }

  
}













/* POLJANA */






.heroPO {
height: 100vh;
background:
linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)),
url("slike/pojana.JPG");
background-size: cover;
background-position: center;
font-family: "Poppins", sans-serif;
display: flex;
align-items: center;
}


.heroPO-content {
margin-left: 80px;
max-width: 600px; 
color: white;
}

.heroPO h1 {
    font-size: 40px;
    margin-bottom: 30px;
    text-align: left;
}



.heroPO p {
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
    margin-right: 180px;
     font-family: "Mulish", sans-serif;
    margin-bottom: 80px;
}


.heroPO-button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #1E2A75; 
color: white;
text-decoration: none;
font-size: 18px;
border-radius: 10px;
border: 1px solid white;
transition: background-color 0.3s ease, transform 0.2s ease;
font-family: "Mulish", sans-serif;
}


.heroPO-button:hover {
background-color: #4A5FD1;
transform: translateY(-2px);
}





@media (max-width: 768px) {
    .heroPO-content {
        margin-left: 40px;
        margin-right: 40px;
        max-width: 100%;
    }

    .heroPO h1 {
        font-size: 40px;
    }
 .heroPO {

background:
linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.5)),
url("slike/pojana.JPG");
background-size: cover;
background-position: center;
}

  
}











.lokacija-sekcija{
    margin: 200px 80px;
}

.lokacija-grid{
    display:flex;
    gap:40px;
    align-items:stretch;
}

.lokacija-slika{
    flex:1;
}

.lokacija-slika img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:20px;
}

.lokacija-text{
    flex:1;
    background:#1E2A75;
    color:white;
    padding:60px 40px;
    border-radius:20px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.lokacija-text h2{
    font-size:40px;
    margin-bottom:30px;
    font-family:"Poppins", sans-serif;
}

.lokacija-text p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:40px;
    font-family:"Mulish", sans-serif;
}

.lokacija-btn{
    display:inline-block;
    padding:12px 25px;
    background:white;
    color:#1E2A75;
    text-decoration:none;
    border-radius:10px;
    font-family:"Mulish", sans-serif;
    transition:0.3s;
}

.lokacija-btn:hover{
    background:#4A5FD1;
    color:white;
}



@media (max-width:900px){

.lokacija-sekcija{
    margin:150px 40px;
}

.lokacija-grid{
    flex-direction:column;
}

.lokacija-text{
    padding:40px 20px;
}

.lokacija-text h2{
    font-size:32px;
}

}

@media (max-width:480px){

.lokacija-sekcija{
    margin:120px 20px;
}

.lokacija-text h2{
    font-size:26px;
}

.lokacija-text p{
    font-size:16px;
}

}








.videoP-section {
    position: relative;
    margin: 120px 80px;
    border-radius: 20px;
    overflow: hidden;
}

.videoP-section video {
    width: 100%;
    display: block;
}

.videoP-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}



videoP {
    filter: brightness(0.9);
}

























