/* --- Genel Stil --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Urbanist', 'Roboto', sans-serif;
    background-color: #121212;
    color: #eee;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Logo --- */
.logo {
    max-width: 220px;
    margin: 30px auto;
    display: block;
    filter: drop-shadow(0 0 10px #00ffc3);
}

/* --- Başlıklar --- */
h1.neonText {
    font-size: 3rem;
    color: #00ffc3;
    text-shadow:
        0 0 5px #00ffc3,
        0 0 10px #00ffc3,
        0 0 20px #00ffc3,
        0 0 40px #00ffc3;
    margin-bottom: 0.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

h2.section-title {
    font-size: 2rem;
    color: #00ffc3;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-left: 5px solid #00ffc3;
    padding-left: 10px;
    background-color: #1e1e1e;
    box-shadow: 0 0 8px #00ffc3 inset;
}

h3 {
    font-weight: 600;
    color: #00ffc3;
    margin-top: 0;
    text-transform: uppercase;
}

/* --- Neon Alt Çizgi --- */
.line {
    width: 100px;
    height: 4px;
    background-color: #00ffc3;
    margin: 10px auto 30px;
    border-radius: 2px;
    box-shadow:
        0 0 10px #00ffc3,
        0 0 20px #00ffc3;
}

/* --- Menü Bağlantıları --- */
.drink-links {
    margin: 40px 0;
    text-align: center;
}

.drink-links a {
    display: inline-block;
    margin: 8px 12px;
    padding: 8px 18px;
    font-weight: 600;
    color: #00ffc3;
    background-color: #222;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.drink-links a:hover,
.drink-links a:focus {
    background-color: #00ffc3;
    color: #121212;
    border: 1px solid #00ffc3;
    transform: scale(1.05);
    outline: none;
}

/* --- Menü Öğeleri --- */
.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
    background-color: #1a1a1a;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #1f1f1f;
}

.menu-item span:first-child {
    flex: 1;
}

.menu-item span:last-child {
    text-align: right;
    font-weight: 700;
    color: #00ffc3;
}

/* --- Bölüm Ayracı --- */
.section-divider {
    border: none;
    height: 2px;
    background: #00ffc3;
    margin: 50px 0;
    box-shadow: 0 0 15px #00ffc3;
}

/* --- Footer --- */
footer {
    background-color: #0a0a0a;
    padding: 30px 20px;
    color: #666;
    font-size: 0.9rem;
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #222;
}

.social-media a {
    color: #00ffc3;
    font-size: 1.6rem;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover,
.social-media a:focus {
    color: #00e6b8;
    outline: none;
}

.brand-name {
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #00ffc3;
}

/* --- Rezervasyon ve İletişim --- */
.reservation h3 {
    font-weight: 700;
    color: #00ffc3;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-left: 4px solid #00ffc3;
    padding-left: 10px;
    font-size: 1.1rem;
}

.reservation p a {
    color: #00ffc3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reservation p a:hover,
.reservation p a:focus {
    color: #00e6b8;
    outline: none;
}

/* --- Responsive Ayarlar --- */
@media (max-width: 768px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item span:last-child {
        text-align: left;
        margin-top: 5px;
    }

    .drink-links a {
        margin: 6px 8px;
        padding: 7px 15px;
        font-size: 0.95rem;
    }

    h1.neonText {
        font-size: 2.5rem;
    }

    h2.section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }

    .logo {
        max-width: 160px;
        margin: 20px auto;
    }

    h1.neonText {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1rem;
    }
}
