/* TEMEL AYARLAR VE ESKİ KODLARINIZ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
    color: white;
    line-height: 1.6;
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: -1;
}

.smoke {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url('https://your-domain.com/path/to/1.png') repeat-x; /* Duman efekti için PNG resminizin yolunu girin */
    background-size: cover;
    animation: smokeLoop 60s linear infinite;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

@keyframes smokeLoop {
    from { background-position: 0 bottom; }
    to { background-position: -2000px bottom; }
}

a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #fff176;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.content-section.alt-bg {
    background-color: rgba(0,0,0,0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #ffe25c;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #ffdf6c;
}

.subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #eee;
}

/* HEADER VE NAVİGASYON */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links a {
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem;
}

.lang-switch a {
    margin: 0 0.25rem;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lang-switch a.active, .lang-switch a:hover {
    opacity: 1;
    text-shadow: 0 0 10px #fff;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO BÖLÜMÜ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero .content {
    padding: 2rem;
}

#hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    color: #ffe25c;
    text-shadow: 0 0 15px #ffdf6c, 0 0 25px rgba(255,255,255,0.2);
    animation: glow 2.5s ease-in-out infinite alternate;
}

#hero .subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 2.5rem;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #ffdf6c; }
    to { text-shadow: 0 0 20px #ffd700, 0 0 30px #ffc107; }
}

/* FLEX CONTAINER (About ve Benefits için) */
.flex-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.flex-container.reverse {
    flex-direction: row-reverse;
}

.flex-item-text {
    flex: 1;
}

.flex-item-img {
    flex: 1;
    max-width: 450px;
}

.flex-item-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.2);
}

/* ÇOCUKLAR İÇİN FAYDALARI LİSTESİ */
#benefits ul {
    list-style: none;
}

#benefits ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

#benefits ul li i {
    color: #ffdd57;
    margin-right: 1rem;
    font-size: 1.3rem;
}

/* İLETİŞİM VE GLASS-BOX */
.glass-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    max-width: 700px;
    margin: 2rem auto 0 auto;
    text-align: left;
}

.contact p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.contact p i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
    color: #ffdd57;
}
.contact hr {
    margin: 1.5rem 0;
    border-color: rgba(255,255,255,0.2);
}

/* BUTONLAR */
.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    background-color: #ffdd57;
    color: #000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #fff176;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 221, 87, 0.3);
}
.btn.btn-block {
    display: block;
    text-align: center;
    margin-top: 2rem;
}
.animate__pulse {
    animation-duration: 2s;
}

/* INSTAGRAM */
.instagram-widget-container {
    max-width: 90%;
    margin: 2rem auto;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: #aaa;
}


/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        text-align: center;
        margin: 0.5rem 0;
    }
    .mobile-menu-icon {
        display: block;
    }

    .flex-container, .flex-container.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .content-section {
        padding: 4rem 0;
    }
}