/* Genel Stil Ayarları */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c3e50;
    color: #fff;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn:hover {
    background-color: #ffc107;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    flex-grow: 0;
}

.logo img {
    height: 80px;
}

.main-nav a {
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ffc107;
}

.social-icons-header a {
    margin-left: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    padding: 10px 20px;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffc107;
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    color: #2c3e50;
}

.page-banner h1 {
    font-size: 3rem;
    margin: 0;
    color: #2c3e50;
}

/* Section Header */
.section-header .sub-title {
    background-color: #f1f1f1;
    color: #2c3e50;
    padding: 5px 15px;
    display: inline-block;
}

.section-header .main-title {
    background-color: #f1f1f1;
    color: #2c3e50;
    padding: 10px 20px;
    display: inline-block;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 20px;
}

/* Hizmetler ve Diğer Bölümler */
.services-section,
.advantages-section,
.testimonials-section,
.contact-form-section,
.fabrics-section,
.about-us-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

/* Hakkımızda Sayfasına Özel Düzenleme */
#hakkimizda-sayfasi .about-us-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 5rem auto;
}

#hakkimizda-sayfasi .about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

#hakkimizda-sayfasi .about-text-content {
    flex: 1;
}

#hakkimizda-sayfasi .about-image {
    max-width: 500px;
    margin: 0 auto;
    border: 5px solid #ffc107;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#hakkimizda-sayfasi .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

#hakkimizda-sayfasi .about-text-content p,
#hakkimizda-sayfasi .about-text-content-bottom p {
    text-indent: 2rem;
    margin-bottom: 1.5rem;
}

/* Callout Section */
.callout-section {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.callout-section.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:#ffc107;; /* Renk yarı saydam yapıldı */
    z-index: 1;
}

.callout-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 3rem;
}
.callout-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background-color: #ffc107;
    color: #2c3e50;
    padding: 10px 20px;
}
.callout-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    background-color: #ffc107;
    color: #2c3e50;
    padding: 10px 20px;
}
.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.stat-item {
    background: rgba(250, 248, 240);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.stat-item span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    color: #2c3e50;
}
.stat-item p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.advantage-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffc107;
    color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}
.advantage-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Testimonials Section */
.testimonials-section .section-header .sub-title {
    font-size: 1.2rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: #2c3e50;
    background: none;
}
.testimonials-section .section-header .main-title {
    background: none;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.author-info {
    text-align: right;
    font-size: 0.9rem;
}
.author-info p {
    font-style: normal;
    margin: 0;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.contact-info,
.contact-form-container {
    flex: 1;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.contact-info h3,
.contact-form-container h3 {
    margin-bottom: 1.5rem;
}
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.contact-info p i {
    margin-right: 10px;
    color: #ffc107;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* İletişim sayfasındaki WhatsApp butonu için */
.contact-info .contact-whatsapp-btn {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.contact-info .contact-whatsapp-btn i {
    margin-right: 10px;
}

/* Harita Bölümü */
.map-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.map-container {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #f4f4f4;
    padding: 4rem 2rem 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}
.footer-col h3 {
    color: #ffc107;
    margin-bottom: 1.5rem;
}
.footer-col p,
.footer-col li {
    font-size: 0.95rem;
}
.footer-col ul {
    list-style-type: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: 0.5rem;
}
.footer-col a {
    color: #f4f4f4;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #ffc107;
}
.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}
.copyright {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.copyright p {
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

/* Footer'daki sosyal medya linkleri için yeni sınıf */
.social-links-footer a {
    color: #f4f4f4;
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

/* Fotoğraf Galerisi için yeni grid yapısı */
.photo-gallery-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.photo-item {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    height: 250px;
    border: 3px solid #ffc107;
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.photo-item:hover img {
    transform: scale(1.05);
}

/* Video galerisini gizlemek için bu kodu ekleyin */
.video-gallery-section {
    display: none;
}

.services-section {
    padding: 60px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Daha iyi bir mobil uyumluluk için */
    gap: 30px;
    margin-top: 40px;
}

/* Hizmet kartlarının düzeni ve stili */
.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Kart görsellerinin eşit boyutta olması */
.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Kart içeriğinin stili */
.service-card .card-content {
    padding: 24px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Modal (Tam Ekran Resim Görüntüleyici) */

/* Modal (Tam Ekran Resim Görüntüleyici) */
.modal {
    display: none; /* Bu satır modal'ı varsayılan olarak gizler */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 90%;
    object-fit: contain;
}
.modal-description {
    margin: 10px auto 0 auto;
    display: block;
    width: 80%;
    max-width: 900px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Menü ve Header Ayarları */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    .main-nav.active {
        transform: translateY(0);
    }
    .main-nav a {
        margin: 15px 0;
        font-size: 1.5rem;
    }
    .social-icons-header {
        display: flex;
        order: 3;
        gap: 10px;
    }
    .menu-toggle {
        display: block;
        order: 2;
    }
    .logo {
        flex-grow: 0;
    }
}
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
#hakkimizda-sayfasi .about-us-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 5rem auto;
}

#hakkimizda-sayfasi .about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

#hakkimizda-sayfasi .about-text-content {
    flex: 1;
}

#hakkimizda-sayfasi .about-image {
    max-width: 500px;
    margin: 0 auto;
    border: 5px solid #ffc107;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#hakkimizda-sayfasi .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

#hakkimizda-sayfasi .about-text-content p,
#hakkimizda-sayfasi .about-text-content-bottom p {
    text-indent: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    #hakkimizda-sayfasi .about-grid {
        flex-direction: column;
    }
    #hakkimizda-sayfasi .about-image {
        max-width: 100%;
    }
}
/* Mobil Görünüm İçin Stiller */
@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Header yüksekliğinize göre ayarlayabilirsiniz */
        left: 0;
        background-color: #2c3e50; /* Menü arka plan rengi */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        color: #fff;
        padding: 15px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-toggle {
        display: block; /* Mobil butonu görünür hale getirir */
    }

    .social-icons-header {
        display: none;
    }
}
/* Mobil cihazlar için özel stiller */
@media screen and (max-width: 768px) {
    /* ... (Mevcut mobil menü stiliniz burada kalacak) ... */

    .hero-content h1 {
        font-size: 1.8rem; /* Başlık fontu mobil için küçüldü */
        padding: 5px 10px;
    }
    
    .hero-content p {
        display: none; /* Paragraf metni mobilde gizlendi */
    }

    .hero-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}