 /* css/styles.css */

/* Genel Reset ve Tipografi */
body {
    font-family: 'Roboto', sans-serif; /* 'Roboto' font, Google Fonts üzerinden yüklendiğinden emin olun */
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Hafif gri arka plan */
}
/* Navbar Stilleri */
.navbar {
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #d32f2f; /* Koyu kırmızı hover */
    background-color: #ffe6e6; /* Açık kırmızı arka plan hover */
}

.navbar .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border: none;
    z-index: 1000; /* Dropdown'un diğer öğelerin üstünde görünmesini sağlar */
}

.navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #ffe6e6; /* Açık kırmızı arka plan hover */
    color: #d32f2f; /* Koyu kırmızı hover */
}

.navbar .nav-link.dropdown-toggle {
    cursor: pointer;
}

/* Genel Düğme Stilleri */
.btn {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b71c1c;
    border-color: #b71c1c;
}

.btn-success {
    background-color: #388e3c;
    border-color: #388e3c;
    color: #fff;
}

.btn-success:hover {
    background-color: #2e7d32;
    border-color: #2e7d32;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-outline-danger {
    color: #d32f2f;
    border-color: #d32f2f;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #d32f2f;
    border-color: #d32f2f;
}

/* Genel Link Stilleri */
a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b71c1c;
    text-decoration: underline;
}

/* Başlık Stilleri */
h2, h3, h4, h5, h6 {
    color: #d32f2f;
}

/* Hero Bölümü Genel Stili */
.hero {
    position: relative;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(139, 0, 0, 0.6), rgba(139, 0, 0, 0.8)); /* Koyu kırmızı degrade */
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #ffdddd; /* Açık kırmızı başlık */
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ffe6e6; /* Açık kırmızı açıklama */
}

.hero .btn-primary {
    background-color: #d32f2f; /* Koyu kırmızı buton */
    border-color: #d32f2f;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .btn-primary:hover {
    background-color: #b71c1c; /* Daha koyu kırmızı hover */
    transform: scale(1.1);
}

.hero .btn-outline-light {
    color: #fff;
    border-color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero .btn-outline-light:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Slider Genel Ayarları */
#hero-slider .carousel-item {
    position: relative;
    min-height: 80vh;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Animasyonlu Overlay */
.animated-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-overlay img {
    max-width: 100%;
    max-height: 100%;
    /* Animasyon için örnek CSS */
    animation: fadeInDown 1.5s ease-in-out;
}

/* İçerik */
.slide-content {
    position: relative;
    z-index: 3;
    min-height: 80vh;
}

.hero-inner {
    max-width: 800px;
}

#hero-slider h1, #hero-slider p {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

/* Mobilde Metnin Görselin Üzerine Gelmesi */
@media (max-width: 768px) {
    .animated-overlay {
        display: none;
    }
    
    .slide-bg {
        background-position: center;
    }

    .slide-content {
        text-align: center;
    }

    #hero-slider h1 {
        font-size: 2rem;
    }

    #hero-slider p {
        font-size: 1rem;
    }
}

/* Animasyonlar */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kart Tasarımı */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

.card .image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Oran ihtiyacınıza göre ayarlayın (örneğin, 4:3) */
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
object-fit: contain;
    
}

.card-body h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #d32f2f; /* Koyu kırmızı başlık */
    font-family:'Montserrat';
}

.card-body ul li i {
    color: #28a745; /* Başarı için yeşil ikonlar */
}

/* Portföy Galerisi */
#portfolio .portfolio-card {
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#portfolio .portfolio-card:hover {
    transform: scale(1.05);
}

#portfolio .portfolio-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
}

/* Müşteri Yorumları */
#testimonials .carousel-item {
    padding: 20px;
}

#testimonials .carousel-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Referanslar Bölümü */
#referanslar h2 {
    font-size: 2rem;
}

#referanslar .carousel-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

#referanslar .carousel-item p {
    font-size: 1rem;
}

#referanslar blockquote {
    border-left: 4px solid #d32f2f;
    padding-left: 15px;
}

/* CTA Bölümü */
#cta-section {
    background-color: #dc3545; /* Bootstrap'ın bg-danger rengi */
}

#cta-section .border-white {
    border-color: #ffffff !important; /* Beyaz kenarlık */
}

#cta-section .bi {
    color: #ffffff; /* İkonların beyaz rengi */
    font-size: 2rem;
}

#cta-section .btn-danger {
    background-color: #dc3545;
    border-color: #ffffff; /* Beyaz çerçeve */
    color: #ffffff; /* Beyaz metin */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#cta-section .btn-danger:hover {
    background-color: #c82333;
    border-color: #ffffff;
    color: #ffffff;
}

#cta-section .btn-outline-light {
    background-color: transparent;
    border-color: #ffffff; /* Beyaz çerçeve */
    color: #ffffff; /* Beyaz metin */
}

#cta-section .btn-outline-light:hover {
    background-color: #ffffff;
    color: #dc3545;
}

/* Referans Carousel */
#referans-carousel .carousel-control-prev-icon,
#referans-carousel .carousel-control-next-icon {
    background-color: #d32f2f;
    border-radius: 50%;
    padding: 10px;
}

