/* 🍭 SekerChat.net - Yeni Tema CSS */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');
/* font-display: swap already included in Google Fonts URL */

/* 🎨 Renk Değişkenleri */
:root {
    /* Ana Renkler */
    --cotton-candy-pink: #FF6FB5;
    --soft-purple: #C084FC;
    --cream-white: #FFF5FA;
    --candy-red: #FF3E7F;
    --dark-mode-bg: #1E1B2E;
    
    /* Gradient */
    --main-gradient: linear-gradient(135deg, #FF6FB5, #C084FC);
    
    /* Gölgeler */
    --shadow-pink: rgba(255, 111, 181, 0.4);
    --shadow-purple: rgba(192, 132, 252, 0.3);
    --glow-pink: 0 0 30px rgba(255, 111, 181, 0.6);
    
    /* Metin */
    --text-dark: #1E1B2E;
    --text-light: #FFF5FA;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-color: var(--dark-mode-bg);
    --text-color: var(--text-light);
    --card-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cream-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body[data-theme="dark"] {
    background: var(--dark-mode-bg);
    color: var(--text-light);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 245, 250, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 4px 20px var(--shadow-pink);
    z-index: 1000;
    border-bottom: 2px solid var(--cotton-candy-pink);
    transition: all 0.3s ease;
}

body[data-theme="dark"] header {
    background: rgba(30, 27, 46, 0.95);
    border-bottom-color: var(--soft-purple);
}

body[data-theme="dark"] .logo-icon {
    box-shadow: 0 4px 15px rgba(192, 132, 252, 0.5), 
                0 0 20px rgba(192, 132, 252, 0.3);
}

body[data-theme="dark"] .logo:hover .logo-icon {
    box-shadow: 0 6px 20px rgba(192, 132, 252, 0.6), 
                0 0 30px rgba(192, 132, 252, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-gradient);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-pink), 
                0 0 20px var(--shadow-purple),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 25px var(--shadow-pink), 
                0 0 35px var(--shadow-purple),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-icon::before {
    content: '💬';
    font-size: 26px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    line-height: 1;
}

.logo-icon::after {
    content: '🍭';
    font-size: 16px;
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--main-gradient);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px var(--shadow-pink),
                0 0 12px rgba(255, 111, 181, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: 3;
    animation: candyBounce 2s ease-in-out infinite;
}

@keyframes candyBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-3px) rotate(10deg);
    }
}

.logo-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo-main-text {
    font-weight: 900;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    font-size: 28px;
    position: relative;
    display: inline-block;
}

.logo-domain {
    font-size: 12px;
    font-weight: 700;
    color: var(--soft-purple);
    letter-spacing: 1px;
    margin-top: -2px;
    opacity: 0.9;
    text-transform: uppercase;
}

body[data-theme="dark"] .logo-domain {
    color: var(--soft-purple);
    opacity: 1;
}

.logo-main-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--main-gradient);
    border-radius: 2px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.logo:hover .logo-main-text::after {
    opacity: 0.7;
    height: 3px;
}

