*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 10px;
    scroll-behavior: smooth;
    min-width: 350px;
}

body{
    font-family: 'Open Sans', sans-serif;
}

a{
    color: white;
    text-decoration: none;
    display: inline-block;
}

.container{
    width: 85%;
    height: 100%;
    margin: auto;
    position: relative;
    z-index: 3;
}

.flex{
    display: flex;
}

#progress{
    z-index: 10;
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba( 0, 0, 0, 0.3);
    cursor: pointer;
}

#progress-value{
    display: block;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: #262323;
}


/* Toast Bileşeni */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
    will-change: transform; /* Tarayıcıya "Bu elemanda transform özelliği değişecek, şimdiden buna göre hazırlık yap" demiş oluyoruz ki toast 
    eklenip kaybolurken transform animasyonu ve pozisyon değişimi sırasında yanıp sönme sorunu olmasın.*/
}

.toast {
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideIn 0.3s ease-out;
    max-width: 400px;
}

.toast.error {
    border-left: 4px solid #dc3545;
}

.toast.success {
    border-left: 4px solid #28a745;
}

.toast.info {
    border-left: 4px solid #0d6efd;
}

.toast i {
    font-size: 1.8rem;
}

.toast.error i {
    color: #dc3545;
}

.toast.success i {
    color: #28a745;
}

.toast.info i {
    color: #0d6efd;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.toast-message {
    color: #666;
    font-size: 1.3rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.hide {
    animation: slideOut 0.3s ease-in forwards;
}

.navbar-toggler {
    font-size: 27px;
    border: none;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    display: none;
}

.navbar-body {
    z-index: 16;
    display: flex;
}

.nav-title {
    display: none;
    margin-top: 20px;
    margin-left: 15px;
    color: #000;
    font-weight: 600;
    font-size: 27px;
    font-family: "Montserrat", sans-serif;
}

.navbar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.navbar-backdrop.fade {
    opacity: 0;
}

.navbar-backdrop.show {
    opacity: .5;
}

.title-striped{
    flex-direction: column;
    align-items: center;
}

.title-striped img {
    width: 65px;
    height: 65px;
}

.title-striped h2{
    margin-top: 8px;
    font-size: 5.2rem;
    position: relative;
    font-family: 'Zilla Slab', serif;
}

.title-striped h2:after, 
.title-striped h2:before {
    position: absolute;
    content: "";
    width: 277px;
    height: 1px;
    background: #ffc515;
    top: 36px;
}

.title-striped h2:after {
    right: 107%;
}

.title-striped h2:before{
    left: 107%;
}

.title-unlined{
    margin-bottom: 2.6rem;
    font-size: 5rem;
    letter-spacing: .2rem;
    font-weight: 500;
    font-family: 'Zilla Slab', serif;
}

.btn{
    font-size: 1.5rem;
    font-weight: 500;
    padding: 10px 20px;
    transition: all .4s;
    border-radius: 5px;
    margin-top: 30px;
}

.btn-frame{
    align-items: center;
    justify-content: center;
}

.btn-outline-info{
    color: #646060;
    border: 1px solid #646060;
    background-color: transparent;
}

.btn-outline-info:hover{
    color: #fff;
    border: 1px solid #646060;
    background-color: #646060;
}

.btn-outline-warning{
    color: #ffc515;
    border: 1px solid #ffc515;
    background-color: transparent;
}

.btn-outline-warning:hover{
    color: #fff;
    background-color: #ffc515;
    border: 1px solid #ffc515;
}

.btn-outline-dark{
    color: #000;
    border: 1px solid #000;
    background-color: transparent;
}

.btn-outline-dark:hover{
    color: #fff;
    background-color: #000;
    border: 1px solid #000;
}

.curtain{
    background-position: center;
    background-size: cover;
    position: relative;
}

.curtain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

header{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

header .container{
    justify-content: space-between;
}

header .site-navbar-light{
    background: transparent !important;
    position: fixed;
    transition: all .3s ease-in-out;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    padding: 1.6rem 0;
}

header .site-navbar-light.scrolled {
    background: #fff !important;
}

header .site-navbar-light.scrolled .logo-title,
header .site-navbar-light.scrolled .nav-link,
header .site-navbar-light.scrolled .navbar-toggler{
    color: black;
    transition: color .4s;
}

header .site-navbar-light.scrolled .nav-link:hover{
    color: #FFC515;
}

header .logo{
    color: white;
    align-items: center;
}

header .logo-title{
    color: white;
    font-size: 3.5rem;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

header nav{
    align-items: center;
}

header nav .search{
    color: white;
    padding: 0 .5rem;
}

header nav ul{
    list-style-type: none;
}

header nav ul li{
    font-size: 1.5rem;
}

header nav ul .nav-link{
    padding: .5rem 1.5rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .1rem;
    transition: color .4s;
    text-align: center;
    text-transform: uppercase;
}

header nav ul .nav-link:hover{
    color: #FFC515;
}

.navbar-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 17px;
}

.nav-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .05rem;
    text-decoration: none;
    transition: all .3s ease-in-out;
    white-space: nowrap;
}

.nav-btn-login {
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    background: transparent;
}

.nav-btn-login:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
}

