:root
{
    background:white;
    
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.stardos-stencil-regular {
    font-family: "Stardos Stencil", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  .stardos-stencil-bold {
    font-family: "Stardos Stencil", system-ui;
    font-weight: 700;
    font-style: normal;
  }
  

  #backgroundVideo {
    margin-top:2vw;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: -5px;
}

#soundButton {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.main-content {
    position: relative;
    background-color: #000;
    
}
.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 20px; 
    padding: 20px;
    background-color: #393d42;
}

.gallery-item {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 550px; 
    height: 550px;
    overflow: hidden;
    
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.1); 
}
.text-gallery{
    color: white;
    text-align: center;
    font-size: 200%;
}

.main-header {
    text-align: center;
    margin-bottom: 20px;
}

.img-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.main-header h1 {
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Stardos Stencil', sans-serif;
    color: white;
    text-shadow: 0px 2px 0px black;
}

.toggle-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    font-size: 250%;
    color: white;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: gray;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.5s ease;
    z-index: 999;
}
ul{
    background-color: black;
    padding: 0;
    margin: 0;
}
ul li{
    margin: 10px 0;
    list-style: none;
    text-align: left;
    transition: all 0.3s ease-in-out;
    border-bottom: 4px solid #444; 
    position: relative;
}
ul li:hover {
    border-bottom: 4px solid transparent;
}

ul li::after {
    content: ""; 
    position: absolute;
    bottom: 0;
    left: 50%; 
    width: 0; 
    height: 4px;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    transform: translateX(-50%); 
}

ul li:hover::after {
    width: 100%; 
    background-color: #f0c040;
    left: 0; 
    transform: translateX(0);
}

ul li:last-child {
    border-bottom: none; 
}
ul li:first-child {
    margin-top: 0; 
}
ul li a{
    color: white;
    text-decoration: none;
    display: flex; 
    align-items: center;
    font-size: 16px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

ul li a i {
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
ul li:hover a{
    font-size: 20px; 
    color: #f0c040; 
    transform: translateX(40px);
}
ul li:hover a i {
    font-size: 24px; 
    color: #f0c040; 
}

.side-panel.visible {
    right: 0;
}

.main-content.shift {
    transform: translateX(-300px);
}
.move-video{
    transform: translateX(-300px);
    transition: transform 0.5s ease;
}

.social-menu {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
    background-color: black;
}

.social-menu div {
    padding: 10px;
    border-radius: 50%;
}

.social-menu i {
    color: white;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.social-menu i:hover {
    transform: scale(1.1);
}

.icon-shadow{
    text-shadow: 0px 2px black;
}

.invitacion {
/*background-image: url("../images/tino.jpg");
  margin: 20px;
  background-size: 70%;           
  background-position: center;
  background-repeat: no-repeat;*/
  min-height: 40vh;
  color: white;
  background-color: black;
  padding: 20px;
  
  
  /*-webkit-text-stroke-width: .3px;
  -webkit-text-stroke-color: black;*/
  

}
@media (min-width: 1024px) {
  .invitacion {
    /*background-size: contain;   
    background-color: white;   
    -webkit-text-stroke-width: .8px;
    background-repeat: no-repeat;*/
    font-size: 4vh;
  }
}

  .img-container .image img {
        border-radius: 60%; 
    }
@media (max-width: 600px) {
    .img-container .image {
        width: 64px !important;
        height: 64px !important;
    }

  
}
@media (max-width: 400px) {
    .img-container .image {
        width: 48px !important;
        height: 48px !important;
    }
}

@media (max-width: 1000px) {
    .main-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .img-container .image {
        width: 72px !important;
        height: 72px !important;
    }
}