/* Oyuncu Cast Ajansı - Premium Dark Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #0b0c10;
    --bg-card: #13151c;
    --bg-card-hover: #1b1e29;
    --accent-gold: #e5a93c;
    --accent-gold-glow: rgba(229, 169, 60, 0.25);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --whatsapp-color: #25d366;
    --whatsapp-hover: #1fbe59;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Top Bar */
.agency-brand-bar {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
    background-color: rgba(19, 21, 28, 0.6);
    backdrop-filter: blur(10px);
}

.brand-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 640px) {
    .brand-bar-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.agency-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: inline-block;
}

.agency-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 0.15rem;
}

.agency-top-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-contact-btn {
    background: rgba(229, 169, 60, 0.12);
    color: var(--accent-gold);
    border: 1px solid rgba(229, 169, 60, 0.3);
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-contact-btn:hover {
    background: var(--accent-gold);
    color: #0c0d12;
}

/* Main Container */
.agency-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* 5 Cards Per Row Grid Layout */
.grid-5-col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1280px) {
    .grid-5-col {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-5-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-5-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Actor Card Design */
.actor-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.actor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-gold-glow);
    border-color: var(--accent-gold);
}

.actor-card-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background-color: #1a1d26;
}

.actor-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.actor-card:hover .actor-card-img {
    transform: scale(1.07);
}

.actor-card-info {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(19, 21, 28, 0.6) 0%, rgba(19, 21, 28, 1) 100%);
}

.actor-card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.actor-card-district {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--accent-gold);
    background: rgba(229, 169, 60, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(229, 169, 60, 0.2);
}

.actor-card-district svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Detail Page Layout */
.detail-layout {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
    align-items: start;
}

@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .gallery-section {
        max-width: 460px;
        width: 100%;
        margin: 0 auto 1.5rem;
    }
}

/* 5 Photo Gallery Component */
.gallery-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 460px;
}

.gallery-main-container {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #1a1d26;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
}

.gallery-thumb-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
    background-color: #1a1d26;
}

.gallery-thumb-item:hover,
.gallery-thumb-item.active {
    opacity: 1;
    border-color: var(--accent-gold);
    transform: scale(1.03);
}

.gallery-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Info Panel */
.profile-info-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-header {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1.25rem;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.profile-district-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--accent-gold);
    background: rgba(229, 169, 60, 0.12);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(229, 169, 60, 0.3);
    margin-top: 0.75rem;
}

/* Traits Grid */
.traits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

@media (max-width: 480px) {
    .traits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.trait-box {
    display: flex;
    flex-direction: column;
}

.trait-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.trait-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 0.2rem;
}

/* Bio Section */
.bio-section h3,
.skills-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.bio-text {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.7;
}

/* Skills Pills */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-pill {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    font-size: 0.82rem;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25d366 0%, #1fbe59 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 0.5rem;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #28e16e 0%, #17aa4e 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Footer */
.agency-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4rem;
}

/* Breadcrumb / Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--accent-gold);
}