.nav-btn-register {
    color: #1a1a1a;
    background: #FFC515;
    border: 2px solid #FFC515;
}

.nav-btn-register:hover {
    background: #f3c846;
    border-color: #f0b400;
    color: #1a1a1a;
}

header .site-navbar-light.scrolled .nav-btn-login {
    color: #333;
    border-color: #333;
}

header .site-navbar-light.scrolled .nav-btn-login:hover {
    background: #f5f5f5;
    color: #333;
}

header .header-main{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding-top: 50px;
}

.header-text{
    font-size: 7.5rem;
    font-weight: 600;
    text-align: center;
    width: 90%;
}

.main{
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

.text{
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Open Sans', sans-serif;
    padding-right: 2rem;
    position: relative;
}

.text p, 
textarea.about-text {
    font-size: 1.8rem;
    font-weight: 400;
    color: #646060;
}

#overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all .3s ease-in-out;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    transition: all .3s ease-in-out;
}

.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-bottom-color: #ffc515;
}
      
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 


/* Contact */

.contact{
    background-color: #111111;
    background-image: url(../icons/contact.png);
    background-position: center;
    background-size: cover;
    color: #fff;
    padding-bottom: 50px;
}

.contact-contents{
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.content{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    padding: 50px 60px;
    border-right: 2px solid #ffc515;
    font-size: 1.5rem;
    text-align: center;
    color: #aaa;
}

.content:last-child{
    border-right: none;
}

.content h5{
    font-size: 2.7rem;
    margin-bottom: 20px;
    color: #fff;
}

.content .information{
    flex-direction: column;
}

.content .information div:first-child{
    margin-bottom: 15px;
}

.content span{
    text-align: center;
}

.content i{
    margin-right: 5px;
    margin-bottom: 5px;
}

.working-hours {
    flex-direction: column;
    gap: 6px;
}

.special-note {
    font-size: 1.3rem;
}

.social{
    margin-top: 50px;
    justify-content: center;
}

.social li{
    list-style-type: none;
    margin-right: 10px;
}

.social .frame{
    background-color: #262323;
    color: #aaaaaa;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    transition: .3s all ease-out;
}

.social .frame i{
    position: absolute;
    top: 25px;
    left: 15px;
}

.social .frame.facebook i{
    left: 18px;
}

.social .frame.facebook:hover{
    background-color: #3D5998;
    color: #fff;
}

.social .frame.instagram:hover{
    background-color: #BC2A8D;
    color: #fff;
}

.social .frame.twitter:hover{
    background-color: #00ACED;
    color: #fff;
}

.social .frame.google:hover{
    background-color: #DD4B39;
    color: #fff;
}

.copyright{
    margin-top: 40px;
    text-align: center;
    font-size: 1.1rem;
    color: #aaaaaa;
}


/* Somee */
a[href="http://somee.com"] {
    display: none !important;
}



@media screen and (max-width: 1450px) { 
    #about .container {
        justify-content: space-between;
    }

    .text,
    .about-image { 
        width: 48% !important; 
    }

    .title-unlined {
        font-size: 4.7rem;
    }

    .about-text { 
        width: 100% !important;
    }

    #about .btn {
        margin-top: 17px;
    }
}


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

    .title-striped h2 {
        font-size: 5rem;
    }

    .title-striped h2:after, 
    .title-striped h2:before {
        width: 260px;
    }
}


