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

* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}

a {
    z-index: 60;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 80%;
    z-index: 10;
}

.shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(217, 217, 217);
    background: linear-gradient(
        180deg,
        rgba(217, 217, 217, 0) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.input-container {
    display: flex;
    flex-direction: column;
}

.input-container label {
    color: white;
}

.input-container input {
    height: 40px;
    background-color: #d9d9d9;
    color: black;
    border-radius: 6px;
    font-size: 18px;
    width: 100%;
    border: none;
    outline: none;
    padding: 6px;
    padding-right: 10px;
    padding-left: 10px;
}

.input-container select {
    height: 40px;
    background-color: #d9d9d9;
    color: black;
    border-radius: 6px;
    font-size: 18px;
    width: 100%;
    border: none;
    outline: none;
    padding: 6px;
    padding-right: 10px;
    padding-left: 10px;
}

.form-submit {
    color: white;
    font-size: 18px;
    height: 40px;
    width: 100%;
    font-weight: bold;
    background-color: #158f01;
    outline: none;
    border: none;
    border-radius: 6px;
}

.input-container textarea {
    min-height: 80px;
    background-color: #d9d9d9;
    color: black;
    border-radius: 6px;
    width: 100% !important;
    border: none;
    outline: none;
    padding: 6px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 20px;
}

@media screen and (max-width: 1024px) {
    .container {
        width: 90%;
    }
}

/* NAVBAR */

.nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.top-nav {
    display: flex;
    justify-content: center;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.2);
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-nav-left__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-nav-left__item * {
    color: white;
}

.top-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav {
    height: 160px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item .line {
    width: 0;
    position: absolute;
    bottom: -10px;
    background-color: white;
    height: 1px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease;
}

.nav-item:hover .line {
    width: 80%;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-items a {
    font-weight: bold;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.hamburger {
    display: none;
    color: white;
    transform: scale(1.5);
}

.mobile-nav {
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: fixed;
    top: 0;
    right: -2000px;
    transition: 0.3s ease;
}

.mobile-nav.active {
    right: 0px;
}

.mobile-nav-x {
    margin-top: 20px;
    display: flex;
    width: 100%;
    padding-right: 40px;
    justify-content: flex-end;
}

.mobile-nav-x svg {
    transform: scale(1.5);
}

.mobile-nav a {
    color: black;
    text-decoration: none;
    font-size: 24px;
}

@media screen and (max-width: 850px) {
    .nav-items {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* HEADER */

.fake-header {
    width: 100%;
    height: 100vh;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.header .swiper {
    width: 100%;
    height: 100%;
}

.header .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.header .swiper-pagination-bullets {
    margin-bottom: 30px;
}

.header .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background-color: #d9d9d9;
    opacity: 1;
}

.header .swiper-pagination-bullet-active {
    background-color: #fd7a31;
}

.header .swiper-slide {
    display: flex;
    justify-content: center;
}

.header .swiper-slide .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    margin-bottom: 200px;
    gap: 20px;
}

.header.malatya .swiper-slide .container {
    margin-bottom: 100px;
}

.header .swiper-slide * {
    color: white;
}

.header .swiper-slide h2 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.header .swiper-slide p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.header .swiper-slide a {
    font-size: 20px;
    font-weight: bold;
    padding: 16px;
    padding-right: 60px;
    padding-left: 60px;
    text-decoration: none;
    border-radius: 45px;
    background-color: #fd7a31;
    margin-top: 30px;
    transition: 0.3s ease;
    text-align: center;
}

.header .swiper-slide a:hover {
    background-color: #fd7024;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
        rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
        rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.header.malatya a {
    width: 500px;
}

.header.malatya a.secondary {
    background-color: white;
    color: #fd7a31;
}

.header.malatya .container {
    gap: 0px;
}

@media screen and (max-width: 600px) {
    .header.malatya a {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .header .swiper-slide h2 {
        font-size: 40px;
    }

    .header .swiper-slide p {
        font-size: 16px;
    }

    .header .swiper-slide a {
        font-size: 16px;
    }

    .top-nav-left__item p {
        display: none;
    }
}

@media screen and (max-width: 400px) {
    .header .swiper-slide h2 {
        font-size: 36px;
    }

    .header .swiper-slide p {
        font-size: 14px;
    }

    .header .swiper-slide a {
        font-size: 14px;
    }
}

/* MOUSE */

.mouse {
    width: 100%;
    height: 40vh;
    background-color: #bb5218;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mouse * {
    color: white;
}

.mouse-bold {
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
}

.mouse-thin {
    font-size: 22px;
    font-weight: 300;
}

/* ABOUT US */

.about-us {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #bb5218;
    position: relative;
}

.about-us h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.about-us .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.swiper-container {
    width: 100%;
}

.about-us .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.about-us .swiper-slide * {
    text-align: center;
    color: white;
}

.about-us .swiper-slide h4 {
    font-size: 22px;
    font-weight: bold;
}

.about-us .swiper-slide p {
    font-weight: 300;
}

@media screen and (max-width: 600px) {
    .about-us h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .about-us h2 {
        font-size: 36px;
    }
}

/* EXPLORE */

.explore {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #bb5218;
    position: relative;
}

.explore h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.explore .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    width: 100%;
}

.swiper-container {
    width: 100%;
}

.explore .swiper-slide {
    border-radius: 60px;
    transform: scale(0.8);
    position: relative;
}

.explore .swiper-slide-active {
    transform: scale(1);
}

.explore .swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-about .swiper-slide img {
    width: 64px;
    height: 64px;
}

@media screen and (max-width: 600px) {
    .explore h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .explore h2 {
        font-size: 36px;
    }
}

/* CLASSES */

.classes {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #bb5218;
    position: relative;
}

.classes .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.classes h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.class-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.class-item {
    padding: 20px;
    border-radius: 25px;
    background-color: #6b2a06a8;
}

@media screen and (max-width: 600px) {
    .classes h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .classes h2 {
        font-size: 36px;
    }
}

/* CONTACT */

.contact {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    background-color: #bb5218;
    position: relative;
}

.contact .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.contact h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item p {
    font-weight: 300;
    font-size: 24px;
    color: white;
}

@media screen and (max-width: 600px) {
    .contact h2 {
        font-size: 40px;
    }
    .contact-item p {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .contact h2 {
        font-size: 36px;
    }
    .contact-item p {
        font-size: 16px;
    }
}

/* CONTACT US */

.contact-us {
    width: 100%;
    min-height: 100vh;
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    justify-content: center;
    background-color: #bb5218;
    position: relative;
}

.map {
    width: 600px;
    height: 450px;
}

@media screen and (max-width: 800px) {
    .map {
        max-width: 300px;
        height: 450px;
    }
}

.contact-us .container {
    display: flex;
    gap: 200px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.contact-us-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-us-item p {
    font-weight: 300;
    font-size: 24px;
    color: white;
}

@media screen and (max-width: 1280px) {
    .contact-us h2 {
        font-size: 40px;
    }
    .contact-us-item p {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .contact-us h2 {
        font-size: 36px;
    }
    .contact-us-item p {
        font-size: 16px;
    }
}

/* FOOTER */

.footer {
    color: white;
    background-color: #bb5218;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.footer * {
    color: white;
}

.footer img {
    width: 115px;
}

.footer p,
.footer a {
    font-weight: bold;
    text-decoration: none;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left .top-nav-right {
    margin-top: 30px;
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-right-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .footer .container {
        justify-content: center;
    }

    .footer-right {
        margin-top: 70px;
    }
}

/* EXPLORE */

.packages {
    width: 100%;
    min-height: 100vh;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    background-color: #bb5218;
    position: relative;
}

.packages h2 {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.packages .container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.package-mid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.package-items {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.package-item {
    min-width: 450px;
    height: 600px;
    background-color: white;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.package-item.silver {
    filter: drop-shadow(7px 7px 11px #7d7d7d);
}

.package-item.platinum {
    filter: drop-shadow(7px 7px 11px #00f0ff);
}

.package-item.gold {
    filter: drop-shadow(7px 7px 11px #ffd600);
}

.package-item.small {
    transform: scale(0.9);
}

.package-item h4 {
    text-align: center;
    font-size: 24px;
}

.package-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.package-buy {
    border-radius: 30px;
    background-color: #158f01;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .packages h2 {
        font-size: 40px;
    }

    .package-item img {
        display: none;
    }

    .package-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 400px) {
    .packages h2 {
        font-size: 36px;
    }
}

@media screen and (max-width: 500px) {
    .package-item {
        width: 100%;
        min-width: auto;
    }
}

@media screen and (max-width: 1720px) {
    .package-items {
        gap: 50px;
    }

    .package-item.small {
        transform: scale(1);
    }
}
