/* Tıklama vurgusunu kaldırmak için */
* {
    -webkit-tap-highlight-color: transparent;
}




/* Genel Stiller */
body, html {
    background-color: #a7a39a;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Genel Başlık ve Metin Stilleri */
h1, h2, h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; /* Modern bir yazı tipi */
    font-weight: 700;
    color: #0f0101; /* Başlık rengi */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Metin gölgesi */
}

h1 {
    font-size: 4em; /* Ana başlık boyutu */
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em; /* Alt başlık boyutu */
    margin-bottom: 1em;
}

h3 {
    font-size: 2em; /* Üçüncü düzey başlık boyutu */
    margin-bottom: 0.5em;
}

p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 1.2em;
    color: #302f2f; /* Yazı rengi */
    line-height: 1.6; /* Satır yüksekliği */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Metin gölgesi */
}


/* Navbar Stilleri */
.top-navbar {
    background: #4f4f4f;
    color: white;
    padding: 1em 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: top 0.3s ease-in-out; /* Yumuşak geçiş efekti */
}

.top-navbar .social-media-links a {
    color: white;
    margin: 0 0.5em;
    transition: color 0.3s;
}

.top-navbar .social-media-links a:hover {
    color: #ddd;
}

.top-navbar .contact-info a {
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    transition: color 0.3s;
}

.top-navbar .contact-info a:hover {
    color: #ddd;
}


.logo1{
    width: 2%;
    border-radius: 20%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.main-navbar {
    background: white;
    color: black;
    padding: 1em;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 3em;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out; /* Yumuşak geçiş efekti */
}

.main-navbar .logo a {
    color: black;
    font-size: 1.5em;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.main-navbar .logo a:hover {
    transform: scale(1.1);
}

.main-navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-navbar ul li {
    margin-right: 1em;
}

.main-navbar ul li a {
    color: black;
    text-decoration: none;
    padding: 0.5em 1em;
    transition: background 0.3s, transform 0.3s;
}

.main-navbar ul li a:hover {
    background: #f4f4f4;
    border-radius: 5px;
    transform: scale(1.1);
}

.main-navbar .btn-randevu {
    background-color: #4a5a4b;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-size: 1em;
}

.main-navbar .btn-randevu:hover {
    background-color: rgb(3, 83, 3);
    transform: scale(1.1);
}



/* Hamburger Menüsü */
.hamburger-menu {
    font-size: 1.5em;
    cursor: pointer;
    margin-left: 1em;
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    background-color: #929090;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.side-menu a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 1.5em;
    color: #000000;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #f1f1f1;
}

.side-menu .close-btn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 2em;
}

.side-menu .close-btn:hover {
    color: #f1f1f1;
}


/* Uzmanlık Alanları Stilleri */
.expertise-section {
    background: rgba(255, 255, 255, 0.8); /* Yarı saydam arka plan */
    border-radius: 15px; /* Kenarları yuvarlat */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
    padding: 2em;
    max-width: 1200px; /* Maksimum genişlik */
    margin: 9em auto; /* Ortalamak için */
    text-align: center; /* Ortalamak için */
}

.expertise-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.expertise-item {
    background: white;
    border: 1px solid #ccc;
    padding: 2em; /* İç boşlukları artır */
    border-radius: 10px;
    transition: background 0.3s, transform 0.3s;
    width: 30%; /* Daha geniş alan */
    text-align: center;
    cursor: pointer;
    animation: fadeIn 2s; /* Fade-in animasyonu */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.expertise-item:hover {
    background: #aac2cc;
    transform: scale(1.05);
}

.expertise-item h3:hover,.expertise-item p:hover{
    color: #380d0d;
}

.expertise-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    position: relative;
    display: inline-block;
}

.expertise-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #f1c708; /* Sarı alt çizgi */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.expertise-item a {
    text-decoration: none;
    color: inherit;
}

