/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('resimler/hero-resim.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Cards */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(0,123,255,0.18);
    border: none;
}

.card .card-title, .card .fa-3x {
    transition: color 0.3s;
}

.card:hover .card-title, .card:hover .fa-3x {
    color: #007bff;
}

.card .card-text {
    transition: none;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,123,255,0.12);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,86,179,0.18);
}

/* Contact Form */
.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 15px;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #007bff;
}

/* Contact Info */
.contact-info i {
    color: #007bff;
    margin-right: 10px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    color: #007bff;
}

/* Footer */
footer {
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 60px;
        background-attachment: scroll !important;
    }
    .contact-info {
        margin-bottom: 30px;
    }
    .hakkimizda-gallery-grid .gallery-img {
        height: 90px;
    }
    .hakkimizda-gallery-grid .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .contact-icons-card {
        padding: 1.2rem 0.5rem;
    }
    .contact-icon {
        font-size: 2rem;
    }
    .contact-label, .contact-info {
        font-size: 0.98rem;
    }
    h1, .display-4 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    .btn-lg, .btn-primary {
        font-size: 1rem;
        padding: 10px 0;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.7rem;
        bottom: 16px;
        right: 16px;
    }
    .section-divider {
        width: 60px;
        height: 3px;
        margin: 18px auto 16px auto;
    }
    .card, .contact-icons-card {
        border-radius: 1rem;
    }
    .row.g-4 > [class^='col-'] {
        margin-bottom: 1.2rem;
    }
    .contact-icons-card .row.g-4 {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .contact-icons-card .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0 !important;
    }
    .contact-icon-link {
        padding: 18px 0;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hakkımızda Card ve Galeri */
#hakkimizda .card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: none;
}
.hakkimizda-gallery-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.gallery-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.gallery-img:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 32px rgba(0,123,255,0.18);
    z-index: 2;
}
@media (max-width: 768px) {
    .gallery-img {
        height: 100px;
    }
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.lightbox.active { display: flex; }

/* Başlık Efektleri */
h2, h4, h5 {
    position: relative;
    display: inline-block;
    animation: fadeInDown 1s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2::after, h4::after, h5::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff 60%, #fff 100%);
    margin: 12px auto 0 auto;
    border-radius: 2px;
    transition: width 0.3s;
}

h2:hover::after, h4:hover::after, h5:hover::after {
    width: 100px;
    background: linear-gradient(90deg, #0056b3 60%, #007bff 100%);
}

/* Paragraf Efektleri */
p, .lead {
    transition: color 0.3s, letter-spacing 0.3s;
}
p:hover, .lead:hover {
    color: inherit;
    letter-spacing: 0;
}

/* Şık Ayraçlar */
.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #007bff 60%, #fff 100%);
    margin: 32px auto 24px auto;
    border-radius: 2px;
}

/* WhatsApp Sabit Buton */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 32px;
    right: 32px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 2.5rem;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}
.whatsapp-float:hover {
    background: #128c7e;
    color: #fff;
    transform: scale(1.08);
    text-decoration: none;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 1.7rem;
        bottom: 16px;
        right: 16px;
    }
}

.hero-effect {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 1px 0 #007bff;
    background: linear-gradient(90deg, #007bff 30%, #25d366 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroFadeIn 2s cubic-bezier(.4,0,.2,1);
}
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(-40px) scale(0.95); }
    60% { opacity: 1; transform: translateY(10px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hakkımızda yeni grid ve değerler */
.hakkimizda-gallery-grid .gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}
.hakkimizda-gallery-grid .gallery-img:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 32px rgba(0,123,255,0.18);
}
@media (max-width: 768px) {
    .hakkimizda-gallery-grid .gallery-img {
        height: 90px;
    }
}
#hakkimizda ul {
    padding-left: 0;
}
#hakkimizda li {
    font-size: 1.08rem;
    display: flex;
    align-items: center;
}
#hakkimizda i {
    font-size: 1.2em;
}

/* İletişim yeni */
#iletisim .card {
    border-radius: 1.2rem;
    background: #f8f9fa;
}
#iletisim .form-control-lg {
    border-radius: 0.7rem;
    font-size: 1.1rem;
}
#iletisim .btn-lg {
    border-radius: 0.7rem;
    font-size: 1.1rem;
    padding: 12px 0;
}
#iletisim .ratio {
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-top: 1rem;
}

/* Sade iletişim ikonları kutusu */
.contact-icons-card {
    background: #f8f9fa;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-icon-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 1rem;
    padding: 12px 0;
}
.contact-icon-link:hover {
    background: #e9ecef;
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(0,123,255,0.10);
}
.contact-icon {
    font-size: 2.7rem;
    margin-bottom: 0.2em;
    transition: color 0.2s;
}
.contact-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
}
.contact-info {
    font-size: 1.05rem;
    color: #555;
}
@media (max-width: 768px) {
    .contact-icon {
        font-size: 2rem;
    }
    .contact-label, .contact-info {
        font-size: 0.98rem;
    }
} 