@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&family=Gotu&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cinzel';
    color: #FCF7EC;
}

html {
    scroll-behavior: smooth;
}

body {
background-color: #1C0000;
width: 100vw;
}

/*--horizontal menu--*/
header {
    z-index: 998;
    position: fixed;
    display: flex;
    width: 100vw;
    padding-left: 76px;
    padding-right: 76px;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #fcf7ec48;
}

header .logo {
    height: auto;
    width: 312px;
    margin-left: -10px;
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin-left: 84px;
    height: 84px;
}

header ul li a {
    display: flex;
    height: 100%;
    text-decoration: none;
    align-items: center;
}

header ul li a:hover {
    text-decoration: underline;
    text-shadow: 1px 1px 20px #e4aaaa;
}

/*--end of horizontal menu--*/

/*--home page--*/

.home {
    position: relative;
    height: auto;
    width: 100vw;
    overflow: hidden;
}

.home .bg{
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.home .heading {
    z-index: 2;
    position: absolute;
    text-align: center;
    width: 100%;
    top: calc(50% - 50px);
    left: 50%;
    transform: translate(-50%,-50%);
}

.home .heading h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0.4rem;
    
}

.home .heading h3 {
    font-size: 40px;
    margin-top: -12px;
    letter-spacing: .2rem;
    font-weight: normal;
}

.home .link {
    position: absolute;
    z-index: 2;
    margin-top: -150px;
    left: 90px;
    display: flex;
    gap: 40px;
}

.home .link a{
    cursor: pointer;
    width: 200px;
    height: 50px;
    line-height: 50px;
    border-radius: 20px;
    border: none;
    font-size: 15px;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: .15em;
    transition: 0.3s ease-in-out;
}

.home .link a:hover {
    letter-spacing: .2em;
    box-shadow: 0 0 50px 1px #F9CB72;
}

.home .link a.first {
    background-color: #F9CB72;
    color: #390000;
    font-weight: 700;
}

.home .link a.second {
    background-color: #fcf7ec23;
    border: 3px solid #F9CB72;
    color: #F9CB72;
    font-weight: 600;
}

/*--sub homepage sliders-*/
.slides {
    width: 500%;
    height: 100%;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 1s;
}

.slide img {
    width: 100%;
    height: 100%;
}

.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -130px;
    right: 123px;
    display: flex;
    justify-content: right;
}

.manual-btn {
    border: 2px solid #F9CB72;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 40px;
}

.manual-btn:hover {
    background: #F9CB72;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -20%;
}

#radio3:checked ~ .first {
    margin-left: -40%;
}

#radio4:checked ~ .first {
    margin-left: -60%;
}

.navigation-auto {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -40px;
}

