/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* Degrade: Beyazdan Kahverengiye */
    background: linear-gradient(180deg, #ffffff 0%, #462500 100%);
    background-attachment: fixed;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* --- Üst Bölüm & Google Kartı (Yeni Düzenleme) --- */
.top-bar {
    display: flex;
    justify-content: center; /* Ortaya aldık ki buton olduğu anlaşılsın */
    margin-bottom: 25px;
    padding: 10px;
}

.mini-google-btn {
    display: flex;
    flex-direction: column; /* Yıldızlar üstte yazı altta */
    align-items: center;
    background: rgba(0, 0, 0, 15); /* Şık siyah arka plan */
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 20px;
    border: 2px solid #FFD700; /* Altın sarısı çerçeve */
    width: 100%; /* Kapsayıcıyı tam kaplasın */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: bounce 2s infinite; /* Hafif zıplama efekti */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.mini-google-btn span {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-google-btn:hover {
    background: #000;
    transform: scale(1.02);
}

/* --- Header --- */
header {
    margin-bottom: 30px;
}

.logo {
    width: 110px;
    margin-bottom: 15px;
}

header p {
    font-size: 1rem;
    font-weight: 600;
    color: #462500; /* Üst kısım beyaz olduğu için yazı kahve tonu daha iyi okunur */
}

/* --- Sipariş Butonları --- */
.btn {
    display: flex;
    align-items: center;
    background: white;
    color: #000000;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: scale(1.02);
}

h3 {
    font-size: 0.85rem;
    margin: 25px 0 15px 0;
    letter-spacing: 1px;
    color: white;
}

.list-item img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    margin-right: 15px;
}

.list-item span {
    flex-grow: 1;
    text-align: left;
}

/* --- Sosyal Medya & Konum --- */
.social-icons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column; /* İkon ve yazı alt alta */
    align-items: center;
    transition: transform 0.2s;
}

.social-icons i {
    font-size: 3rem;
    margin-bottom: 8px;
}

.social-icons p {
    font-size: 0.85rem !important;
    font-weight: 600;
    opacity: 1 !important;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.fa-location-dot {
    color: #ffffff; 
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.7rem;
    opacity: 0.5;
}