@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root
{
    --accent-color: #FE7743;
    --secondary-color: #1E3E62;
}


*{
    margin: 0;
    padding: 0;
    font-family: Poppins, serif;
    cursor: none;
}

@font-face{
    font-family: 'japan';
    src: url('fonts/KaoriGelBold.ttf');
}

@font-face{
    font-family: 'japan2';
    src: url('fonts/Sdasian-WyDon.ttf');
}


#c-cursor
{
    width: 30px;
    height: 30px;
    position: absolute;
    position: fixed;
    z-index: 100;
    pointer-events: none;
    object-position: top center;
    object-fit: cover;
}

body
{
    font-family: Poppins, serif;
    min-height: 100vh;
    overflow-x: hidden;
}


header
{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: start;
    gap: 30px;
    position: relative;
    height: 370px;
}

.nav-content
{
    width: 93%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-content .desktop-nav
{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 81px;
    font-family: 15px;
}


.nav-content .desktop-nav li a
{
    padding: 7px 0;
    text-decoration: none;
    position: relative;
    color: white;

}

.nav-content .desktop-nav li a:hover, .nav-content .desktop-nav li a.active
{
    color: var(--accent-color);
    font-weight: 500;
}

.nav-content .desktop-nav li a::before, .nav-content .desktop-nav li a.active::before
{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    bottom: 0;
    transition: width .3s ease-in-out;
}

.nav-content .desktop-nav li a:hover::before, .nav-content .desktop-nav li a.active::before
{
    width: 100%;
}

.nav-content .login
{
    width: 192px;
}

.nav-content .login a
{
    width: 100%;
    text-decoration: none;
}

.nav-content .login button
{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 19px;
    justify-content: center;
    padding: 10px 0;
    border-radius: 5px;
    background-color: var(--accent-color);
    color: white;
    font-weight: 500;
    text-decoration: none;
    border: none;;
}


header > img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
    object-fit: cover;
    object-position: center center;
    z-index: -2;

}

header .colored
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e3e623b;
    z-index: -1;
    backdrop-filter: blur(10px);
}


@keyframes hero-animation
{
    0%{
        transform: translate(0px, 0);
    };


    100%{
        transform: translate(15px, 12px);
    }
}


header .inside-hero
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 30px;
}


header .inside-hero .description
{
    max-width: 602px;
    text-align: center;
    color: white;
    margin-top: 10px;
}


header .inside-hero .title
{
    font-family: 'japan2', serif;
    font-size: 50px;
    color: white;
}

header .inside-hero .title span
{
    font-family: 'japan2', serif;
}


header .inside-hero .buttons, .special-event-card .buttons
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

header .inside-hero .buttons a, .special-event-card .buttons a
{
    width: 235px;
    text-decoration: none;
}


header .inside-hero .buttons a button, .special-event-card .buttons a button
{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 10px;
}


header .inside-hero .buttons a:last-child button,
.special-event-card .buttons a:last-child button
{
    background-color: var(--accent-color);
    border: none;
    color: white;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
}


header .inside-hero .buttons a:first-child button,
.special-event-card .buttons a:first-child button

{
    background-color: transparent;
    border: solid 2px white;
    color: white;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
}

header .inside-hero .buttons a button i,
.special-event-card .buttons a button i
{
    font-size: 20px;
}


main
{
    margin-top: 120px;
    width: 93%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin-inline: auto;
    gap: 90px;
    position: relative;
}

.e-shape
{
    width: 600px;
    height: 100vh;
    border-radius: 34% 60% 60% 22%;
    position: fixed;
    background-color: rgba(254, 120, 67, 0.129);
    filter: blur(70px);
    z-index: -20;
    top: 0px;
    left: 0px;
}

.e-shape2
{
    width: 600px;
    height: 300px;
    border-radius: 34% 60% 60% 22%;
    position: absolute;
    background-color: rgba(254, 120, 67, 0.129);
    filter: blur(70px);
    z-index: -20;
    top: 0px;
    right: -100px;
}

main .title, main .title span
{
    font-size: 40px;
    font-family: "japan2";
    font-weight: 500;
    color: var(--secondary-color);
}

.next-event
{
    height: 500px;
    width: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
}


main .desc
{
    max-width: 673px;
    color: var(--secondary-color);
    text-align: center;
}

.special-event-card
{
    width: 100%;
    height: 300px;
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

.special-event-card img
{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    min-width: 200px;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 24.7% 100%);
}

.special-event-card .left-side
{
    max-width: 50%;
    padding: 20px;
    display: flex;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    gap: 30px;
    width: 45%;
}

.special-event-card .left-side .event-head
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.special-event-card .left-side .event-head .event-title
{
    font-size: 32px;
    color: var(--accent-color);
    font-weight: 500;
}
.special-event-card .left-side .event-head .event-delay
{
    font-size: 20px;
    color: white;
}

.special-event-card .left-side .event-description
{
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.special-event-card .buttons
{
    justify-content: start;
}

.discorver
{
    background: linear-gradient(270deg, rgba(254, 119, 67, 0.9) 0%, rgba(255, 165, 0, 0.9) 100%);
    padding: 30px;
    height: 270px;

}

.discorver .disc-container
{
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 30px;
}

.disc-container .title
{
    color: white;
}

.disc-container .description
{
    color: white;
    text-align: center;
    max-width: 808px;
    font-size: 15px;
}


.shower
{
    height: 400dvh;
    width: 100%;
    position: relative;
}

.shower .img-container
{
    width: 100%;
    height: 100dvh;
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
}

.e-bottom
{
    width: 100%;
    height: 500px;
}


.modal
{
	display: none;
	transition-behavior: allow-discrete;
	transition-property: display opacity;
	transition-duration: .4s;
	background-color: #1e3e624b;
	opacity: 0;
}

.modal.show
{
	display: flex;
    opacity: 1;
	/* @starting-style{
        transform:translateX(-100%) ;
	} */
}


.modal > .form
{
	transition-behavior: allow-discrete;
	transition-property: display opacity;
	margin-top: 50px;
	transition-duration: .4s;
	transform: translateX(-20vw);
    opacity: 0;
}


.modal .ajust
{
	margin-top: 50px;
}


/*
.modal .ajustContract
{
	margin-top: 10px;
} */


.modal.show > .form
{
	transform: translateX(0);
    opacity: 1;
	@starting-style{
		transform: translateX(20vh);
        opacity: 0;
	}
}

[x-cloak] { display: none !important; }
