/* Header (Üst Menü) */

.logo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 170px; /* Adjust size */
   /* height: 290px; */
}
header {
    background-color: #bbd0c8;
    padding: 30px 0;
    text-align: center;
    font-size: 40px;
    font-style: italic;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Diğer öğelerin altında kalmaması için */
   /*  height: 290px; Header yüksekliği */

}

/* Genel Stil */
body {
    font-family: Arial, sans-serif;
    margin: 0 ;
    padding-top: 200px;
    background-color: #f4f4f4;
    text-align: center;
    /*height: 400px;*/
    width:fit-content;
    min-width: 2200px;
    zoom:35%;
    

    }
    .container {
        min-width:2000px; /* Sayfa genişliğini sınırlar */
        margin: 0 auto;
    }
nav ul {
    list-style: none;
    padding: 0;

}

nav ul li {
    display: inline;
    margin: 0 15px;
    
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 30px;
    
}

/* Hero (Ana Banner) */
.home {
    /*height: 350px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    
  
}

.home h2 {
    font-size: 3em;
}

.home a{
    font-size: 35px; /* Yazı boyutunu büyüt */
    padding: 12px 24px;
    background-color:white; /* Buton rengi */
    color: rgb(79, 126, 203);
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.3s ease, filter 0.3s;
}

.btn:hover {
    transform: scale(1.05); /* Butonu hafifçe büyüt */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.7); /* Aydınlatma efekti */
    filter: brightness(1.2); /* Butonu aydınlat */
}


/* Bölüm Stilleri */
section {
    padding: 50px 20px;
}

#about, #services, #booking, #contact {
    background-color: white;
    padding: 30px;
    margin: 20px auto;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
 h2 {
    font-size: 35px;
}
.fixed-social {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.fixed-social a {
    padding: 8px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.fixed-social a:hover {
    transform: scale(1.1);
}

/* Facebook */
.fixed-social a:nth-child(1) {
    background-color: #1877F2;
    color: white;
}

/* Instagram */
.fixed-social a:nth-child(2) {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    color: white;
}

/* LinkedIn */
.fixed-social a:nth-child(3) {
    background-color: #0A66C2;
    color: white;
}

/* Randevu Formu */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 25px;
}

form label {
    margin-top: 10px;
    font-weight: bold;
}

form input, 
form textarea {
    padding: 10px;
    width: 50%;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 20px;
}

form input[type="email"] {
    width: 50%;
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    background-color: #007BFF;
    color: white;
    font-size: 18px; /* Yazı boyutunu büyütme */
    padding: 15px 30px; /* Buton iç boşluklarını büyütme */
    border-radius: 8px; /* Kenar yuvarlaklığı */
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold; /* Yazıyı kalın yapma */
}

form button:hover {
    background-color: #0056b3;
}

.home {
    position: relative;
    height: 1000px;
    overflow: hidden;
}


.home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Fotoğrafın arkada kalmasını sağlar */
   
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Görselin üzerine hafif karartma efekti */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; 
}

.overlay h2 {
    font-size: 3.4em;
    font-family:'Times New Roman', Times, serif;
    font-style:italic;
    font-weight:bold;
    font: optional;
    color: #dcdcd9;
}

.overlay p {
    font-size: 2.4em;
    font-family:'Times New Roman', Times, serif;
    font-style:italic;
    font-weight:500;
    max-width: 1100px;
    color: #dcdcd9;
    max-width: 900;
}

.home video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(2.0);
}

.btn {
    background-color: white;
    color: #008080;
    padding: 15px 25px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 18px;
}


.ndis-logo {
    height: 50px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    margin-left: 15px; /* Add spacing from the title */
    vertical-align: middle;
}


/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 80px; /* Adjusted position */
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons */
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 0.5s ease-in-out forwards;
}

/* Floating Button Styling */
.floating-btn {
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    position: relative; /* Needed for tooltip */
}

/* Call Button */
.call-btn {
    background-color: #007BFF; /* Blue for phone */
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366; /* Green for WhatsApp */
}

/* Email Button */
.email-btn {
    background-color: #FF5733; /* Orange for email */
}

/* Icon Styling */
.floating-btn i {
    color: white;
}

/* Hover Effects - Slight Bounce Effect */
.floating-btn:hover {
    transform: scale(1.1); /* Slight bounce on hover */
    opacity: 0.8;
}

