:root {
    --main-color: #ff6600;
}

body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    background-color: var(--main-color);
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100px;
}

.navbar-brand {
    margin: 0 auto;
    font-size: 2.5rem;
    color: white !important;
    font-family: 'Times New Roman';
}

.navbar-logo {
    width: 100px;
    height: 80px;
}

.dropdown {
    margin-left: 3%;
}

.hero {
    position: relative;
    background: url('./p2.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    height: 90vh;
    /* tam ekran yüksekliği */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* karartma efekti */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.entry {
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.section-title {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    display: inline-block;
    margin-bottom: 20px;
}

.menu-item {
    border-left: 4px solid var(--main-color);
    padding: 15px;
    background-color: #f9f9f9;
}

.menuimg{
    padding-left: auto;
    padding-right: auto;
    width: 100%;
    height: 100%;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

@media (hover: hover) {
    .gallery-item:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.portrait {
    aspect-ratio: 3 / 4;
}

.landscape {
    aspect-ratio: 4 / 3;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 30px 10px;
    text-align: center;
}


