
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #222;
}

header.hero {
    background: #b00000;
    color: #d1d1d1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.scroll-down {
    font-size: 2rem;
    color: #d1d1d1;
    text-decoration: none;
    margin-top: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #f5f5f5;
    padding: 20px;
    border: 2px solid #b00000;
    border-radius: 10px;
    width: 200px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form textarea {
    width: 300px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: #b00000;
    color: #d1d1d1;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background: #111;
    color: #d1d1d1;
    text-align: center;
    padding: 20px;
}

.language-selector {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.language-selector button {
    background: #fff;
    border: 1px solid #b00000;
    color: #b00000;
    margin: 0 5px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}


.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}


header.hero {
    background: transparent; /* arka plan kaldırıldı */
    color: #d1d1d1;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
}

.language-selector {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 10;
}

.language-selector button {
    background: rgba(255,255,255,0.9);
    border: 1px solid #b00000;
    color: #b00000;
    margin-right: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