.expertise-item h3 {
    margin-bottom: 1em;
}

.expertise-item p {
    margin: 0;
}



#support {
    position: fixed;
    bottom: 5em;
    right: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#support button {
    transition: transform 0.3s;
    background: rgb(3, 83, 3);
    color: white;
    border: none;
    padding: 1em;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform-origin: center;
}

.rotate-button {
    transform: rotate(180deg);
    background-color: #e74c3c;
}

#support-links {
    position: absolute; /* Sabit bir konumda kalmasını sağlar */
    bottom: 70px; /* Butonun üstünde yer alması için */
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    flex-direction: column;
    align-items: center;
}

#support-links.show {
    display: flex;
    opacity: 1;
    transition: background 0.3s;
}

#support-links a {
    background: rgb(3, 83, 3);
    color: white;
    padding: 0.5em 1em;
    margin: 0.2em 0;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

#support-links a:hover {
    background: rgb(3, 83, 3);
}

/* Footer Stilleri */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}




    
/* Medya Sorguları */

/* Ekran genişliği 768 piksel veya daha küçük olduğunda */
@media (max-width: 768px) {
    
    body, html {
        font-size: 0.9em;
    }
    
    .top-navbar{
        font-size: 13px;
        height: 16px;
    }

    /* Navbar */
    .top-navbar em{
        font-size:smaller;
    }

    .main-navbar {
        flex-direction: column;
        align-items: center;
        padding: 0.5em;
        font-size: x-small;
    }

    .main-navbar .logo a {
        font-size: 1.5em;
    }

    .main-navbar ul {
        flex-direction: row;
        align-items: center;
        padding: 0;
    }

    .main-navbar ul li {
        padding: 0.7em 0.5em;
    }

    .main-navbar .btn-randevu {
        margin-top: 1em;
        padding: 0.5em 2em;
        font-size: 1em;
    }

    .expertise-item {
        width: 100%; /* Kutucuklar tam genişlikte ve alt alta gelecek şekilde ayarlanıyor */
        margin-bottom: 20px; /* Kutucuklar arasına biraz boşluk ekleniyor */
    }

    .expertise-item h3 {
        font-size: 1.5em; /* Başlık yazı boyutu küçültülüyor */
    }

    .expertise-item p {
        font-size: 1em; /* Paragraf yazı boyutu küçültülüyor */
    }

    .top-navbar .contact-info a, .top-navbar .social-media-links a {
        font-size: 0.9em;
    }
    .logo1{
        opacity: 0;
    }
}

/* Ekran genişliği 480 piksel veya daha küçük olduğunda */
@media (max-width: 480px) {
   
    .expertise-section{
        margin: 14em auto;
    }
    .expertise-item {
        width: 100%; /* Kutucuklar tam genişlikte ve alt alta gelecek şekilde ayarlanıyor */
        margin-bottom: 20px; /* Kutucuklar arasına biraz boşluk ekleniyor */
    }

    .expertise-item h3 {
        font-size: 1.2em; /* Başlık yazı boyutu daha da küçültülüyor */
    }

    .expertise-item p {
        font-size: 0.9em; /* Paragraf yazı boyutu daha da küçültülüyor */
    }
     /* Navbar */
     .main-navbar ul {
        flex-direction: row;
        padding: 0;
        text-align: center;
    }

    .main-navbar ul li {
        padding: 0.2em 0.2em;
    }

    .main-navbar .logo a {
        font-size: 1.2em;
    }

    .top-navbar .contact-info a, .top-navbar .social-media-links a {
        font-size: 0.9em;
    }

    .top-navbar .contact-info a, .top-navbar .social-media-links a {
        font-size: 0.8em;
    }

    .top-navbar {
        padding: 0.5em 0;
    }

    .logo1{
        opacity: 0;
    }
    /* Footer */
    footer {
        padding: 0.5em;
        font-size: 0.8em;
    }
}




