/* 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;
}


/* 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;
}

.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: #45a049;
    transform: scale(1.1);
}

/* Ana Sayfa Stilleri */
.full-screen {
    height: 100vh;
    background: url('/images/home.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Solda hizalama */
    color: white;
    position: relative;
}

.full-screen .overlay {
    background: rgba(53, 52, 52, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.full-screen .content {
    position: relative;
    z-index: 2;
    margin-left: 5%; /* Soldan biraz boşluk bırak */
    max-width: 600px;
    animation: fadeIn 1.5s ease-in-out;
}

.full-screen h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    animation: fadeInDown 1.5s ease-in-out;
}

.full-screen p {
    font-size: 1.2em;
    margin-bottom: 1em;
    animation: fadeInUp 1.5s ease-in-out;
}

.full-screen .btn {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background: rgba(255, 255, 255, 0.1); /* Şeffaf arka plan */
    color: white;
    border: 2px solid white;
    padding: 0.8em 1.5em;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    border-radius: 5px;
    font-size: 1em;
    text-shadow: none;
    animation: fadeInUp 1.5s ease-in-out;
}

.full-screen .btn:hover {
    background: rgba(255, 255, 255, 0.3); /* Hover durumunda daha az şeffaf */
    transform: scale(1.1);
}

/* Hakkımda Bölümü Stilleri */
.section.medium-screen {
    display: flex;
    flex-direction: row; /* Yatay hizalama */
    justify-content: space-between;
    align-items: center;
    background: rgba(236, 232, 232, 0.829); /* Arka planı yarı saydam yap */
    padding: 3em 2em; /* Daha fazla iç boşluk */
    margin: 2em auto; /* Üst ve alt boşluk */
    border-radius: 15px; /* Kenarları yuvarla */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Hafif gölge efekti */
    animation: fadeIn 1.5s ease-in-out; /* Fade-in animasyonu */
}

/* Hakkımda Bölümü Stilleri */
.about-section {
    background: rgba(65, 44, 44, 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: 0 auto; /* Ortalamak için */
    text-align: center; /* Ortalamak için */
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #f1c708; /* Sarı alt çizgi */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.about-text, .about-image {
    background: white;
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    box-sizing: border-box;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
}



footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1em 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);;
}


/* İletişim Formu ve Sosyal Medya Stilleri */
.contact-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: 0 auto; /* Ortalamak için */
    text-align: center; /* Ortalamak için */
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
    position: relative;
    display: inline-block;
}

.contact-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #f1c708; /* Sarı alt çizgi */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

.form-container,
.info-container {
    background: white;
    padding: 3em;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 48%;
    box-sizing: border-box;
   
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

form .form-group {
    animation: fadeIn 2s; /* Fade-in animasyonu */
    flex: 1 1 35%;
    margin-left: 13px;
}

form .form-group.full-width {
    flex: 1 1 100%;
}

form input, form textarea, form button {
    width: 95%;
    padding: 0.75em;
    margin-top: 0.5em;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border 0.3s;
}

form input:focus, form textarea:focus {
    border-color: rgb(3, 83, 3);
}

form button {
    background: rgb(3, 83, 3);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s,transform 0.3s;;
    width: 97%;
}

form button:hover {
    transform: scale(1.05);
    background: rgb(3, 83, 3);
}

.info-container h3 {
    margin-bottom: 1em;
}

.social-contact-container {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.social-container, .contact-info-container {
    flex: 1;
    text-align: center;
}

.social-container a {
    transition: background 0.3s,transform 0.3s;;
    display: block;
    color: white;
    padding: 1em;
    margin: 0.5em 0;
    border-radius: 5px;
}

.social-container a.psikologmerkezi { background: #0077b5; }
.social-container a.whatsapp { background: rgb(3, 83, 3); }


.social-container a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.contact-info-container p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin: 1em 0;
    font-size: 1.2em;
}

.contact-info-container i {
    transition: background 0.3s,transform 0.3s;;
    font-size: 1.5em;
    color: rgb(3, 83, 3);
}

.contact-info-container p:hover i {
    transform: scale(1.25);
    color: rgb(3, 83, 3);
}



/* 768px ve altındaki ekranlar için genel ayarlar */
@media only screen and (max-width: 768px) {

    /* Navbar */
    .main-navbar {
        flex-direction: column;
        align-items: center;
        padding: 0.5em;
    }

    .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;
    }

    /* Header içeriği */
    .full-screen .content {
        margin-left: 0;
        text-align: center;
        padding: 1em;
        max-width: 100%;
    }

    .full-screen h1 {
        font-size: 2em;
    }

    .full-screen p {
        font-size: 1em;
        padding: 0 1em;
    }

    .full-screen .btn {
        font-size: 1em;
        padding: 0.5em 1.5em;
    }

    /* Hakkımda bölümü */
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text, .about-image {
        width: 100%;
        margin-bottom: 1em;
    }

    .about-image img {
        width: 80%;
    }

    /* İletişim formu */
    .contact-container {
        flex-direction: column;
        gap: 1em;
    }

    .form-container, .info-container {
        width: 100%;
    }

    form .form-group {
        flex: 1 1 100%;
        margin-left: 0;
    }

    form input, form textarea, form button {
        width: 100%;
    }

    /* Footer */
    footer {
        padding: 1em;
        font-size: 0.9em;
    }

    /* Genel font ayarları */
    body, html {
        font-size: 0.9em;
    }
    .logo1{
        opacity: 0;
    }
}

/* 480px ve altındaki ekranlar için daha küçük ayarlar */
@media only screen and (max-width: 480px) {

    .logo1{
        opacity: 0;
    }
    
    /* Header içerik */
    .full-screen h1 {
        font-size: 1.5em;
    }

    .full-screen p {
        font-size: 0.9em;
    }

    .full-screen .btn {
        font-size: 0.9em;
    }

    /* Hakkımda bölümü */
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-image img {
        width: 90%;
    }

    /* Navbar */
    .main-navbar ul {
        flex-direction:row;
        padding: 0;
        text-align: center;
    }

    .main-navbar ul li {
        padding: 0.2em 0.2em;
    }

    /* İletişim formu */
    .contact-container {
        flex-direction: column;
        gap: 0.5em;
    }

    .form-container, .info-container {
        width: 100%;
        margin: 3em auto;
    }


    /* Footer */
    footer {
        padding: 0.5em;
        font-size: 0.8em;
    }

    /* Genel font ayarları */
    body, html {
        font-size: 0.8em;
    }
}

/* Yukarıdan Gelme Animasyonu */
@keyframes slideDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Alttan Gelme Animasyonu */
@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animasyon Sınıfları */
.slide-down {
    opacity: 0; /* Animasyon başlamadan önce görünmez */
}

.slide-up {
    opacity: 0; /* Animasyon başlamadan önce görünmez */
}






