/* Genel yapı */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #ffffff;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 🖤 Üst bar */
.top-bar {
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    flex-wrap: wrap;
}

.bar-left, .bar-right {
    display: flex;
    align-items: center;
    color: #fff;
}

.bar-left i, .bar-right i {
    margin-right: 8px;
    color: #fff;
}

/* 🔗 Menü */
.main-menu {
    width: 100%;
    background-color: #fff;
    text-align: center;
    margin-top: 10px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-menu ul li a:hover {
    color: #c99f4a;
}

/* 🔵 Menüdeki logo yuvarlak ve küçültülmüş */
.menu-logo img {
    width: 90px;           /* Eskiden 50px idi */
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;
    transition: transform 0.3s ease;
}


.menu-logo img:hover {
    transform: scale(1.05);
}

/* İçerik */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.center-container {
    text-align: center;
    max-width: 900px;
}

.logo-img {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.intro-text p {
    margin: 10px auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Sosyal ikonlar */
.social-icons-centered {
    margin-top: 25px;
}

.social-icons-centered a {
    color: #000;
    font-size: 24px;
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons-centered a:hover {
    color: #ffcc00;
}



/* Footer */
footer {
    background-color: #f0f0f0;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
