/* Genel Ayarlar */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif; /* Şık ve modern bir yazı tipi */
    background-color: #fff; /* Sayfa beyaz */
    color: #000; /* Siyah metin */
    line-height: 1.6;
}

/* Ana Menü (Header) */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000; /* Siyah arka plan */
    color: #fff; /* Beyaz metin */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
}

/* Marka Logosu */
.main-header .brand h1 {
    font-size: 28px;
    margin: 0;
    color: #fff; /* Beyaz logo yazısı */
    font-weight: bold;
    font-family: 'Playfair Display', serif; /* Şık serif yazı stili */
}

.main-header .brand h1 a {
    text-decoration: none;
    color: #fff; /* Link rengi beyaz */
}

/* Navigasyon Menüsü */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: #fff;
    color: #000;
}

/* Kullanıcı Aksiyonları (Giriş, Sepet) */
.user-actions {
    display: flex;
    gap: 15px;
}

.user-actions a {
    text-decoration: none;
    color: #000;
    padding: 8px 15px;
    background-color: #fff; /* Beyaz buton */
    border: 2px solid #000; /* Siyah kenar */
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.user-actions a:hover {
    background-color: #000; /* Siyah arka plan */
    color: #fff; /* Beyaz metin */
}

/* Mobil Menü */
.menu-toggle {
    display: none;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #000;
        border: 2px solid #fff;
        padding: 10px;
    }

    .main-nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Video Alanı */
.hero-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video ekranı tamamen dolduracak şekilde */
}

.hero-video .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero-video .hero-text h1 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.hero-video .hero-text p {
    font-size: 18px;
    margin: 10px 0;
}

.hero-video .hero-text .btn {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-video .hero-text .btn:hover {
    background-color: #000;
    color: #fff;
}

/* Ana İçerik */
main {
    padding: 40px 20px;
    margin-top: 100vh; /* Video alanının altına içerik gelir */
}

