/*
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Hawks Roleplay - Official Website
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * © 2025 Hawks Roleplay. Tüm hakları saklıdır.
 * 
 * ⚠️  UYARI - YASAL BİLDİRİM:
 * Bu dosya ve içeriği Hawks Roleplay'e aittir.
 * İzinsiz kopyalama, değiştirme veya dağıtım YASAKTIR.
 * Kaynak kodların izinsiz kullanımı telif hakkı ihlalidir.
 * 
 * 🔒 Bu dosya koruma altındadır.
 * 📧 İletişim: discord.gg/hawksrp
 * 
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a url('../assets/bg.png') center center fixed;
    background-size: cover;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 153, 51, 0.02));
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(45deg, #ff9933, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero title için özel gradient animasyonu (üstte tanımlı) */

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff9933;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff9933, #ffffff);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff9933, #ff8800);
    color: #010101;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

.btn-primary i {
    font-size: 1rem;
}

.btn-secondary {
    background: linear-gradient(45deg, #ff9933, #ff8800);
    color: #010101;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

.btn-secondary i {
    font-size: 1rem;
}

.btn-connect {
    background: linear-gradient(45deg, #ff9933, #ff8800);
    color: #010101;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.5);
}

.btn-connect i {
    font-size: 1rem;
}

.btn-service {
    background: linear-gradient(45deg, #ff9933, #ff8800);
    color: #010101;
    width: 100%;
    margin-top: 20px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -2;
}


.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    animation: modernFadeIn 0.8s ease-out;
}

.hero-title .gradient-text {
    display: inline-block;
    background: linear-gradient(135deg, #ff9933 0%, #ffffff 50%, #ff9933 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: modernShimmer 4s ease-in-out infinite;
    position: relative;
}

.hero-title .gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, transparent 50%, rgba(255, 153, 51, 0.1) 100%);
    background-size: 200% 200%;
    animation: modernShimmer 4s ease-in-out infinite reverse;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
}

@keyframes modernFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modernShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #ff9933;
    border-bottom: 2px solid #ff9933;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.team {
    padding: 100px 0;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.1), transparent);
    transition: left 0.5s ease;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #ff9933;
    box-shadow: 0 20px 40px rgba(255, 153, 51, 0.2);
}

.team-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
}

.team-avatar .avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff9933;
    transition: all 0.3s ease;
}

.team-avatar .avatar-img:hover {
    transform: scale(1.05);
    border-color: #ffffff;
}


.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff9933, #ff8800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #010101;
    margin: 0 auto;
    position: relative;
    transition: all 0.3s ease;
}

.team-card:hover .avatar-placeholder {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.5);
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #00ff00;
    border: 3px solid #010101;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.online-status.offline {
    background: #ff4444;
    animation: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ff9933;
    font-family: 'Orbitron', monospace;
}

.team-role {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.team-description {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.skill-tag {
    background: rgba(255, 153, 51, 0.1);
    color: #ff9933;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 153, 51, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(255, 153, 51, 0.2);
    transform: translateY(-2px);
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 50%;
    color: #ff9933;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #ff9933;
    color: #010101;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.about {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #ff9933;
    margin-bottom: 10px;
}

.stat-item p {
    color: #cccccc;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff9933, #ff8800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #010101;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 50px 0 20px;
    border-top: 2px solid rgba(255, 153, 51, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 -5px 30px rgba(0, 0, 0, 0.5),
        inset 0 10px 40px rgba(0, 0, 0, 0.6);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: #ff9933;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #cccccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff9933;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 153, 51, 0.1);
    border: 1px solid rgba(255, 153, 51, 0.3);
    border-radius: 50%;
    color: #ff9933;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff9933;
    color: #010101;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .team-card {
        padding: 25px 20px;
    }
    
}
