/* ----------------------------------- */
/* 1. Genel Stiller */
/* ----------------------------------- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-container {
    flex: 1 0 auto;
    background: transparent;
    overflow: visible;
}

/* Başlıklar */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: #207895;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Paragraflar */
p {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    color: #444;
}

/* ----------------------------------- */
/* 2. Header Stilleri */
/* ----------------------------------- */
header {
    background: #207895;
    color: white;
    padding: 20px 0;
    -webkit-box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.62);
    -moz-box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.62);
    box-shadow: 0px 25px 25px 0px rgba(0,0,0,0.62);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

header h1 {
    margin: 0;
    display: flex;
    align-items: center;
}

header .logo {
    height: 38px;
    vertical-align: middle;
    margin-right: 8px;
}

header h1 a {
    display: block;
}

header h1 a:hover {
    color: #fcbf49;
}

/* Menü Stilleri */
header nav ul.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav ul.nav-menu li a {
    font-family: 'Cinzel', serif;
    color: white;
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s ease;
}

header nav ul.nav-menu li a:hover {
    color: #fcbf49;
}

/* ----------------------------------- */
/* 3. Hamburger Menü Stilleri */
/* ----------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Menü Responsive Ayar */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header nav ul.nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #207895;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }

    header nav ul.nav-menu.active {
        display: flex;
        background: rgba(32, 120, 149, 0.75);
    }

    header nav ul.nav-menu li {
        text-align: center;
        margin: 15px 0;
    }

    header nav ul.nav-menu li a {
        font-size: 18px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .header-container {
        padding: 0 20px;
    }

    header .logo {
        height: 35px;
    }
}

@media (max-width: 480px) {
    header nav ul.nav-menu li a {
        font-size: 16px;
    }

    header nav ul.nav-menu {
        top: 70px;
        padding: 15px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    header .logo {
        height: 30px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }
}

/* ----------------------------------- */
/* 4. Carousel Stilleri */
/* ----------------------------------- */
#carousel {
    padding: 0;
    margin: 0;
    background: none;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 60vh;
    max-height: 600px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: color 0.3s ease;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover, .carousel-next:hover {
    color: #fcbf49;
    background: none;
}

/* ----------------------------------- */
/* 5. Section Stilleri */
/* ----------------------------------- */
section {
    padding: 40px;
    text-align: center;
    background: white;
    margin: 30px;
    border-radius: 10px;
}

/* Welcome Bölümü */
#welcome {
    padding: 30px;
    text-align: center;
    background: #eef6f9;
    margin: 30px;
    border-radius: 10px;
}

#welcome h2 {
    color: #40c4ff;
    font-size: 28px;
    margin-bottom: 15px;
}

#welcome p {
    font-size: 16px;
    color: #444;
}

/* Featured Services Bölümü */
#featured-services {
    padding: 40px;
    text-align: center;
    background: white;
    margin: 30px;
    border-radius: 10px;
}

#featured-services h1 {
    color: #40c4ff;
    font-size: 36px;
    margin-bottom: 30px;
}

#featured-services p a {
    color: #207895;
    text-decoration: none;
    font-weight: bold;
}

#featured-services p a:hover {
    color: #3098b5;
}

/* Hizmetler Bölümü */
#hizmetler {
    padding: 40px;
    text-align: center;
    background: white;
    margin: 60px 30px 30px 30px;
    border-radius: 10px;
}

#hizmetler h1 {
    color: #207895;
    font-size: 48px;
    margin-bottom: 30px;
}
/* Ayak Sağlığı Hizmetleri Bölümü */
#ayak-sagligi {
    padding: 40px;
    text-align: center;
    background: #eef6f9; /* Hafif mavi arka plan, diğer bölümlerden ayrılması için */
    margin: 30px;
    border-radius: 10px;
    position: relative;
}

#ayak-sagligi h2 {
    color: #207895;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

#ayak-sagligi h2::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #fcbf49; /* Sarı ayırıcı çizgi */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Ayak Sağlığı Detayları */
#ayak-sagligi-details {
    padding: 40px;
    text-align: left;
    background: white;
    margin: 30px;
    border-radius: 10px;
}

#ayak-sagligi-details .content {
    max-width: 900px;
    margin: 0 auto;
}

#ayak-sagligi-details h2 {
    color: #207895;
    font-size: 36px;
    margin-bottom: 20px;
}

#ayak-sagligi-details h3 {
    color: #207895;
    font-size: 24px;
    margin-bottom: 15px;
}

#ayak-sagligi-details p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

#ayak-sagligi-details ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

#ayak-sagligi-details ul li {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}
/* Ayak Sağlığı Hizmetleri (Ana Sayfada ve Ayak Sağlığı Sayfasında) */
#ayak-sagligi,
#ayak-sagligi-services {
    padding: 40px;
    text-align: center;
    background: #eef6f9;
    margin: 30px;
    border-radius: 10px;
    position: relative;
}

#ayak-sagligi h2,
#ayak-sagligi-services h1 {
    color: #207895;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

#ayak-sagligi h2::before,
#ayak-sagligi-services h1::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #fcbf49;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
/* Hizmet Kutuları */
.service-box a {
    text-decoration: none; /* Linkin alt çizgisini kaldır */
    color: inherit; /* Rengi miras al */
    display: block; /* Tüm kutuyu tıklanabilir yap */
}

