/* İzmir Escort Web Sitesi CSS - Mobil Uyumlu ve SEO Optimize */

/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}



/* Escort Gallery Styles */
.escort-gallery {
    padding: 50px 0 45px; /* Üst padding optimize edildi */
    background: white;
}

/* Text Section - Yazılar aşağıda */
.text-section {
    text-align: center;
    padding: 3rem 0;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.text-section h1 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.text-section h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.text-section h3 {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Yeni grid stilleri */
.mobile-grid-first {
    display: none; /* Mobilde gösterilecek */
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.mobile-grid-second {
    display: none; /* Mobilde gösterilecek */
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.mobile-grid-four-1 {
    display: none; /* Mobilde gösterilecek */
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-grid-four-2 {
    display: none; /* Mobilde gösterilecek */
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Mobile Layout Styles */
.mobile-top-grid {
    display: none; /* Mobilde gösterilecek */
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-banner {
    display: none; /* Mobilde gösterilecek */
    margin-bottom: 1rem;
}

.mobile-grid {
    display: none; /* Mobilde gösterilecek */
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.show-more-mobile {
    display: none; /* Mobilde gösterilecek */
    text-align: center;
    margin: 2rem 0;
}

.btn-show-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Desktop Grid (Varsayılan) */
.desktop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Mobil için gizli kartlar */
.hidden-mobile {
    display: none;
}

/* Mobile Phone Overlay - Sürekli Yanıp Sönen */
.phone-overlay-mobile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8px;
    text-align: center;
}

.animated-phone-blink {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    animation: phoneBlink 1.5s ease-in-out infinite;
}

/* Yanıp sönen animasyon */
@keyframes phoneBlink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255,255,255,0.5);
    }
    50% { 
        opacity: 0.3;
        transform: scale(0.95);
        text-shadow: 0 0 15px rgba(255,255,255,0.8);
    }
}

/* Mobile Card Sizes */
.top-card .escort-image {
    height: 220px;
}

.banner-card .escort-image {
    height: 140px;
}

.grid-card .escort-image {
    height: 140px;
}

.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: #667eea;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: #667eea;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.escort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Escort Card Styles */
.escort-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.escort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.escort-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.escort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.escort-card:hover .escort-image img {
    transform: scale(1.1);
}

/* Animasyonlu Telefon Numarası */
.phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.escort-card:hover .phone-overlay {
    transform: translateY(0);
}

.animated-phone {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Escort Bilgileri */
.escort-info {
    padding: 1.5rem;
    text-align: center;
}

.escort-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.escort-age {
    color: #667eea;
    font-weight: 500;
    font-size: 1rem;
}

/* Animasyonlu Yazılar */
.animated-text {
    animation: colorChange 3s ease-in-out infinite;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255,255,255,0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6);
    }
}

@keyframes colorChange {
    0%, 100% { color: #667eea; }
    25% { color: #f093fb; }
    50% { color: #f5576c; }
    75% { color: #764ba2; }
}

/* Mobil Responsive Design */
@media (max-width: 768px) {
    /* Mobil layout'u aktif et */
    .mobile-top-grid {
        display: grid;
    }
    
    .mobile-banner {
        display: block;
    }
    
    .mobile-grid {
        display: grid;
    }
    
    .mobile-grid-first {
        display: grid;
    }
    
    .mobile-grid-second {
        display: grid;
    }
    
    .mobile-grid-four-1 {
        display: grid;
    }
    
    .mobile-grid-four-2 {
        display: grid;
    }
    
    .show-more-mobile {
        display: block;
    }
    
    /* Desktop grid'i gizle */
    .desktop-grid {
        display: none;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(102, 126, 234, 0.95);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .text-section h1 {
        font-size: 2.2rem;
    }
    
    .text-section h2 {
        font-size: 1.4rem;
    }
    
    .text-section h3 {
        font-size: 1.1rem;
    }
    
    .escort-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .escort-image {
        height: 220px;
    }
    
    .banner-card .escort-image {
        height: 140px;
    }
    
    .grid-card .escort-image {
        height: 140px;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Banner card özel stil */
    .banner-card {
        width: 100%;
        margin: 0 auto;
    }
    
    /* Grid kartları daha küçük */
    .grid-card .escort-info {
        padding: 1rem;
    }
    
    .grid-card .escort-name {
        font-size: 1.1rem;
    }
    
    .grid-card .escort-age {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .escort-gallery {
        padding: 50px 0 40px; /* Daha da az padding */
    }
    
    .text-section h1 {
        font-size: 1.8rem;
    }
    
    .text-section h2 {
        font-size: 1.2rem;
    }
    
    .text-section h3 {
        font-size: 1rem;
    }
    
    /* Çok küçük ekranlarda da 3'lü grid koru */
    .mobile-grid-first {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .mobile-grid-second {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    /* 4'lü gridler zaten 2'li */
    .mobile-grid-four-1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .mobile-grid-four-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .top-card .escort-image {
        height: 210px;
    }
    
    .banner-card .escort-image {
        height: 140px;
    }
    
    .grid-card .escort-image {
        height: 135px;
    }
    
    .escort-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .escort-image {
        height: 280px;
    }
}

/* Performance Optimizations */
.escort-image img {
    will-change: transform;
}

.escort-card {
    will-change: transform;
}

/* Lazy Loading Support */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card.featured {
    border: 2px solid #667eea;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(102, 126, 234, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.blog-date,
.blog-views {
    display: flex;
    align-items: center;
}

.blog-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: #667eea;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 1rem;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-view-all {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

.no-blog-posts {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Blog Section Responsive */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .btn-view-all {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}