/*
Theme Name: RestoScreen
Theme URI: https://nsoliter.com
Author: Soliter Lounge Bar
Description: Restaurant Menu & TV Broadcast Control Theme
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #2c2c2c;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}

a { 
    color: #ffcc00; 
    text-decoration: none; 
}

/* Hover efektleri kaldırıldı */
// a:hover { text-decoration: underline; }

/* === Header === */
header.hero {
    display: flex;
    flex-direction: column;
    align-items: center; /* dikey ortala */
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    background-color: #1f1f1f;
}

header.hero .logo {
    width: 100px;
    margin-bottom: 10px;
}

/* the_custom_logo() <a><img> etiketlerini hedefle */
header.hero .logo a {
    display: flex;
    justify-content: center; /* yatay ortala */
}

header.hero .logo a img {
    width: 100px;
    height: auto;
    display: block;
}

header.hero h1 {
    margin: 10px 0;
    font-weight: 500;
}

header.hero p {
    margin: 5px 0;
}

header.hero .contact-info {
    margin-top: 10px;
    font-size: 1.1em;
    color: #ffcc00;
}

/* === Menü ve kategori === */
.menu {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Kategori başlığı ve hizmet saati */
.menu-section h2 {
    font-size: 2em;
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    margin-top: 40px;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.menu-section h2 .service-hours {
    font-size: 0.6em;
    color: #ffffff;
    font-weight: 400;
}

.price-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    font-weight: 500;
    color: #ffcc00;
    padding: 10px 0;
}

.menu-row {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #444;
}

.menu-row img.menu-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-desc {
    grid-column: 2 / 5;
    font-size: 0.85em;
    color: #cccccc;
    margin: 2px 0 10px 0;
}

footer {
    background-color: #1f1f1f;
    color: #aaa;
    padding: 15px 20px;
    font-size: 0.85em;
}

/* === Responsive === */
@media screen and (max-width: 1920px) {
    .menu-section h2 { font-size: 2.5em; }
    .menu-section h2 .service-hours { font-size: 0.7em; }
}

@media screen and (max-width: 768px) {
    .menu-row {
        grid-template-columns: 60px 1fr;
    }

    .menu-row span:nth-child(3),
    .menu-row span:nth-child(4) {
        display: block;
        margin-left: 70px;
    }

    .menu-desc {
        grid-column: 2 / 2;
        margin-left: 70px;
    }

    .price-header {
        display: none;
    }

    header.hero .logo {
        width: 90px;
    }
}
