/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    a{
        color: black;
        text-decoration-line: none;
    }
}

header {
    background: #333;
    color: #fff;
    padding: 3% ;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0.5rem 3%;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0.5rem;
    transition:  0.3s;
}

header nav ul li a:hover {
    background: #555;
}
/* Mobil görünüm düzeni */
@media (max-width: 768px) {
    header {
        background: #333;
        color: #fff;
        padding: 3% ;
        position: absolute;
        width: 100%;
        top: 0;
        z-index: 1000;
    }
    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 0.5rem 0;
    }
}



.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
}

section {
    padding: 4rem 0;
    text-align: center;
}

#about, #menu, #gallery, #reservations, #contact {
    background: #f4f4f4;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

#about .content, #about .image {
    width: 45%;
}

#about .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.menu-items, .gallery-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menu-items .item, .gallery-grid .gallery-item {
    margin: 1rem;
    flex: 1 1 calc(40% - 2rem);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin-top: 1rem;
}

form input, form textarea {
    padding: 0.6rem;
    width: 70%;
    
    margin-top: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    margin-top: 1rem;
    padding: 0.7rem 1.5rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Mobil görünüm düzeni */
@media (max-width: 768px) {
    form label {
        margin-top: 1rem;
    }
    
    form input, form textarea {
        padding: 0.6rem;
        width: 50%;
        
        margin-top: 0.5rem;
        border-radius: 5px;
        border: 1px solid #ccc;
    }
    
    form button {
        margin-top: 1rem;
        padding: 0.7rem 1.5rem;
        background: #333;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        padding: 1rem;
    }

    #about .content, #about .image {
        width: 100%;
    }
}
