/* Temel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0d0d0d url('3947.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

/* Arka plan karartma katmanı */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fotoğrafın üzerine loş bir katman */
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

/* Logo Animasyonu */
.logo {
    max-width: 83%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    animation: fadeIn 2s ease-in;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e0c097; /* Rakı/Meze konseptine uygun gold tonu */
}

.subtitle {
    font-size: 2.0rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

/* Instagram Butonu */
.instagram-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #e0c097;
    color: #e0c097;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.instagram-btn i {
    margin-right: 8px;
}

.instagram-btn:hover {
    background: #e0c097;
    color: #000;
    box-shadow: 0 0 20px rgba(224, 192, 151, 0.4);
    transform: translateY(-3px);
}

.footer-info {
    margin-top: 50px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .title {
        font-size: 1.7rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .logo {
        max-width: 100%;
        width: 100%;
        margin-bottom:0;
    }
    body{
        height: fit-content;
        flex-wrap: nowrap;
    flex-direction: column-reverse;
    justify-content: space-around;
    overflow: auto;
    }
    .overlay{
        height: 800px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}