@media screen and (max-width: 992px) {
    header .site-navbar-light {
        padding: 0;
    }

    header .logo {
        padding: 1.6rem 0;
    }
    
    .navbar-toggler {
        padding: 1.6rem 0;
        display: inline-block;
    }

    .navbar-body {
        height: 100vh;
        width: 250px;
        background-color: #fff;
        display: inline-block;
        align-items: flex-start;
        position: fixed;
        right: 0;
        transform: translateX(100%);
        transition: all .3s ease-in-out;
    }

    .navbar-body.menu-open {
        right: 0;
        transform: none;
    }
    
    .navbar-nav {
        margin-top: 30px;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-link {
        color: #000;
        width: 100%;
    }

    .navbar-auth {
        flex-direction: column;
        margin-left: 0;
        margin-top: 24px;
        gap: 12px;
        padding: 0 20px;
        width: 100%;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }

    .nav-btn-login {
        color: #333;
        border-color: #333;
    }

    .nav-btn-login:hover {
        background: #e9e9e9;
        color: #333;
        border-color: #333;
    }

    .nav-title {
        display: inline-block;
    }
    
    .main {
        padding: 70px 0;
    }

    #about .container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .text, 
    .about-image {
        width: 90% !important;
        padding-right: 0;
    }

    #about .btn {
        margin-top: 5px;
    }

    .title-striped h2 {
        font-size: 4.7rem;
    }

    .title-striped h2:after, 
    .title-striped h2:before {
        width: 215px;
        top: 32px;
    }

    .content { 
        padding: 50px 40px;
    }
}


@media screen and (max-width: 768px) { 
    .header-text {
        font-size: 6.5rem;
    }

    .title-unlined {
        font-size: 4.2rem;
    }

    .text p, 
    textarea.about-text {
        font-size: 1.7rem;
    }

    .title-striped img {
        width: 60px;
        height: 60px;
    }

    .title-striped h2 {
        font-size: 4.2rem;
    }

    .title-striped h2:after, 
    .title-striped h2:before {
        width: 165px;
        top: 28px;
    }

    .contact-contents {
        flex-direction: column;
        width: 75%;
        margin: auto;
    }

    .content {
        border-right: none;
        border-bottom: 2px solid #ffc515;
    }

    .content:last-child {
        border-bottom: none;
    }
}


@media screen and (max-width: 600px) { 
    .title-striped img {
        width: 55px;
        height: 55px;
    }

    .title-striped h2 {
        font-size: 3.8rem;
    }

    .title-striped h2:after, 
    .title-striped h2:before {
        width: 125px;
        top: 27px;
    }
}


@media screen and (max-width: 480px) {
    .header-text {
        font-size: 5.2rem;
    }

    .text, 
    .about-image {
        width: 97% !important;
    }

    .title-striped img {
        width: 50px;
        height: 50px;
    }

    .title-striped h2 {
        font-size: 3.4rem;
    }

    .title-striped h2:after, 
    .title-striped h2:before {
        width: 95px;
        top: 27px;
    }

    .contact-contents {
        width: 85%;
    }
 }