.navigation-auto div {
    border: 2px solid #F9CB72;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}

.auto-btn1 {
    animation: auto 16s infinite;
}

.auto-btn2 {
    animation: auto 16s infinite;
    animation-delay: 4s;
}

.auto-btn3 {
    animation: auto 16s infinite;
    animation-delay: 8s;
}

.auto-btn4 {
    animation: auto 16s infinite;
    animation-delay: 12s;
}

@keyframes auto {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

/*--end of home page--*/

/*--service page--*/

.service {
    position: relative;
    width: 100vw;
    height: 54vw;
    justify-content: center;
}

.service .bg {
    position: absolute;
    width: 100vw;
}

.service .bg img {
    position: absolute;
    width: 100vw;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.service .service-title {
    position: absolute;
    top: 83px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    letter-spacing: .49em;
}

.carousel {
    position: relative;
    display: flex;
    width: 92vw;
    margin:auto;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.wrapper {
    position: relative;
    display: flex;
    width: 86vw; /* Fixed width for the carousel */
    margin: auto;
    gap: 2vw;
    overflow-x: scroll;
    
}

.wrapper::-webkit-scrollbar {
    display: none;
}

.card-list {
    width: 86vw;
    display: flex;
    gap: 2vw;
    flex: none;
}

.card-list .card-item {
    width: 20vw;
    height: 32vw;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
}

.card-list .card-item .card-des {
    width: 20vw;
    height: 32vw;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
    backdrop-filter: brightness(60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.card-list .card-item:hover .card-des {
    width: 16vw;
    height: 28vw;
    background-color: rgba(255, 255, 255, .3);
    backdrop-filter: blur(15px);
    
    border-radius: 10px;
}

.card-item .card-des h3, .card-item .card-des li{
    color: #390000;
}

.card-item .card-des h3 {
    font-size: 1.8vw;
    width: 14vw;
    color: #ffffff;
    text-transform: uppercase;
}

.card-item:hover .card-des h3 {
    width: 12.5vw;
}

.card-item:hover .card-des h3 {
    font-size: 1.5vw;
    color: #390000;
    text-transform: uppercase;
}

.card-item .card-des ul {
    margin-top: 0px;
    font-size: .65vw;
    list-style: none;
    letter-spacing: .2em;
    line-height: 0px;
    display: none;
    opacity: 0;
    transition: line-height 0.3s ease-in-out;
}

.card-list .card-item:hover .card-des ul {
    display: block;
    line-height: 2.1vw;
    margin-top: 2.8vw;
    opacity: 1;
}

.card-item .card-des li {
    font-family: 'Alata';
    font-size: x-small
}


/*--END OF service page--*/

/*--arrows page--*/
.arrow {
    width: 30px;
    height: 30px;
    border: solid #F9CB72;
    border-width: 0 8px 8px 0;
    display: inline-block;
    padding: 3px;
    cursor: pointer;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
  
.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

/*--END OF arrows page--*/

/*-- DETAILS page --*/

.details {
    padding-top: 80px;
    width: 100vw;
}

.details h1 {
    text-align: center;
    color: #F9CB72;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 300;
    justify-items: center
}

.inclusion {
    width: 95vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.inclu-details {
    margin-top: 50px;
}

.inclusion .inclu-details .slider {
    width: 95vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inclu-details .inclu-items {
    width: 80vw;
    display: flex;
    overflow-x: scroll;
}

.inclu-items::-webkit-scrollbar {
    display: flex;
}

.inclu-details h3 {
    text-align: center;
    font-weight: 200;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-size: 25px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.inclu-details .inclu-items img {
    width: 30rem;
    max-width: 400px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 20rem;
    margin-right: 20rem;
    justify-content: center;
}

/*--    END of details page --*/

/*--GALLERY page--*/

.gallery {
    display: block;
    width: 100vw;
}

.gallery .flexmain {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.flexmain .flexsub {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.flexmain .sub {
    display: flex;
    gap: 30px;
}

.flexmain .subsub {
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.flexmain img {
    position: relative;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: .3s ease-in-out;
}

.flexmain img:hover {
    width: 110%;
}

.flexmain .img1 {
    width: 548px;
    height: 522px;
    overflow: hidden;
}

.flexmain .img2 {
    width: 296px;
    height: 246px;
    overflow: hidden;
}

.flexmain .img3 {
    width: 873px;
    height: 303px;
    overflow: hidden;
}

.flexmain .img4 {
    width: 290px;
    height: 412px;
    overflow: hidden;
}

/*-- end of GALLERY page--*/

/*--CONTACT page--*/
.contact {
    position: relative;
    justify-content: center;
    align-items: center;
    height: 500px;
    width: 100vw;
    z-index: 1;
    overflow: hidden;
}

.contact img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1366px;
    height: 848px; 
    z-index: -1;
    pointer-events: none;
}

.contact .contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #ffffff44;
    backdrop-filter: blur(10px);
    width: 450px;
    justify-content: center;
    text-align: center;
    padding: 50px;
}

.contact .contents h1, .contact .contents p {
    color: #390000;
}

.contact .contents h1 {
    font-size: 40px;
    letter-spacing: .1em;
}

.contact .contents hr {
    border-color: #390000;
}

.contact .contents p {
    font-weight: 700;
    font-size: 15px;
    margin: 20px;
}

.contact .contents a {
    display: block;
    width: 220px;
    height: 50px;
    line-height: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #ffffffb0;
    color: #390000;
    border-radius: 5px;
    text-decoration: none;
    letter-spacing: .1em;
    font-weight: 600;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.contact .contents i {
    color: #390000;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.contact .contents a:hover {
    color: #FCF7EC;
    background-color: #390000;
}

.contact .contents .blue:hover {
    background-color: rgb(0,132,255); opacity: 0.8;
}

.contact .contents a:hover i {
    color: #FCF7EC;
}

.contact .contents .red:hover {
    background-color: rgb(199,22,16); opacity: 0.8;
}