:root {
    --gold: #d56464;
    --bold-gold: #b4924d;
    --white: #ffffff;
    --gray: #d56464;
    --dark-gray: #1F1E1E;
    --gray-menu-back: #2F2F2F;
    --dark-gray-2: #292829;
    --gray-font: #d56464;
    --pink: #cfb4b4;
}
.listService {
    padding-left: 0px;
}
a{
    text-decoration: none;
}
img {
    pointer-events: none;
}
body {
    font-family: 'Oxanium';
    font-size: 16px;
    background-color: var(--dark-gray);
    padding: 0;
    margin: 0;
}
header {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    height: 100px;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    top:0px;
    background-color: rgba(0,0,0, 1);
    border-top: 1px solid var(--gold);
    width: calc(100% - 10px);
}

header.scrolled{
    background-color: rgba(0,0,0, 1);
    backdrop-filter: blur(90px);
    mask: linear-gradient(black 60%, black 90%, transparent);
    -webkit-mask: linear-gradient(black 60%, black 90%, transparent);
    mask-image: linear-gradient(black 60%, black 90%, transparent);
    border-top: 1px solid var(--gold);
    width: calc(100% - 10px);
}
#menu{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1;
    justify-content: right;
    margin-right: 50px;
    height: 100px;
    align-items: center; /* Align children vertically in the center */
}
#menu ul li::marker {
    color: var(--gold);
    font-size: 20px;
}
#menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    height: auto; /* Ensure it doesn't stretch to fill the nav height */
}
#menu ul li{
    text-align: center;
    margin-left: 20px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
}
#menu ul li:hover{
    color: var(--gold);
    cursor: pointer;
}
#menu ul li.active {
    border-bottom: 1px solid var(--gold);
}
#menu ul li.active {
    color: var(--white);
    font-weight: bold;
}
#menu #close-icon {
    color: var(--white);
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}
.main {
    background-image: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ), url(images/background.png);
    background-size: cover;
    background-repeat: no-repeat;  
    background-position: center;
    mix-blend-mode: exclusion;
    width: 100vw;
    height: calc(100dvh - 1px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-transition: all 3s linear;
    -moz-transition: background-image 3s linear;
    -o-transition: background-image 3s linear;
    transition: background-image 3s linear;
    border-top: 1px solid var(--gold);
}
.main.main-logged {
    width: 100vw;
    background-image: linear-gradient( rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) ), url(images/background.png);
    transition: all 3s ease-in-out;
}
#menu-icon{
    color:var(--gold);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: none;
}
#logo {
    color: var(--gold);
    font-size: 36px;
    padding: 20px;    
}
a {
    text-decoration: none;
}

.login {  
    position: fixed;
    top: 50%;
    left: 50%;    
    transform: translate(-50%, -50%);       
    border: solid 1px var(--gold);
    border-radius: 20px;
    box-shadow: 0px 0px 5px var(--gold);
}
.login #login-blur{
    border-radius: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: 100%;
}
.login #login-content{    
    display: flex;
    flex-direction: column;
    align-items: center;      
    padding: 20px 50px;
    z-index: 2;
    position: relative;
}
.login #login-content a, i{    
    margin-left: 5px;
    color: var(--gold)
}
.login h2{
    color: var(--gold);
    font-weight: bold;
}
.login #password {
    width: 80%; /* Make all input fields 100% width */
    box-sizing: border-box; /* Include padding and border in the width */

    position:relative;
}
.login #password .password-icon{
    position:absolute;
    right:15px;
    top:16px;
    padding:9px 8px;
    color:#aaa;
  }
.login input{
    width: 80%; /* Make all input fields 100% width */
    box-sizing: border-box; /* Include padding and border in the width */
    border: solid 1px var(--gold);
    border-radius: 20px;
    padding: 7px 30px;
}
.login input[type="password"] {
    width: 100%;
    background-color: transparent;
    color: var(--gold);
    margin-bottom: 20px;
    padding-right: 50px;
}
.login input[type="password"]:focus, .login input[type="password"]:valid {
    outline: white solid 1px;
    border-color:var(--gold);
    box-shadow:0 0 8px 0 var(--gold);
}
.password-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px; /* Adjust icon size as needed */
    height: 3px;
    background-image: url('images/lock.png'); /* Path to your icon image */
    background-size: cover;
    background-position: center;
}
.login input[type="submit"] {
    background-color: var(--gold);    
    color: black;
    margin-bottom: 10px;
    font-weight: bold;
}
.login input[type="submit"]:hover {
    border-color:var(--gold);
    box-shadow:0 0 8px 0 var(--gold);
}
.login input[type="submit"]:active {
    background-color: var(--bold-gold);
    border: solid 1px var(--bold-gold);
}
.login p {
    color: var(--gold);
    font-size: 12px;
}