/* Click Animation */
.floating-btn:active {
    transform: scale(0.9);
}

/* Smooth Fade-in Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tooltip Styling */
.floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    color: white;
    padding: 5px 10px;
    font-size: 24px;
    white-space: nowrap;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
}

/* Show Tooltip on Hover */
.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.info-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
}
@media (max-width: 1024px) {
    .info-box {
        width: calc(33.33% - 20px); /* Ekran daraldıkça 3 sütuna düşsün */
    }
}

@media (max-width: 768px) {
    .info-box {
        width: calc(50% - 20px); /* Küçük ekranlarda 2 sütuna düşsün */
    }
}

@media (max-width: 480px) {
    .info-box {
        width: 100%; /* Mobilde tek sütun olsun */
    }
}


.info-box {
    position: relative; /* Overlay için gerekli */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color:white; 
    color: white; /* Yazılar daha okunaklı */
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align:left;
    width: calc(20% - 20px); /* 5 sütun yap */
    height: 400px;
    box-shadow: 0px 4px 8px rgba(181, 175, 175, 0.2);
    transition: transform 0.3s ease-in-out;  
    display: flex;  /* Dikey ve yatay hizalama için */
    flex-direction: column; /* İçeriği dikey hizalar */
    justify-content: center; /* Dikey ortalama */
    align-items: center; /* Yatay ortalama */
}

/* Hover efekti */
.info-box:hover {
    transform: scale(1.10);
}

/* Yazıları daha belirgin hale getirmek için overlay efekti */
.info-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(223, 219, 219, 0.817); /* Koyu overlay */
    border-radius: 10px;
    z-index: 1;
}
.info-box h3,
.info-box p,
.info-box a {
    position: relative;
    z-index: 2; /* Yazılar overlay’in üstünde kalacak */
}

.info-box h3 {
    margin-bottom: 35px;
    font-family:'Times New Roman', Times, serif;
    font-style: italic;
    font-size: 55px;
    color: white;
    text-align: center;
}

.info-box p {
    font-family:'Times New Roman', Times, serif;
    font-size: 35px;
    font-style: italic;
    font-weight: bold;
    color:rgb(22, 21, 21);
    text-align: center;
    text-decoration:#ddd;
  
}

.info-box a {
    display: inline-block;
    margin-top:10px;
    padding: 10px 15px;
    background-color:#bbd0c8;
    color: white;
    text-decoration:none;
    border-radius: 5px;
    font-size: 22px;
}

.info-box a:hover {
    background-color: #0056b3;
}
.info-box p i {
    margin-bottom: 20px;
    font-size: 1.2em; /* Adjust size as needed */
}



.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
    width: max-content; /* Adjust width based on content */
    min-width: 150px; /* Ensures a minimum width */
}
.dropdown-content a:hover {
    background-color: #cfcdcb;
}
.dropdown:hover .dropdown-content {
    display: block;
}

#contact {
    padding: 30px; /* İç boşluğu artırma */
    text-align: center; /* İçeriği ortalama (isteğe bağlı) */
}

#contact h2 {
    font-size: 30px; /* Başlık boyutunu büyütme */
    font-weight: bold; /* Kalın yapma */
    margin-bottom: 20px;
}

#contact p {
    font-size: 20px; /* Metin boyutunu büyütme */
    margin: 10px 0; /* Paragraflar arasına boşluk ekleme */
}

#contact a {
    font-size: 20px; /* E-posta bağlantısını büyütme */
    color: #007BFF; /* Daha belirgin mavi renk */
    text-decoration: none; /* Alt çizgiyi kaldırma */
    font-weight: bold;

}

#contact a:hover {
    text-decoration: underline; /* Üzerine gelindiğinde alt çizgi ekleme */
}

.image-text-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f8f8;
}

.image-container {
    flex: 1;
    text-align: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 1000px;
    border-radius: 10px;
    text-align: left;
}

.text-container {
    flex: 1;
    padding: 20px;
}

.text-container h2 {
    font-size: 35px;
    color: #333;
}

.text-container h1 {
    font-size: 45px;
    color: #29b853;
}

.text-container p {
    font-size: 30px;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}   

#locations {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.locations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: auto;
}

.locations-grid ul {
    list-style-type: none;
    padding: 0;
}

.locations-grid li {
    font-size: 16px;
    line-height: 1.6;
    padding: 5px 0;
}