#referans-carousel .carousel-control-prev-icon:hover,
#referans-carousel .carousel-control-next-icon:hover {
    background-color: #b71c1c;
}

/* Footer Tasarımı */
footer {
    background-color: #b71c1c; /* Koyu kırmızı arka plan */
    color: #fff;
    padding: 40px 15px;
    text-align: center;
}

footer .social-icons a {
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #ffdddd; /* Açık kırmızı hover */
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Uzman Ekibimiz Bölümü */
#ekibimiz .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

#ekibimiz .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

#ekibimiz .card .img-fluid {
    border: 3px solid #d32f2f;
}

#ekibimiz .card h5 {
    color: #d32f2f;
}

#ekibimiz .card p {
    color: #666;
}

/* Accordion Stilleri */
.accordion-button {
    background-color: #ffe6e6;
    color: #d32f2f;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #d32f2f;
    color: #fff;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: #fff;
    color: #333;
}

/* Proje Detayları */
.project-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('../assets/portfolio/detay-header.jpg') no-repeat center center/cover;
}

.project-details h2,
.project-gallery h2,
.project-video h2,
.project-testimonials h2,
.project-cta h2 {
    color: #d32f2f;
}

.project-testimonials blockquote {
    border-left: 4px solid #d32f2f;
    padding-left: 15px;
}

.project-gallery img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-video iframe {
    border-radius: 15px;
}

/* Kategori Başlıkları için Stil */
.kategori-baslik {
    text-align: center;
    padding: 15px;
    border: 2px solid white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Özel Renk Sınıfları */
.bg-primary-dark {
    background-color: #003366; /* Daha koyu mavi tonu */
    color: white;
    font-family:'montserrat';
}

.bg-success {
    background-color: #28a745;
    color: white;
    font-family:'montserrat';
}

.bg-warning {
    background-color: #ffc107;
    color: black;
    font-family: 'Montserrat';
}

.bg-danger {
    background-color: #dc3545;
    color: white;
}

/* Aspect Ratio Kapsayıcı */
.image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Oran ihtiyacınıza göre ayarlayın (örneğin, 4:3) */
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .navbar .nav-link {
        padding: 8px 10px;
    }

    footer {
        padding: 30px 15px;
    }

    /* Portföy Kartları */
    #portfolio .portfolio-card img {
        height: 150px;
    }

    /* Müşteri Yorumları */
    #testimonials .carousel-item p {
        font-size: 0.9rem;
    }

    /* Bakım Hizmetleri Kartları */
    #bakim-hizmetleri .card-body i {
        font-size: 2rem;
    }

    /* Filtre Bakımı Kartları */
    #filtre-bakim .card-body i {
        font-size: 2rem;
    }

    /* Mobilde butonların font boyutunu ve padding'ini ayarlama */
    .hero-inner .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}


/* Mobilde butonların font boyutunu ve padding'ini ayarlama */
@media (max-width: 576px) {
    .hero-inner .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

#ozellikler i {
    color: #d32f2f; /* İkonların rengi */
    transition: transform 0.3s;
}

#ozellikler i:hover {
    transform: scale(1.1);
}

#ozellikler h5 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #333;
}

#ozellikler p {
    color: #555;
}

#ozellikler .col-md-3 {
    transition: background-color 0.3s, box-shadow 0.3s;
}

#ozellikler .col-md-3:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


/* Bilgi ve SSS Bölümü */
#cerkezkoy-bilgi-sss ul li i {
    color: #28a745; /* Yeşil renkli ikonlar */
}

#cerkezkoy-bilgi-sss .accordion-button {
    background-color: #f8f9fa;
    color: #333;
}

#cerkezkoy-bilgi-sss .accordion-button:not(.collapsed) {
    background-color: #007163;
    color: #fff;
}

#cerkezkoy-bilgi-sss .accordion-body {
    background-color: #fff;
}




/* SSS Sayfası Stil Düzenlemeleri */
#sss .accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: bold;
}

#sss .accordion-button:not(.collapsed) {
    background-color: #dc3545;
    color: #fff;
}

#sss .accordion-body {
    background-color: #fff;
    color: #555;
}

#sss i {
    color: #dc3545;
}

#sss h1 {
    color: #333;
}

#sss p.lead {
    color: #555;
}
/* Evsel Su Arıtma Bölümü */
.evsel-section {
    background-color: #d32f2f; /* Kırmızı arka plan */
}

.evsel-section .text-white {
    color: #fff; /* Metin ve ikonlar beyaz */
}

.evsel-section .btn-outline-light {
    border-color: #fff; /* Butonların beyaz kenarlığı */
    color: #fff;
}

.evsel-section .btn-outline-light:hover {
    background-color: #fff;
    color: #d32f2f;
}

/* Fabrika Su Arıtma Bölümü */
.fabrika-section {
    background-color: #fff; /* Beyaz arka plan */
}

.fabrika-section .text-dark {
    color: #000; /* Metin ve ikonlar siyah */
}

