/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(to bottom, #1e1e2f, #333);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
}

.language-selector select {
    padding: 5px;
    font-size: 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('Thorion_Background.png') no-repeat center center/cover;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-section .container {
    background: rgba(0, 0, 0, 0.7); /* Şeffaf koyu arka plan */
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Gölge ekle */
}

p {
    margin: 20px 0;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Gölge ekle */
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #333;
    background: #ffdf00;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #ffd800;
}

/* Details Section */
.details-section {
    background: rgba(30, 30, 47, 0.9);
    padding: 50px 20px;
    max-width: 800px;
    margin: 50px auto;
    text-align: justify;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.details-section ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.details-section ul li {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #fff;
}

.details-section h2 {
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Gölge ekle */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #333;
    font-size: 0.9rem;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 1rem;
    }
    .details-section {
        max-width: 90%;
    }
}