.error{
    color: red;
    font-weight: bold;
    font-size: 12px;
    height:15px
}

/* side menu*/
.content{
    display: flex;
}
#content{
    position: absolute;
    top:0;
    transition: all 1s ease;
    overflow-y: auto;
    height: 100dvh;
    scroll-behavior: smooth;
}
#sideMenu{
    background: var(--dark-gray);
    border-right: var(--dark-gray-2) solid 2px;
    box-shadow: -15px -1px 20px -1px #fff;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration:none;
}
#sideMenu ul{
    list-style:none;
    padding:0;
    margin:0;
}
#sideMenu ul li{
    margin: 15px 0px;
}
#sideMenu ul li a img{
    width: 40px
}

/* main text */
.page{
    color:var(--white);
    font-size:16px;
    padding-top: 100px;
    min-height: 100dvh;   
    box-sizing: border-box;
}
.pageTitle {
    display: none;
}

#Home{
    display: flex;
}
#Home #name, #Services #name, #About #name {
    margin: auto;
    flex:1;
    text-align: center;
}
#Home #name div,#Services #name div, #About #name div{
    text-align: left;
    display: inline-block;
}
#Home #name p, #Services #name p, #About #name p{  
    margin: 10px 0px;
}
#Home #name p:first-child, #Services #name p:first-child, #About #name p:first-child{
    margin-top: 15px;
    margin-bottom: 0px;
    font-size: 28px;
    font-weight: bold;
}

#Home #name p:nth-child(2), #Services #name p:nth-child(2), #About #name p:nth-child(2){
    color: var(--gray-font);
    margin: 0px;
}

#Home #intro {
    justify-content: center;
    text-align: left;
    margin: auto;
    flex:1;

}
#Home #title{
    font-size: 30px;
    text-align: left;
}
#Home #title p{
    font-size: 30px;
    text-align: left;
    line-height: 10px;
}
#Home #title h1{
    margin: 0px  0px 10px 0px;
}
#Home #infoText{
    text-align: left;
    color: var(--gray-font);
    width: 70%;
    font-weight: bold;
}



#Services #intro{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--gold);
    margin: 10px;
    margin-right: 0px;
    border-radius: 10px;
    font-size: 18px;
    background: black;
    padding: 40px 0px;
    margin-bottom: 30px;
}
#Services #intro p{
    margin: 20px;
    font-size: 16px;
    text-align: justify;
}
#Services #intro ul{
    display: flex;
    flex-wrap: wrap; /* Enables wrapping */
    gap: 10px; /* Optional: Adds space between items */
    padding: 0;
    margin: 0;
    list-style-type: none; /* Removes default list styling */
    justify-content: center;
}
#Services #intro li {
    border: solid 1px var(--gold);
    background: var(--gold);
    list-style: none;
    text-align: center;
    white-space: nowrap; /* Prevents text wrapping */
    padding: 5px 10px; /* Optional: Padding for better appearance */
    border: 1px solid #ccc; /* Optional: Border for better appearance */
    font-size: 16px;
    border-radius: 5px;
}
#Services #intro #infoTextAbout{
    text-align: center;
}
#Services #serviceWrapper{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}
#Services #name {
    grid-area: name; /* Title spans across both columns */
    text-align: center;
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.service{    
    display: flex;
    font-weight:100;
    border: 1px solid var(--gold);
    border-radius: 10px;
    background: black;
    margin:10px 10px;
    flex-basis: 40% !important;
    margin-right: 0px;
}

.service .mainService {
    display: flex;
    flex-direction: column;
}
.service .imgService{
    flex: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 10px;
}
.service .mainService > div {
    display: flex;
    flex-direction: column;
    margin: 10px 20px 0px 10px;
}
.service .titleServices{
    color:var(--gold);
    font-weight: bold;
    text-align: left;
    height: 50px;
    margin-bottom: 0px;
}
.service .textServices{
    text-align: left;
    font-size: 14px;
}
.service img{
    height: clamp(200px, 100%, 100%);
    max-width: 200px;
    aspect-ratio: 2 / 2;
    object-fit: cover;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.5s ease-out;
    will-change: transform; /* Optimizes for smoother scaling */
}
.service .lineServices{
    margin: 10px 0;
    width: 200px;
    border:0;
    border-top: 1px solid var(--gold);
}
#intro .listService{
    text-align: left;
    margin: 0px;
    padding-bottom: 20px;
}
#intro .listService ul li{
    font-size: 20px;
}






