/*
Theme Name: Outfit Dark
Theme URI: #
Author: Harika Assistant
Author URI: #
Description: Çok şık, koyu tema ve glassmorphism odaklı modern bir WordPress teması. Harika animasyonlar içerir.
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: outfit-dark
*/

:root {
    --color-bg: #030712;
    --color-text: #f9fafb;
    --color-primary: #8b5cf6;
    --color-secondary: #ec4899;
    --color-tertiary: #3b82f6;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a78bfa;
}

/* Base Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 a, h2 a, h3 a {
    color: inherit;
}

/* Ambient animated background elements */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out alternate;
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -100px;
    left: -100px;
    animation-duration: 25s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    bottom: -200px;
    right: -100px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--color-tertiary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 22s;
    animation-delay: -10s;
}

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

/* Glasscard Component */
.glass-container {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

article.glass-container:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Main Layout Grid */
.site-wrapper {
    max-width: 900px;
    width: 90%;
    margin: 4rem auto;
    flex-grow: 1;
    z-index: 10;
}

/* Site Header (Branding inside layout) */
.site-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.site-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.site-description {
    font-size: 1.25rem;
    font-weight: 300;
    color: #9ca3af;
}

/* Navigation Menu */
.main-navigation {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #d1d5db;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid transparent;
}

.main-navigation a:hover,
.main-navigation .current_page_item a {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* WordPress Core Alignment Classes */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }

/* Entry Content Typography specifics */
.entry-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.entry-meta {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    font-weight: 300;
}

.entry-content {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #d1d5db;
    font-weight: 300;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Site Footer */
.site-footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: auto;
    color: #6b7280;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    position: relative;
}

/* Form Styles inside Glass */
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

input:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

button, input[type="submit"] {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

button:hover, input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.5);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ladybird Block Patterns */
.lb-pattern-shell {
    margin: 2.5rem 0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(118, 186, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(10, 18, 30, 0.94), rgba(8, 15, 25, 0.92));
    border: 1px solid rgba(141, 181, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.lb-pattern-grid {
    gap: 1.25rem;
}

.lb-pattern-kicker,
.lb-pattern-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: #9dd2ff;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.lb-pattern-kicker::before,
.lb-pattern-list li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffd37f, #76baff);
    flex: 0 0 auto;
}

.lb-pattern-title,
.lb-pattern-section-title,
.lb-pattern-card-title {
    color: #f4f8ff;
    letter-spacing: -0.04em;
}

.lb-pattern-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.94;
    max-width: 10ch;
}

.lb-pattern-section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.lb-pattern-body,
.lb-pattern-card-copy,
.lb-pattern-list {
    color: #aebcd3;
    line-height: 1.8;
    font-size: 1.04rem;
}

.lb-pattern-stack,
.lb-pattern-grid--three {
    display: grid;
    gap: 1rem;
}

.lb-pattern-card,
.lb-pattern-plan {
    height: 100%;
    padding: 1.5rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(16, 27, 42, 0.88), rgba(10, 18, 30, 0.82));
    border: 1px solid rgba(157, 176, 202, 0.12);
}

.lb-pattern-card-copy:last-child,
.lb-pattern-body:last-child,
.lb-pattern-list:last-child {
    margin-bottom: 0;
}

.lb-pattern-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem;
}

.lb-pattern-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.75rem;
}

.lb-pattern-list li::before {
    position: absolute;
    left: 0;
    top: 0.7rem;
}

.lb-pattern-actions {
    margin-top: 1.5rem;
}

.lb-pattern-actions .wp-block-button__link {
    min-height: 3.1rem;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
}

.lb-pattern-hero .is-style-fill .wp-block-button__link,
.lb-pattern-plans .is-style-fill .wp-block-button__link,
.lb-pattern-cta .is-style-fill .wp-block-button__link {
    background: linear-gradient(135deg, #76baff, #ffd37f);
    color: #08111b;
}

.lb-pattern-hero .is-style-outline .wp-block-button__link,
.lb-pattern-plans .is-style-outline .wp-block-button__link {
    background: rgba(255, 255, 255, 0.03);
    color: #eef4ff;
    border: 1px solid rgba(157, 176, 202, 0.18);
}

.lb-pattern-plan--featured {
    border-color: rgba(255, 211, 127, 0.24);
}

@media (max-width: 900px) {
    .lb-pattern-title {
        max-width: none;
    }
}
