﻿/* berber.css - Gri, füme, beyaz temalı */

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* açık gri */
    color: #333;
}

header {
    background-color: #ffffff; /* beyaz zemin, siyah logo için uygun */
    color: #333;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

    nav ul li a {
        color: #222;
        text-decoration: none;
        font-size: 17px;
        font-weight: 500;
        transition: color 0.2s;
    }

        nav ul li a:hover {
            color: #007acc; /* mavi tonlu hover efekti */
            text-decoration: underline;
        }

select#language-select {
    font-size: 14px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

main {
    padding: 40px 30px;
}

footer {
    background-color: #e0e0e0;
    color: #555;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.hero-banner {
    /*background-image: url('/Content/img/berber_banner.jpg');*/ /* örnek banner */
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    background-color:#272727;
}

    .hero-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /*background: rgba(0, 0, 0, 0.5);*/ /* koyu filtre */
    }

.banner-content {
    position: relative;
    z-index: 2;
}

    .banner-content h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 18px;
        margin-bottom: 25px;
    }

.btn-discover {
    padding: 10px 20px;
    background-color: #007acc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

    .btn-discover:hover {
        background-color: #005ea2;
    }