.container {
    width: 80%;
    text-align: center;
}

button {
    outline: none;
    height: 31px;
    text-align: center;
    border-radius: 40px;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: black;
    letter-spacing: 1px;
    text-shadow: 0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s ease;
}

button:hover {
    color: white;
}

button:active {
    letter-spacing: 2px;
}

button:after {
    content: "SUBMIT";
}

.button-logged:after {
    content: none !important;
}

.onclic {
    background: var(--white);
    width: 31px;
    border-color: var(--gray);
    border-width: 3px;
    font-size: 0;
    border-left-color: var(--gold);
    animation: rotating 2s 0.25s linear infinite;
}

.onclic:hover {
    color: var(--white);
}

.validate {
    font-size: 13px;
    color: white;
    background: var(--gold);
    /* Add background image */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}
.validate-error {
    font-size: 13px;
    background: var(--gold);
    /* Add background image */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}


@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}



/* width */
::-webkit-scrollbar {
    width: 14px;    
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: transparent;
    
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--gray-font);
    border-radius: 5px;
    border: 4px solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #888;
    border-radius: 5px;
    border: 4px solid transparent;
    border-radius: 8px;
    background-clip: padding-box;
  }

#About {
    display: flex;
    align-items: center;
}
#About .AboutWrapper{
    height: fit-content;
    display: flex;
}
#About #imageWrapper{
    flex:1;
    position: relative;
    margin: 20px;
    border-radius: 10px;
    border: solid 1px var(--gold);
}
#About #imageWrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    
}
#About #infoTextAbout {
    flex:2;
    text-align: justify;
    margin: 10px;
    align-items: center;
    display: flex
;
}


#Price{    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
#Price .box:first-child{
}
#Price .priceText{
    width: 80%;
}
#Price .priceText .priceTitle{
    font-size: 25px;
    font-weight: bold;
}
#Price .priceText ul li{
    text-align: justify;
    margin: 15px;
    font-weight: 100;
}
#Price .priceText ul li::marker{
    color: var(--gold);
    font-size: 20px;
}
.box{
    background: black;
    border: 1px solid var(--gold);
    border-radius: 5px;
    color: var(--gold);
    font-weight: bold;
    padding: 20px 50px;
    max-width: 70%;
    margin-bottom: 20px;
    text-align: justify;
}
.box img{
    width: 40px;
    display: inline-block;
    vertical-align: middle; /* Align the image vertically with the text */
    margin-right: 5px; /* Adjust as needed */
}
.box p{
    width: 80%;
    text-align: center;
}

#Contact{    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
#Contact .boxContact{
    margin-top: 105px;
}
#Contact .boxContact .box{
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    padding: 5px clamp(20px, 5%, 50px);
}
#Contact .box a{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}
#language {
    border-radius: 5px;
    background: var(--gold);
    color: var(--white);
}
#language::after{
    content: '';
}





