/* Main Styles for Kazancı Murat Usta */

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #0056b3;
    transition: all 0.3s ease;
}

a:hover {
    color: #004494;
}

/* Header Styles */
.header-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 0.2rem;
}

.site-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

.contact-info {
    font-size: 1.25rem;
}

.phone-link {
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 30px;
    background: #0056b3;
    color: white;
    display: inline-block;
}

.phone-link:hover {
    background: #004494;
    color: white;
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0056b3;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #0056b3;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Video Container */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    border-radius: 8px;
    margin-bottom: 15px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 10px;
}

/* Gallery */
.gallery-img {
    border-radius: 8px;
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* Advantages */
.advantage-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    height: 100%;
}

.advantage-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 10px;
}

/* Contact Button */
.contact-btn {
    padding: 15px 30px;
    font-size: 1.3rem;
    background-color: #0056b3;
    border-color: #0056b3;
}

.contact-btn:hover {
    background-color: #004494;
    border-color: #004494;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* WhatsApp Buttons */
.whatsapp-button-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #25d366;
    padding: 10px;
    text-align: center;
    z-index: 1000;
}

.whatsapp-button-mobile .whatsapp-link {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.whatsapp-button-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button-desktop .whatsapp-link {
    background: #25d366;
    border-radius: 50%;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button-desktop .whatsapp-link:hover {
    transform: scale(1.1);
}

/* Media Queries */
@media (max-width: 767px) {
    .site-title {
        font-size: 1.8rem;
    }
    
    .site-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .service-img, .gallery-img {
        height: 180px;
    }
}

/* Gallery hover effect */
.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-hover, .gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Gallery Modal styles */
.modal-dialog.modal-lg {
    max-width: 800px;
}

#galleryModalImage {
    max-height: 70vh;
    object-fit: contain;
}

/* Touch controls for gallery navigation */
@media (max-width: 767px) {
    .modal-body {
        position: relative;
    }
    
    .modal-body:before, .modal-body:after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 30%;
        z-index: 1;
    }
    
    .modal-body:before {
        left: 0;
    }
    
    .modal-body:after {
        right: 0;
    }
}