.fabrika-section .btn-outline-dark {
    border-color: #000; /* Butonların siyah kenarlığı */
    color: #000;
}

.fabrika-section .btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Kafe ve Restoran Su Arıtma Bölümü */
.kafe-section {
    background-color: #d32f2f; /* Kırmızı arka plan */
}

.kafe-section .text-white {
    color: #fff; /* Metin ve ikonlar beyaz */
}

.kafe-section .btn-outline-light {
    border-color: #fff; /* Butonların beyaz kenarlığı */
    color: #fff;
}

.kafe-section .btn-outline-light:hover {
    background-color: #fff;
    color: #d32f2f;
}

/* Genel Stil Düzenlemeleri */
section img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 2rem;
}

section p {
    font-size: 1rem;
    line-height: 1.6;
}

section ul li {
    font-size: 1rem;
}

section ul li i {
    font-size: 1.2rem;
}

section .btn {
    border-radius: 50px;
    padding: 10px 30px;
}



/* El Değmeden Sağlıklı Su Bölümü */
#saglikli-su h2 {
    color: #333;
    font-size: 2rem;
}

#saglikli-su p.lead {
    color: #555;
    font-size: 1.1rem;
}

#saglikli-su .mb-5 i {
    font-size: 3rem;
}

#saglikli-su h5 {
    font-size: 1.25rem;
    color: #333;
    margin-top: 15px;
}

#saglikli-su p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Orta Görsel */
#saglikli-su .img-fluid {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.text-purple {
    color: #9c27b0;
}

.btn-purple {
    background-color: #9c27b0;
    color: #fff;
    border: none;
}

.btn-purple:hover {
    background-color: #7b1fa2;
    color: #fff;
}

.text-pink {
    color: #e91e63;
}

.btn-pink {
    background-color: #e91e63;
    color: #fff;
    border: none;
}

.btn-pink:hover {
    background-color: #d81b60;
    color: #fff;
}

/* Genel Kart Stilleri */
.hizmet-bolge-kart {
    background-color: #1B5E20; /* Varsayılan mat koyu yeşil */
    color: #FFFFFF; /* Beyaz metin ve ikonlar */
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 30px 20px;
}

.hizmet-bolge-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hizmet-bolge-kart i {
    font-size: 2rem;
    color: #FFFFFF; /* Beyaz ikonlar */
}

/* Bölgeye Özel Mat Koyu Yeşil Tonlar */
.cerkezkoy {
    background-color: #004d40; /* Mat koyu yeşil ton */
}

.kapakli {
    background-color: #00695c; /* Mat koyu yeşil ton */
}

.saray {
    background-color: #00796b; /* Mat koyu yeşil ton */
}

.corlu {
    background-color: #00897b; /* Mat koyu yeşil ton */
}

.malkara {
    background-color: #009688; /* Mat koyu yeşil ton */
}

.suleymanpasa {
    background-color: #00796b; /* Mat koyu yeşil ton */
}

.ergene {
    background-color: #00695c; /* Mat koyu yeşil ton */
}

.marmaraereglisi {
    background-color: #004d40; /* Mat koyu yeşil ton */
}

.sarkoy {
    background-color: #003d33; /* Mat koyu yeşil ton */
}

.hayrabolu {
    background-color: #00251a; /* En koyu yeşil ton */
}

.muratli {
    background-color: #005f5f; /* Varsayılan mat koyu yeşil */
}

.tekirdag {
    background-color: #004d40; /* Mat koyu yeşil ton */
}


/* Slider Stilleri */
#ana-slider {
    position: relative;
}

#ana-slider .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

#ana-slider .carousel-item img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

#ana-slider .carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.5); /* Yarı saydam arka plan */
    text-align: left;
}

#ana-slider .carousel-caption h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

#ana-slider .carousel-caption p {
    color: #ddd;
    font-size: 1.25rem;
    margin-top: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

#ana-slider .carousel-caption .btn {
    padding: 12px 30px;
    border-radius: 30px;
}

#ana-slider .carousel-caption .btn-primary {
    background-color: #007bff;
    border: none;
}

#ana-slider .carousel-caption .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

@media (max-width: 768px) {
    #ana-slider .carousel-caption {
        padding: 0 10%;
        align-items: center;
        text-align: center;
    }

    #ana-slider .carousel-caption h2 {
        font-size: 2rem;
    }

    #ana-slider .carousel-caption p {
        font-size: 1rem;
    }
}



/* CSS */
.section-title {
    color: #004d40;
    font-weight: bold;
}
/* CSS */
.section-title {
    text-align: center;
}


/* CSS */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    width: 60%;
    height: 4px;
    background-color: #004d40;
    position: absolute;
    left: 20%;
    bottom: -10px;
    border-radius: 2px;
}

/* CSS */
.section-title {
    background-color: #e0f2f1; /* Açık yeşil ton */
    padding: 10px;
    border-radius: 5px;
}


/* CSS */
.section-title i {
    color: #004d40;
    font-size: 1.5rem;
    vertical-align: middle;
}


/* CSS */
.section-title {
    background: linear-gradient(90deg, #004d40, #00796b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