/* Medium devices such as tablets (768px and up) */
@media only screen and (max-width: 843px) {
    #logo{
        font-size: 2rem;
    }
    #content{
        overflow-x: hidden;
        scrollbar-gutter: stable both-edges;
    }
    #menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: none; /* Hidden by default */
    }
    #menu.active {
        display: flex; /* Show when active */
    }
    #menu #close-icon {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
        color: var(--gold);
    }

    #menu-icon {
        display: block; /* Show menu icon */
    }
    #menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #menu ul li{
        text-align: center;
        margin: 5px;
        padding-bottom: 8px;
    }
    #menu ul li a{
        padding: 10px;
        color: var(--gray);
        text-decoration: none;
        font-size: 20px;
    }
    #menuul li a:hover{
        color: var(--gold);
    }
    #menu ul li.active {
        border-bottom: 1px solid var(--gold);
    }
    #menu ul li.active a {
        color: var(--white);
        font-weight: bold;
    }
    #close-icon {
        display: block; /* Show menu icon on small screens */
        position:absolute;
        top: 25px;
        right:30px;
    }
    header {
        height: 63px;
        padding-bottom: 3px;
    }
    .page{
        padding-top: 100px;
    }
    .pageTitle{
        margin-left: 20px;
        border-bottom: solid 1px var(--gold);
        max-width: 50%;
        padding-bottom: 10px;
        font-size: 25px;
        align-self: normal;
        display:none;
    }
    header nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    header nav ul li{
        text-align: center;
        margin-left: 0px;
        padding-bottom: 8px;
        margin-bottom: 20px;
    }
    #menu-icon{
        color:var(--gold);
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        z-index: 4;
        display: block;
        position:absolute;
        right: 20px; 
    }
    #sideMenu{
        display: none;
    }
    .main.main-logged{
        width: 100vw;
    }
    header.scrolled{
        mask: none;
        -webkit-mask: none;
        mask-image: none;        
    }
    #content{
        overflow-x: clip;
    }
    .page{
        flex-direction: column;
    }
    #Home #name{     
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-right: 20px;
        display: none;
    }
    #Home #intro{
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    
    #Home #title h1 {
        margin: 0px;
        font-size: 40px;
    }
    #Home #title p {
        font-size: 1.5rem;
    }
    #Home #infoText{
        font-size: clamp(14px, 3vw, 20px);
        text-align-last: left;
        hyphens: auto;
        text-align: left;
        align-self: flex-start;
        margin-left: 30px;
    }
    #Services {
        grid-template-columns: 1fr;
    }
    #Services .service{
        flex-direction: column;
        margin: auto;
        margin-top: 20px;
        width: 90%;
        font-size: 14px;
    }
    #Services .service .listService li{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 5px;
    }
    .service .mainService > div {
        margin: 0px 10px;
    }

    #Services #intro{
        margin: auto;
        margin-top: 20px;
        width: 90%;
    }
    #Services #serviceWrapper{
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100%, 500px));
    }
    
    #Home #title {
        font-size: 25px;
        text-align: left;
        align-self: flex-start;
        margin-left: 30px;
    }
    #Services .service img{
        max-width: 100%;
        aspect-ratio: 2 / 1;
        opacity: 1;
        height: 150px;
        object-position: 0% 30%;
    }
    #Services #intro li {
        white-space: normal;
        margin: 0 10px;
        width: 80%;
    }
    .service ul li {
        text-align: left;
    }
    
    .service .textServices {
        font-size: clamp(14px, 3vw, 20px);
        text-align: left;
        text-align-last: left;
        hyphens: auto;
        letter-spacing: -0.5px;
        margin-top: 0px;
    }
    .service .titleServices{
        height: auto;
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    #About .AboutWrapper {
        flex-direction: column;
    }
    #About #imageWrapper{
        flex: none;
        overflow: hidden;
        height: 200px;
        position: relative;
    }
    #About #imageWrapper img{
        position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
    }

    #About #infoTextAbout {
        width: 90%;
        margin: auto;
    }
    
    #Price, #Contact{
        font-size: 12px;
    }
    #Price .priceText .priceTitle{
        font-size: 20px;
    }
    #Price .listService {
        padding-left: 20px;
    }
    #Price .priceText {
        font-size: 15px;
    }
    #Price .priceText ul li {
        margin: 0;
        text-align: left;
    }
    .box{
        text-align: left;
        margin-bottom: 20px;
        box-sizing: border-box;
        padding: 20px clamp(20px, 5%, 50px);
        max-width: 90%;
    }
    #Contact .boxContact{
        max-width: 90%;
    }
    #Contact .boxContact .box {
        padding: 5px clamp(20px, 5%, 50px);
    }
    #Contact .boxContact .box{
        margin: 10px 0px;
    }
}

@media only screen and (max-width: 400px) {
    #logo {
        font-size: 7vw;
    }
    #Home #title {
        font-size: 25px;
        text-align: left;
        align-self: flex-start;
        margin: 0px;
        margin: 0px auto;
        width: 90%;
        word-wrap: break-word; /* Allow long words to break if necessary */
    word-break: break-word; /* Fallback for older browsers */
    hyphens: none; /* Disable automatic hyphenation */
    overflow-wrap: break-word; /* Prevents breaking lines with hyphens */
    }
    #Home #title p {
        font-size: 6vw
    }
    #Home #infoText {
        font-size: clamp(14px, 3vw, 20px);
        text-align-last: left;
        hyphens: auto;
        text-align: left;
        align-self: flex-start;
        margin-left: 0px;
        margin: 0px auto;
        width: 90%;
        word-wrap: break-word; /* Allow long words to break if necessary */
    word-break: break-word; /* Fallback for older browsers */
    hyphens: none; /* Disable automatic hyphenation */
    overflow-wrap: break-word; /* Prevents breaking lines with hyphens */
    }
}
