* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Comic Sans MS', sans-serif; */
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #ff4c4c;
    border-radius: 10px;
    border: 0.2px solid #ff4c4c;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: red;
}

body {
    background: rgb(110, 105, 105);
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo {
    position: absolute;
    left: 0;
    top: 4%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 2%;
}

.navbar .logo img {
    width: 175px;
    height: auto;
    transition: none;
}

.navbar .logo img:hover {
    animation: HearthBeat .875s ease-in-out infinite alternate;
}

@keyframes HearthBeat {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.875);
    }
}

/* Hamburger */
.hamburger {
    position: fixed;
    display: none;
    font-size: 30px;
    color: red;
    cursor: pointer;
    right: 0;
    top: 0;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #333;
        width: 100%;
        z-index: 999;
    }

    #nav-links.active {
        display: flex;
    }

    .navbar ul li {
        margin: 10px 0;
    }
}

/* Loading Screen Styles */
#yukleniyor {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background-color: rgba(51, 51, 51, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

#status {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(255, 76, 76, 0.3);
    border-top: 8px solid #ff4c4c;
    border-radius: 50%;
    animation: spin .5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/qwe2.png') no-repeat center top;
    background-size: cover;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    filter: saturate(100%) opacity(80%);
    padding: 20px;
}

.hero h1 {
    font-size: 8vw;
    margin-bottom: 20px;
    color: #ff4c4c;
    text-shadow: 5px 5px 20px rgba(164, 13, 13, 0.89), 15px 0 25px rgb(255, 0, 0), 0 15px 15px rgb(123, 6, 6);
    opacity: 1;
}

.hero p {
    font-size: 4vw;
    margin-bottom: 40px;
    color: #ff4c4c;
    font-weight: bolder;
    font-variant: small-caps;
    text-shadow: 5px 5px 20px rgba(164, 13, 13, 0.89), 15px 0 25px rgb(255, 0, 0), 0 15px 15px rgb(123, 6, 6);
    opacity: 1;
}

.hero .btn-primary {
    background-color: #ff4c4c;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #ff0000;
}

.navbar {
    background-color: #333;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    height: 8%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.navbar ul li a:hover {
    color: #ff4c4c;
    font-size: 19.5px;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.lines {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.section {
    padding: 100px 0;
    text-align: center;
    background: white;
}

.section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    margin-top: -80px;
    color: #ff4c4c;
}

.section h2:first-child {
    font-size: 40px;
    margin-bottom: 50px;
    margin-top: -20px;
    color: #ff4c4c;
}

.icon {
    width: 60px;
    margin-bottom: 15px;
}

.card-grid {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* gap: 100px; */
}

.card {
    background: whitesmoke;
    padding: 25px;
    margin: 10px;
    width: 20%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s ease;
}

.cardt {
    background: whitesmoke;
    padding: 25px;
    margin: 10px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s ease;
}

.card h3 {
    color: #333;
    margin-bottom: 20px;
    text-wrap: nowrap;
    word-break: break-word;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: font-size 0.2s ease;
}

.card p {
    font-size: 16px;
    color: #777;
}

.icon2 {
    border-radius: 100%;
    margin-bottom: 20px;
}

.card:hover, .cardt:hover {
    transform: translateY(-10px);
    background-color: #f2d7d5;
    border: 1px solid rgb(255, 0, 0);
    border-top-left-radius: 15%;
    border-bottom-right-radius: 15%;
    border-top-right-radius: 0%;
    border-bottom-left-radius: 0%;
}

.twerk {
    animation: twerk .3s;
}

@keyframes twerk {
    0% { transform: translate(0); }
    25% { transform: translate(-5px); }
    50% { transform: translate(5px); }
    75% { transform: translate(-5px); }
    100% { transform: translate(0); }
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.Jumper {
    position: fixed;
    bottom: 6%;
    right: 20px;
    background-color: whitesmoke;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.Jumper:hover {
    background-color: #555;
    transform: translateY(-5px);
    filter: drop-shadow(1px 1px 5px black);

}

.Jumper img {
    display: block;
    margin: 0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background-color: #333;
    color: #ff4c4c;
    text-align: center;
    padding: 10px 5px;
}

.footer p {
    font-size: 12px;
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 64px;
    }

    .hero p {
        font-size: 24px;
    }

    .hero .btn-primary {
        font-size: 16px;
    }
}

/* Responsive Denemelerim */
@media (max-width: 1200px) {
    .container {
        width: 90%;
    }

    .navbar ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 10vw;
    }

    .hero p {
        font-size: 5vw;
    }

    .section h2 {
        font-size: 30px;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
    }

    .card {
        width: 90%;
    }

    .hero h1 {
        font-size: 12vw;
    }

    .hero p {
        font-size: 6vw;
    }

    .section h2 {
        font-size: 24px;
    }

    .language-selector select {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 10px;
    }

    .hero h1 {
        font-size: 15vw;
    }

    .hero p {
        font-size: 7vw;
    }

    .section h2 {
        font-size: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form .btn {
        padding: 10px;
    }

    .footer p {
        font-size: 10px;
    }
}