/* 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 */
}

.content-container {
    padding: 50px;
    max-width: 800px;
    margin: 9em auto;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}

.content-container h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}



.content-container p {
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}


/* 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);
}


#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%;
}

/* 768px ve altındaki ekranlar için genel ayarlar */
@media only screen and (max-width: 768px) {
    
    .contact-info a{
        font-size: smaller;
    }
    
    .top-navbar em{
        font-size: small;
    }
    
    .top-navbar{
        font-size: smaller;
    }
    .logo1{
        opacity: 0;
    }
    /* Navbar */
    .main-navbar {
        flex-direction: column;
        align-items: center;
        padding: 0.5em;
        height:7em;
    }

    .main-navbar .logo a {
        font-size: 1.5em;
    }

    .main-navbar ul {
        flex-direction: row;
        align-items: center;
        padding: 0;
    }

    .main-navbar ul li a{
        margin-left: 15px ;
    }

    .main-navbar ul li {
        padding: 0.7em 0.5em;
        justify-content: center;
    }

    .main-navbar .btn-randevu {
        margin-top: 1em;
        padding: 0.5em 2em;
        font-size: 1em;
    }

    /* Yazı boyutları */
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    .content-container {
        padding: 30px;
        margin: 6em auto;
    }
}

/* 480px ve altındaki ekranlar için daha küçük ayarlar */
@media only screen and (max-width: 480px) {
    
    
    body, html {
        font-size: 0.9em;
    }
    .contact-info{
        font-size: 13px;
    }
    
    .top-navbar{
        font-size: small;
    }

    .top-navbar em{
        font-size: 13px;
    }
    
    .logo1{
        opacity: 0;
    }
    /* 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;
    }

    /* Yazı boyutları */
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.5em;
    }

    p {
        font-size: 0.9em;
    }

    .content-container {
        padding: 20px;
        margin: 13em auto;
    }
}