.logo:hover .logo-domain {
    opacity: 1;
    transform: translateX(2px);
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

body[data-theme="dark"] nav a {
    color: var(--text-light);
}

nav a:hover {
    color: var(--cotton-candy-pink);
    background: rgba(255, 111, 181, 0.1);
    transform: translateY(-2px);
}

nav .btn {
    background: var(--main-gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    box-shadow: var(--glow-pink);
    border: none;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

nav .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px var(--shadow-pink);
}

/* Dark Mode Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--cotton-candy-pink);
    color: var(--cotton-candy-pink);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--cotton-candy-pink);
    color: white;
    transform: rotate(15deg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cotton-candy-pink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 60px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.maskot-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.maskot {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px var(--shadow-pink)) 
            brightness(1.05) 
            saturate(1.1)
            contrast(1.05);
    border-radius: 20px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.maskot-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 111, 181, 0.1) 0%, 
        rgba(192, 132, 252, 0.1) 50%,
        rgba(255, 111, 181, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.maskot-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--main-gradient);
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
}

.maskot:hover {
    filter: drop-shadow(0 25px 50px var(--shadow-pink)) 
            brightness(1.1) 
            saturate(1.15)
            contrast(1.08);
    transform: scale(1.02);
}

/* Dark Mode için görsel renk uyumu */
body[data-theme="dark"] .maskot {
    filter: drop-shadow(0 20px 40px rgba(192, 132, 252, 0.5)) 
            brightness(0.95) 
            saturate(1.2)
            contrast(1.1);
}

body[data-theme="dark"] .maskot-container::before {
    background: linear-gradient(135deg, 
        rgba(192, 132, 252, 0.15) 0%, 
        rgba(255, 111, 181, 0.15) 50%,
        rgba(192, 132, 252, 0.1) 100%);
    mix-blend-mode: screen;
}

body[data-theme="dark"] .maskot-container::after {
    background: linear-gradient(135deg, #C084FC, #FF6FB5);
    opacity: 0.3;
}

body[data-theme="dark"] .maskot:hover {
    filter: drop-shadow(0 25px 50px rgba(192, 132, 252, 0.6)) 
            brightness(1.0) 
            saturate(1.25)
            contrast(1.12);
}


/* Hero Right */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-right h1 {
    font-size: 56px;
    font-weight: 900;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-right p {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
}

body[data-theme="dark"] .hero-right p {
    color: var(--text-light);
}

.btn-main {
    display: inline-block;
    padding: 18px 40px;
    background: var(--main-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--glow-pink);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 300px;
    animation: fadeInUp 1.2s ease-out;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.btn-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px var(--shadow-pink);
    background: linear-gradient(135deg, var(--candy-red), var(--cotton-candy-pink));
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section h1 {
    font-size: 48px;
    font-weight: 900;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
}

section h2 {
    font-size: 42px;
    font-weight: 900;
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
}

section h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--cotton-candy-pink);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

body[data-theme="dark"] section h3 {
    color: var(--soft-purple);
}

section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

body[data-theme="dark"] section p {
    color: var(--text-light);
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    padding: 15px 20px;
    margin: 10px 0;
    background: rgba(255, 111, 181, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--cotton-candy-pink);
    font-weight: 600;
    transition: all 0.3s ease;
}

body[data-theme="dark"] section ul li {
    background: var(--card-bg);
    border-left-color: var(--soft-purple);
}

section ul li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow-pink);
}

section ul li::before {
    content: '🍭';
    margin-right: 10px;
}

/* Floating Candy Icons */
.floating-candy {
    position: fixed;
    font-size: 30px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    animation: floatCandy 8s ease-in-out infinite;
}

@keyframes floatCandy {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Footer */
footer {
    background: rgba(255, 111, 181, 0.1);
    padding: 30px 20px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 60px;
}

body[data-theme="dark"] footer {
    background: var(--card-bg);
    color: var(--text-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--cotton-candy-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 20px;
}

.footer-links a:hover {
    color: var(--soft-purple);
    background: rgba(255, 111, 181, 0.15);
    transform: translateY(-2px);
}

body[data-theme="dark"] .footer-links a {
    color: var(--soft-purple);
}

body[data-theme="dark"] .footer-links a:hover {
    color: var(--cotton-candy-pink);
    background: rgba(192, 132, 252, 0.15);
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        text-align: center;
    }
    
    .hero-right h1 {
        font-size: 42px;
    }
    
    .btn-main {
        margin: 0 auto;
        display: block;
    }
    
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
        gap: 8px;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .logo-icon::before {
        font-size: 20px;
    }
    
    .logo-icon::after {
        font-size: 15px;
        width: 18px;
        height: 18px;
    }
    
    nav {
        position: fixed;
        top: 66px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 66px);
        background: rgba(255, 245, 250, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        transition: left 0.3s ease;
        gap: 15px;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    body[data-theme="dark"] nav {
        background: rgba(30, 27, 46, 0.98);
    }
    
    nav.active {
        left: 0;
    }
    
    nav a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 18px;
    }
    
    nav .btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        font-size: 18px;
        margin-top: 10px;
    }
    
    .theme-toggle {
        width: 100%;
        padding: 12px 20px;
        margin-top: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 30px 15px;
        margin-top: 66px;
        min-height: calc(100vh - 66px);
    }
    
    .hero-right {
        width: 100%;
    }
    
    .hero-right h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero-right p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .btn-main {
        width: 100%;
        max-width: 100%;
        padding: 16px 30px;
        font-size: 18px;
        margin: 20px auto 0;
        display: block;
    }
    
    .maskot-container {
        max-width: 100%;
        min-height: 300px;
    }
    
    .maskot {
        max-width: 100%;
    }
    
    section {
        padding: 60px 15px;
    }
    
    section h1 {
        font-size: 32px;
    }
    
    section h2 {
        font-size: 28px;
        margin-top: 35px;
    }
    
    section h3 {
        font-size: 22px;
        margin-top: 25px;
    }
    
    section p {
        font-size: 16px;
    }
    
    section ul li {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    footer {
        padding: 25px 15px;
        font-size: 14px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
        gap: 6px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-icon::before {
        font-size: 18px;
    }
    
    .logo-icon::after {
        font-size: 11px;
        width: 16px;
        height: 16px;
    }
    
    .logo-main-text {
        font-size: 18px;
    }
    
    .logo-domain {
        font-size: 9px;
        margin-top: -1px;
    }
    
    .hero-right h1 {
        font-size: 28px;
    }
    
    .hero-right p {
        font-size: 15px;
    }
    
    .btn-main {
        padding: 14px 25px;
        font-size: 16px;
    }
    
    .maskot-container {
        max-width: 100%;
        min-height: 300px;
    }
    
    .maskot {
        max-width: 100%;
    }
    
    section h1 {
        font-size: 28px;
    }
    
    section h2 {
        font-size: 24px;
        margin-top: 30px;
    }
    
    section h3 {
        font-size: 20px;
        margin-top: 20px;
    }
    
    .floating-candy {
        font-size: 24px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Blur Candy Shapes Background */
.candy-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.candy-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: shapeFloat 20s ease-in-out infinite;
}

.candy-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--cotton-candy-pink);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.candy-shape:nth-child(2) {
    width: 250px;
    height: 250px;
    background: var(--soft-purple);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.candy-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    background: var(--candy-red);
    bottom: 10%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}
