/* Genel Stil */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #0a0a0a; /* Profesyonel koyu jet siyahı */
    overflow-x: hidden;
    position: relative;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: -1;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23191919" fill-opacity="0.8" d="M0,160L48,181.3C96,203,192,245,288,245.3C384,245,480,203,576,176C672,149,768,139,864,149.3C960,160,1056,192,1152,202.7C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E') repeat-x;
    background-size: 1440px 320px;
    animation: waveMove 40s linear infinite;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1440px); }
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(10, 10, 10, 0.9);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #ffd700; /* Altın accent */
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.banner {
    background-color: #ffcc00;
    padding: 10px 20px;
    border-radius: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.banner a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    margin: 0;
    color: #ffd700;
}

.hero p {
    font-size: 1.5em;
    margin-top: 10px;
}

/* Models Section */
.models-section {
    padding: 60px 40px;
    text-align: center;
}

.models-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 40px;
    color: #ffd700;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.model-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    opacity: 0; /* JS fade-in için */
    transform: translateY(50px);
}

.model-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.model-card:hover {
    transform: scale(1.05);
}

.model-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    padding: 20px;
}

.model-card:hover .overlay {
    opacity: 1;
}

.overlay p {
    font-size: 1.2em;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #191919;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    font-size: 1.2em;
}

.complaint a {
    color: #ffd700;
    text-decoration: none;
    border: 1px solid #ffd700;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.complaint a:hover {
    background-color: #ffd700;
    color: #0a0a0a;
}

.social-links {
    margin: 20px 0;
}

.social-icon {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-header {
        flex-direction: column;
        padding: 10px;
    }

    .whatsapp-btn {
        margin-top: 10px;
    }

    .banner {
        position: static;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 3em;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }
}
/* === İKİ BANNER İÇİN YENİ STİLLER === */
.banners-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;           /* iki banner arası boşluk */
    z-index: 10;
}

.banner {
    background-color: #ffcc00;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s;
}

.banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

.banner a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
}

/* Responsive - mobilde bannerlar biraz küçülsün */
@media (max-width: 768px) {
    .banners-container {
        position: static;
        margin-top: 15px;
        align-items: center;
    }
    
    .banner {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}