/* ==========================================================================
   FOTO ELİT - MODERN, ELEGAN & ŞIK WEB SİTESİ STİLLERİ
   ========================================================================== */

/* 1. Temel Sıfırlama ve Ayarlar */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.65;
}

/* Tipografi */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #111111;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Global Düzen Bileşenleri */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.padding-y {
    padding: 90px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.text-center {
    text-align: center;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.margin-t {
    margin-top: 50px;
}

/* Izgaralar (Grids) */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.btn-primary:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #111111;
}

.btn-secondary {
    background-color: #d4af37;
    color: #111111;
    border: 1px solid #d4af37;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Ortak Bölüm Başlıkları */
.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d4af37;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #d4af37;
}

.about-text .section-title::after,
.contact-info .section-title::after {
    left: 0;
    transform: none;
}

.section-desc {
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Header / Navigasyon Bölümü */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: #444444;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* 3. Hero Bölümü */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)), url('img/fotoelit1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 25px;
}

.hero-title span {
    color: #d4af37;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 4. Hakkımızda Bölümü */
.lead {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 20px;
}

.about-text p {
    color: #666666;
    margin-bottom: 20px;
    font-size: 15px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 14px;
    color: #111111;
}

.feature-item i {
    color: #d4af37;
    font-size: 16px;
}

.about-img-wrapper {
    position: relative;
}

.main-about-img {
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.main-about-img:hover {
    transform: scale(1.02);
}

/* 5. Hizmetlerimiz Bölümü */
.service-card {
    background-color: #ffffff;
    padding: 50px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.015);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.07);
    border-color: #d4af37;
}

.card-icon {
    font-size: 44px;
    color: #d4af37;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666666;
    font-size: 14px;
}

/* 6. Galeri Bölümü */
.gallery-grid {
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 35px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: left;
}

.gallery-overlay h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: #dddddd;
    font-size: 14px;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* 7. İletişim Bölümü */
.contact-desc {
    color: #666666;
    margin-bottom: 35px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: #d4af37;
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #111111;
}

.info-item p {
    color: #555555;
    font-size: 15px;
}

.phone-link {
    font-weight: 600;
    color: #111111;
}

.phone-link:hover {
    color: #d4af37;
}

.social-inline-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-tag-link {
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-tag-link.insta:hover {
    border-color: #e1306c;
    color: #e1306c;
}

.social-tag-link.face:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border: 4px solid #ffffff;
}

.map-wrapper iframe {
    display: block;
}

/* 8. Footer (Alt Bilgi) */
.main-footer {
    background-color: #111111;
    color: #ffffff;
    padding: 75px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-logo {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col-about p {
    color: #999999;
    font-size: 14.5px;
    max-width: 400px;
}

.footer-col-links h4,
.footer-col-social h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.footer-col-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-links a {
    color: #999999;
    font-size: 14px;
}

.footer-col-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.footer-col-social p {
    color: #999999;
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #ffffff;
    background-color: #1a1a1a;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: #d4af37;
    color: #111111;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222222;
    padding: 25px 0;
    font-size: 13px;
    color: #666666;
}

/* 9. Mobil Uyum (Responsive) */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .header-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nav-menu ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .padding-y {
        padding: 60px 0;
    }
    .section-title {
        font-size: 28px;
    }
    .gallery-item {
        height: 300px;
    }
}