@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
@import url('https://fonts.bunny.net/css?family=cairo-play:400,500,600,700,800,900|prompt:400,500,600,700,800,900');
@import url('https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css');

:root {
    --primary-color: #103d7c;
    --mobile-menu-color: rgb(40, 88, 156);
    --secondary-color: #f97316;
    --text-color: #333;
    --light-text-color: #fff;
    --background-color: #f0f4f8;
    --green-color-light: #4ade80;
    --green-color-dark: #2f9454;
    --header-height: 6.25rem;
    --font-family: 'prompt', sans-serif;
    --ff: 'Cairo Play', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a, h1, h2, h3, h4, h5, h6, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}
input {
    margin: 0;
    padding: 0;
    border: none;
    font-family: inherit;
    font-size: inherit;
}

input:focus {
    outline: none;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
}
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bx {
    line-height: normal;
}

.box {
    top: -100px;
    background-color: var(--primary-color);
    height: 100px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container h1 {
    font-family: var(--ff);
}

.header {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border-radius: 0 0 3rem 3rem;
    z-index: 100;
}

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

.logo img {
    height: 80px;
}

.nav-links {
    display: none;
}

.nav-links a {
    color: var(--light-text-color);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.menu-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--light-text-color);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--mobile-menu-color);
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.close-menu {
    background: none;
    border: none;
    color: var(--light-text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-content a {
    display: block;
    color: var(--light-text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1.2rem;
}

.hero {
    background-color: var(--primary-color);
    background-image: url('../images/bg/bg_english.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    color: var(--light-text-color);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: slideInFromLeft 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInFromRight 1s ease-out 0.5s;
    animation-fill-mode: both;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

}

/* Genel animasyon stilleri */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromLeft {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@keyframes slideInFromRight {
    from { transform: translateX(0%); }
    to { transform: translateX(0); }
}