/* Genel Ayarlar */
:root {
    --primary-color: #00BCD4; /* Turkuaz */
    --secondary-color: #FFC107; /* Canlı Sarı */
    --accent-color: #8BC34A; /* Yeşil Tonu */
    --text-color-dark: #333; /* Koyu Gri Metin */
    --text-color-light: #fff; /* Beyaz Metin */
    --background-light: #f8f8f8; /* Açık Gri Arka Plan */
    --background-dark: #2c3e50; /* Koyu Gri/Mavi Arka Plan (Header, Footer) */
    --light-blue: #E0F2F7; /* Çok açık mavi */
    --soft-orange: #FFECB3; /* Çok açık turuncu */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Link Renkleri */
a {
    color: var(--primary-color); /* Varsayılan link rengi: Turkuaz */
    text-decoration: none; /* Alt çizgiyi kaldır */
    transition: color 0.3s ease, text-decoration 0.3s ease; /* Yumuşak geçiş efekti */
}

a:hover {
    color: var(--secondary-color); /* Üzerine gelince canlı sarı */
    text-decoration: underline; /* Alt çizgi çıksın */
}

a:visited {
    color: var(--accent-color); /* Ziyaret edilmiş linkler için yeşil tonu */
}

a:active {
    color: var(--background-dark); /* Tıklanma anında koyu gri/mavi */
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    color: var(--background-dark); /* Başlıklar için koyu gri/mavi */
    text-align: center;
    margin-bottom: 20px;
}

h1 { font-size: 2.8em; line-height: 1.2; color: var(--text-color-light); } /* Hero section özel */
h2 { font-size: 2.2em; color: var(--primary-color); }
h3 { font-size: 1.6em; color: var(--background-dark); } /* Alt başlıklar için koyu gri/mavi */
.section-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #666;
}


/* Butonlar */
.cta-button, .randevu-button, .more-services-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color-dark); /* Sarı butonlarda koyu metin */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .randevu-button:hover, .more-services-button:hover {
    background-color: #FFD54F; /* Sarı tonu */
    transform: translateY(-2px);
}

.randevu-button { /* Header'daki Randevu Al butonu */
    background-color: var(--primary-color); /* Turkuaz fon */
    color: var(--text-color-light); /* Beyaz metin */
}
.randevu-button:hover {
    background-color: #00A6B2; /* Turkuazın koyu tonu */
}

/* Header */
header {
    background-color: var(--background-dark);
    color: var(--text-color-light);
    padding: 15px 0;
    border-bottom: 5px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo img {
    height: 40px; /* Logo yüksekliği */
    margin-right: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

/* Navigasyon Linkleri - Özel Renkler */
nav ul li a {
    color: var(--text-color-light); /* Menü linkleri için varsayılan beyaz */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color); /* Menü linkleri üzerine gelince turkuaz */
    text-decoration: none; /* Menüde alt çizgi olmasın */
}

nav ul li a:visited {
    color: var(--text-color-light); /* Menüde ziyaret edilmiş de beyaz kalsın */
}

nav ul li a:active {
    color: var(--primary-color); /* Tıklanma anında turkuaz */
}


/* Hero Section */
#hero {
    background-image: url('../images/hero-bg.jpg'); /* Kendi ana sayfa arka plan resminizi buraya koyun */
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
    color: var(--text-color-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero::before { /* Opaklık efekti */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 188, 212, 0.75); /* Turkuazın hafif opak hali */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Hizmetler Özeti Section */
#hizmetler-ozet {
    padding: 80px 0;
    background-color: var(--light-blue); /* Hafif mavi fon */
}

.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hizmet-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--secondary-color); /* Sarı üst çizgi */
}

.hizmet-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hizmet-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1)); /* İkonlara hafif gölge */
}

.hizmet-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hizmet-item p {
    font-size: 0.95em;
    color: #555;
}

.more-services-button {
    margin-top: 40px;
}

/* Neden Biz Section */
#neden-biz {
    padding: 80px 0;
    background-color: #fff;
}

.neden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.neden-item {
    background-color: var(--soft-orange); /* Açık turuncu fon */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.neden-item h3 {
    color: var(--background-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neden-item h3 .icon-heart, .icon-child, .icon-location, .icon-info {
    font-size: 1.5em; /* İkon boyutunu ayarlayın */
    margin-right: 10px;
    color: var(--primary-color); /* İkon rengi turkuaz */
    /* Gerçek ikonlar için Font Awesome gibi kütüphane kullanmanız gerekecektir */
    /* Örneğin: <i class="fas fa-heart"></i> */
}

.neden-item p {
    color: #555;
}

/* Klinik Fotoğrafları Section */
#klinik-fotograflari {
    padding: 80px 0;
    background-color: var(--background-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* İletişim Kısa Section */
#iletisim-kisa {
    padding: 80px 0;
    background-color: var(--primary-color); /* Turkuaz fon */
    color: var(--text-color-light);
    text-align: center;
}

#iletisim-kisa h2 {
    color: var(--text-color-light);
}

#iletisim-kisa p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-buttons a {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-buttons a:hover {
    background-color: #FFD54F;
    transform: translateY(-3px);
}
.contact-buttons a.contact-tel {
    background-color: var(--accent-color); /* Telefon için yeşil */
    color: var(--text-color-light);
}
.contact-buttons a.contact-tel:hover {
    background-color: #7CB342;
}

.contact-buttons a img { /* Sosyal medya ikonları için */
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(100%); /* Beyaz ikonlar için */
}

.address-text {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 20px;
}

#iletisim-kisa iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/* Footer */
footer {
    background-color: var(--background-dark);
    color: var(--text-color-light);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

footer .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
}

.footer-col p, .footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col ul li a {
    color: var(--text-color-light);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-links li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.social-links li img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(100%); /* Beyaz ikonlar için */
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
}

/* Mobil Uyum (Responsive Design) */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.5em;
    }
    #hero p {
        font-size: 1.2em;
    }
    h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    nav {
        margin-top: 15px;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    nav ul li {
        margin: 10px 0;
    }
    .randevu-button {
        width: 80%;
        margin-top: 15px;
    }

    #hero {
        padding: 80px 0;
    }
    #hero h1 {
        font-size: 2em;
    }
    #hero p {
        font-size: 1em;
    }

    .hizmet-grid, .neden-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-col {
        min-width: 100%;
        text-align: center;
    }
    .footer-col h3, .footer-col ul, .footer-col p {
        text-align: center;
    }
    .social-links li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-button, .randevu-button, .more-services-button, .contact-buttons a {
        font-size: 1em;
        padding: 10px 20px;
    }
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .contact-buttons a {
        width: 90%;
        max-width: 300px;
    }
    .logo a {
        font-size: 1.5em;
    }
}