/*
Theme Name: Muslumanlar
Theme URI: https://www.muslumanlar.gen.tr
Author: Kaan Yavuz
Author URI: https://www.muslumanlar.gen.tr
Description: muslumanlar.gen.tr için modern, renkli ve şık WordPress teması. Bedava sohbet odaları, canlı chat ve radyo özellikleri ile kullanıcı dostu bir deneyim sunar.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: muslumanlar
Tags: chat, sohbet, radyo, colorful, modern, responsive, mobile-friendly
*/

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B9D;
    --secondary: #A855F7;
    --accent: #4ECDC4;
    --success: #10B981;
    --warning: #FFB84D;
    --white: #FFFFFF;
    --dark: #1A1A2E;
    --gray: #2D2D44;
    --light-gray: #F5F5F5;
    --text: #333333;
    --text-light: rgba(255, 255, 255, 0.8);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light-gray);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    * {
        -webkit-tap-highlight-color: rgba(255, 107, 157, 0.2);
    }
    
    .btn, .nav a, .logo {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.logo i {
    font-size: 2rem;
    animation: heartbeat 2s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.logo-domain {
    font-size: 0.6em;
    opacity: 0.9;
    font-weight: 400;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== LOGIN SECTION ===== */
.login-section {
    padding: 4rem 0;
    background: var(--white);
}

.login-box {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-title i {
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.info-text {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-description {
    color: var(--gray);
    margin-bottom: 1rem;
}

.feature-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

/* ===== CITIES SECTION ===== */
.cities-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, #FFFFFF 100%);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.city-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.city-card:hover::before {
    transform: scaleX(1);
}

.city-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.city-card:hover .city-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.city-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.city-card:hover .city-name {
    color: var(--primary);
    transform: scale(1.05);
}

.city-users {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.city-users i {
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.user-count {
    font-weight: 700;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.city-card:hover .city-users {
    color: var(--text);
}

.city-card:hover .city-users i {
    color: var(--secondary);
    transform: scale(1.2);
}

.city-card:hover .user-count {
    color: var(--primary);
    transform: scale(1.1);
}

/* City cards with different gradient colors */
.city-card:nth-child(1) .city-icon { background: linear-gradient(135deg, #FF6B9D 0%, #FF8EB4 100%); }
.city-card:nth-child(2) .city-icon { background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%); }
.city-card:nth-child(3) .city-icon { background: linear-gradient(135deg, #4ECDC4 0%, #6EDDD4 100%); }
.city-card:nth-child(4) .city-icon { background: linear-gradient(135deg, #FFB84D 0%, #FFD670 100%); }
.city-card:nth-child(5) .city-icon { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }
.city-card:nth-child(6) .city-icon { background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%); }
.city-card:nth-child(7) .city-icon { background: linear-gradient(135deg, #EF4444 0%, #F87171 100%); }
.city-card:nth-child(8) .city-icon { background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%); }
.city-card:nth-child(9) .city-icon { background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%); }
.city-card:nth-child(10) .city-icon { background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%); }
.city-card:nth-child(11) .city-icon { background: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%); }
.city-card:nth-child(12) .city-icon { background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%); }
.city-card:nth-child(13) .city-icon { background: linear-gradient(135deg, #F97316 0%, #FB923C 100%); }
.city-card:nth-child(14) .city-icon { background: linear-gradient(135deg, #059669 0%, #10B981 100%); }
.city-card:nth-child(15) .city-icon { background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%); }
.city-card:nth-child(16) .city-icon { background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%); }
.city-card:nth-child(17) .city-icon { background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%); }
.city-card:nth-child(18) .city-icon { background: linear-gradient(135deg, #BE185D 0%, #EC4899 100%); }

/* ===== INFO SECTION ===== */
.info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    color: var(--white);
}

.info-content {
    text-align: center;
}

.info-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-description {
    line-height: 1.8;
    color: var(--text-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.design-credit {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    opacity: 0;
    transition: all 0.5s ease;
    color: rgba(255, 255, 255, 0.8);
}

.design-credit.show {
    opacity: 1;
}

.design-credit-name {
    background: linear-gradient(135deg, #FF6B9D 0%, #A855F7 25%, #4ECDC4 50%, #FFB84D 75%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientText 3s ease infinite;
    font-weight: 800;
    display: inline-block;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        display: none;
    }

    .nav.mobile-active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .login-box {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .city-card {
        padding: 1.2rem;
    }
    
    .city-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .city-name {
        font-size: 1rem;
    }
    
    .city-users {
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.3rem !important;
        padding: 0.4rem 0.8rem !important;
        gap: 0.5rem !important;
    }

    .logo i {
        font-size: 1.3rem !important;
    }
    
    .logo-domain {
        font-size: 0.6em !important;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .login-box {
        padding: 1.5rem 1rem !important;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .city-card {
        padding: 1rem;
    }
    
    .city-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .city-name {
        font-size: 0.9rem;
    }
    
    .city-users {
        font-size: 0.7rem;
    }
    
    .cities-section {
        padding: 2.5rem 0;
    }
}

/* Print styles */
@media print {
    .header, .footer, .mobile-menu-toggle, .btn {
        display: none !important;
    }
    
    body {
        background: white;
    }
}

/* WordPress specific */
.wp-block-group {
    margin-bottom: 2rem;
}

.alignwide {
    max-width: 1200px;
    margin: 0 auto;
}

.alignfull {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