/* Tıklanabilir olduğunu belirtmek için ek bir hover efekti */
.service-box:hover {
    cursor: pointer; /* Fare imlecini el işaretine çevir */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #e6f0f5;
    border-color: #207895;
}

/* Detaylı Bilgi İçin Tıklayın Butonu */
.cta {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background: #207895;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #3098b5;
    transform: scale(1.05);
}

/* Hizmet Kutuları */
.services-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    width: calc(50% - 10px);
    max-width: none;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-sizing: border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; /* Temel geçiş */
}
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: #e6f0f5; /* Arka planı hafif mavi tonuna çevirir */
	background: linear-gradient(135deg, #e6f0f5, #d9e8f0); /* Hafif bir gradyan geçiş */
	border-color: #207895;
	border: 1px solid #ddd;
}

.service-box img {
    width: 90px;
    height: 90px;
    background-color: #fcbf49;
    border-radius: 50%;
    padding: 17px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-box:hover img {
    transform: scale(1.2) rotate(-10deg); /* İkonu hafif büyüt */
    background-color: #e0a83a; /* Sarı tonunu biraz koyulaştır */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: color 0.3s ease, transform 0.3s ease;
}

.service-box h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
	color: #207895; /* Başlık rengi */
    transition: color 0.3s ease; /* Başlık rengi için geçiş */
	
}

.service-box h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #3098b5;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.service-box:hover h3 {
    color: #3098b5; /* Hover’da daha açık bir mavi tonu */
	transform: scale(1.05);
}

.service-box:hover h3::after {
    width: 50%; /* Çizgi genişler */
}

/* Hizmet Kutuları Responsive Ayar */
@media (max-width: 768px) {
    .service-box {
        width: 100%;
    }
}

/* Hakkımızda Bölümü */
#hakkimizda {
    padding: 40px;
    text-align: left;
    background: white;
    margin: 60px 30px 30px 30px;
    border-radius: 10px;
}


#hakkimizda .content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 20px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
}
#hakkimizda h1 {
    color: #207895;
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

#hakkimizda h2 {
    color: #40c4ff;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hakkimizda p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

#hakkimizda .highlight {
    color: #40c4ff;
    font-weight: bold;
    font-style: italic;
}

#hakkimizda .mission-vision {
    background: rgba(32, 120, 149, 0.1);
    padding: 15px;
    margin: 20px 0;
    border-radius: 15px;
}

#hakkimizda .cta {
    text-align: center;
    margin-top: 30px;
}

#hakkimizda .cta button {
    background: #fcbf49;
    color: #fff;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#hakkimizda .cta button:hover {
    background: #e0a83a;
    transform: scale(1.05);
}/* Hakkımızda Daha Fazla Göster Butonu */
.show-more {
    text-align: center;
    margin-top: 20px;
}

#show-more-btn {
    background: #207895;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

#show-more-btn:hover {
    background: #3098b5;
    transform: scale(1.05);
}

/* Hizmetler Listesi */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #e6f0f5;
    border-color: #207895;
}

.service-item h3 {
    color: #207895;
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* İletişim Bölümü */
#iletisim {
    padding: 40px;
    text-align: center;
    background: white;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 1000px;
    color: #333;
    border: none;
    box-shadow: none;
    overflow: hidden;
    position: relative;
}

#iletisim h2 {
    color: #207895;
    font-size: 36px;
    margin-bottom: 20px;
}

#iletisim p {
    color: #333;
    font-size: 16px;
    margin: 10px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info, .contact-form {
    flex: 1;
    background: #eef6f9;
    padding: 20px;
    border-radius: 10px;
}

.contact-info h3, .contact-form h3 {
    color: #207895;
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background: #207895;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #3098b5;
}

.map {
    margin-top: 20px;
}

.map iframe {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: none;
}
a.footerlink{
  color: inherit;       /* Bağlantı rengini parent elemanın rengiyle aynı yapar */
  text-decoration: none; /* Altı çizgiyi kaldırır */
}

/* İletişim Bölümü Responsive Ayar */
@media (max-width: 1024px) {
    #iletisim {
        max-width: 90%;
        padding: 30px;
    }

    .contact-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #iletisim {
        max-width: 90%;
        padding: 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .contact-info h3, .contact-form h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .contact-info p {
        font-size: 14px;
        margin: 5px 0;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form textarea {
        rows: 4;
    }

    .contact-form button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .map {
        margin-top: 15px;
    }

    .map iframe {
        width: 100%;
        height: 300px;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    #iletisim {
        max-width: 100%;
        padding: 15px;
        margin: 5px;
    }

    .contact-container {
        gap: 10px;
    }

    .contact-info, .contact-form {
        padding: 10px;
    }

    .contact-info h3, .contact-form h3 {
        font-size: 18px;
    }

    .contact-info p {
        font-size: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
        padding: 6px;
    }

    .contact-form textarea {
        rows: 3;
    }

    .contact-form button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .map iframe {
        height: 200px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		border: 1px solid #ddd;
    }
}

/* ----------------------------------- */
/* 6. Buton Stilleri */
/* ----------------------------------- */
button {
    background: #207895;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s ease;
}

button:hover {
    background: #3098b5;
}

/* ----------------------------------- */
/* 8. Footer Stilleri */
/* ----------------------------------- */
footer {
    text-align: center;
    background: #207895;
    color: white;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}