/* ==========================================================================
   MaviAtölye - Yapım Aşamasında | Açık Tema CSS
   ========================================================================== */

/* Tasarım Token'ları */
:root {
    --white:         #ffffff;
    --bg:            #f0f4f8;
    --bg-card:       #ffffff;
    --navy:          #1a365d;
    --blue-dark:     #2b6cb0;
    --blue-mid:      #3182ce;
    --blue-light:    #63b3ed;
    --blue-pale:     #bee3f8;
    --blue-wash:     #ebf8ff;
    --teal:          #38b2ac;
    --sand:          #fef5e4;
    --text-primary:  #1a202c;
    --text-secondary:#4a5568;
    --text-muted:    #718096;
    --border:        #e2e8f0;
    --border-focus:  #63b3ed;
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:     0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg:     0 20px 60px rgba(43,108,176,0.12), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-card:   0 32px 80px rgba(26,54,93,0.10), 0 8px 24px rgba(43,108,176,0.08);
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     36px;
    --font-serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:     'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    min-height: 100%;
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    cursor: none; /* Özel imleç aktif olduğu için gizle */
    overflow-x: hidden;
}

/* ==========================================================================
   ÖZEL İMLEÇ
   ========================================================================== */

.custom-cursor {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 2px solid var(--blue-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
    mix-blend-mode: multiply;
    opacity: 0.7;
}

.cursor-dot {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--blue-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.1s ease, height 0.1s ease;
}

/* Tıklama ve Hover Durumları */
body.cursor-hover .custom-cursor {
    width: 54px;
    height: 54px;
    background: rgba(99, 179, 237, 0.12);
    border-color: var(--teal);
}

body.cursor-clicking .custom-cursor {
    width: 28px;
    height: 28px;
    background: rgba(99, 179, 237, 0.25);
}

/* ==========================================================================
   CANVAS BOYA EFEKTİ
   ========================================================================== */

#paint-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   GÜRÜLTÜ DOKU / ORGANIK DEKORASYON
   ========================================================================== */

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.organic-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: float-shape 18s ease-in-out infinite alternate;
}

.shape-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(ellipse, rgba(190, 227, 248, 0.55) 0%, transparent 75%);
    top: -120px;
    left: -80px;
    animation-duration: 22s;
}

.shape-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(99, 179, 237, 0.30) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
    animation-delay: -7s;
    animation-duration: 18s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(56, 178, 172, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 5%;
    animation-delay: -12s;
    animation-duration: 25s;
}

.shape-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(254, 245, 228, 0.8) 0%, transparent 65%);
    top: 15%;
    right: 8%;
    animation-delay: -4s;
    animation-duration: 20s;
}

/* ==========================================================================
   SAYFA YAPISI
   ========================================================================== */

.page-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
}

/* ==========================================================================
   ÜST BAR (LOGO)
   ========================================================================== */

.top-bar {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    padding: 2rem 0 0;
    animation: fade-in-down 0.8s ease both;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.site-logo-svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(43, 108, 176, 0.22));
    transition: var(--transition);
}

.site-logo-svg:hover {
    filter: drop-shadow(0 4px 12px rgba(43, 108, 176, 0.4));
    transform: scale(1.06);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.3px;
    line-height: 1;
    background: linear-gradient(130deg, var(--navy) 0%, var(--blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   HERO BÖLÜMÜ
   ========================================================================== */

.hero-section {
    flex: 1;
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    gap: 0;
    padding: 3.5rem 0 2rem;
}

/* Dekoratif Yan Sütunlar */
.deco-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.deco-line {
    width: 1px;
    flex: 1;
    min-height: 50px;
    background: linear-gradient(to bottom, transparent, var(--blue-pale), transparent);
}

.deco-circle {
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-circle 4s ease-in-out infinite alternate;
}

.dc-1 { width: 10px; height: 10px; background: var(--blue-light); animation-delay: 0s; }
.dc-2 { width: 6px; height: 6px; background: var(--blue-pale); animation-delay: -1.5s; }
.dc-3 { width: 8px; height: 8px; background: var(--teal); animation-delay: -0.8s; }
.dc-4 { width: 6px; height: 6px; background: var(--blue-light); animation-delay: -2.2s; }

/* ==========================================================================
   ANA KART
   ========================================================================== */

.center-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3rem 3rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(190, 227, 248, 0.6);
    position: relative;
    overflow: hidden;
    animation: fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
    text-align: center;
}

/* Kart üst süsleme çizgisi */
.center-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--blue-light), var(--teal), var(--blue-light), transparent);
    border-radius: 0 0 4px 4px;
}

/* Kart sol üst köşe dekorasyon */
.center-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(190, 227, 248, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==========================================================================
   DURUM ETİKETİ
   ========================================================================== */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: var(--blue-wash);
    border: 1px solid var(--blue-pale);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fade-in 1s ease both;
    animation-delay: 0.3s;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.25);
    animation: blink-dot 2s ease-in-out infinite;
}

.badge-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--blue-dark);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ==========================================================================
   ANA BAŞLIK
   ========================================================================== */

.headline-block {
    margin-bottom: 2rem;
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.title-line-1 {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    animation: slide-in-word 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.25s;
}

.title-line-2 {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--blue-mid);
    letter-spacing: -0.5px;
    animation: slide-in-word 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.4s;
}

.title-line-3 {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    animation: slide-in-word 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.55s;
}

.subtitle-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    animation: fade-in 1s ease both;
    animation-delay: 0.7s;
}

/* ==========================================================================
   SULUBOYA BÖLÜCܠ ÇİZGİ
   ========================================================================== */

.watercolor-divider {
    width: 80%;
    max-width: 380px;
    margin: 0 auto 2.5rem;
    animation: fade-in 1.2s ease both;
    animation-delay: 0.8s;
}

.watercolor-divider svg {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   ATÖLYE TİPLERİ
   ========================================================================== */

.workshop-types {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
    animation: fade-in 1s ease both;
    animation-delay: 0.9s;
}

.wtype-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.2rem 1.4rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: default;
    transition: var(--transition);
    min-width: 120px;
}

.wtype-item:hover {
    border-color: var(--blue-light);
    background: var(--blue-wash);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(43, 108, 176, 0.1);
}

.wtype-item:hover .wtype-icon svg path,
.wtype-item:hover .wtype-icon svg ellipse,
.wtype-item:hover .wtype-icon svg rect {
    stroke: var(--teal);
}

.wtype-icon {
    width: 52px;
    height: 52px;
    background: var(--blue-wash);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.wtype-item:hover .wtype-icon {
    background: var(--bg-card);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.15);
}

.wtype-item span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    text-align: center;
}

/* ==========================================================================
   HABER ALMA FORMU
   ========================================================================== */

.notify-block {
    margin-bottom: 2.5rem;
    animation: fade-in 1s ease both;
    animation-delay: 1s;
}

.notify-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.notify-form {
    max-width: 440px;
    margin: 0 auto;
}

.form-input-row {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.form-input-row:focus-within {
    border-color: var(--border-focus);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(99, 179, 237, 0.15), var(--shadow-md);
}

.notify-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    min-width: 0;
}

.notify-form input::placeholder {
    color: var(--text-muted);
}

#notify-btn {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--navy) 100%);
    color: var(--white);
    border: none;
    outline: none;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.25);
}

#notify-btn:hover {
    background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.35);
    transform: scale(1.02);
}

.btn-arrow {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#notify-btn:hover .btn-arrow {
    transform: translateX(3px);
}

.form-feedback {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    min-height: 1.2em;
    transition: var(--transition);
    text-align: center;
}

.form-feedback.success {
    color: #276749;
}

.form-feedback.error {
    color: #c53030;
}

/* ==========================================================================
   SOSYAL MEDYA
   ========================================================================== */

.social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    animation: fade-in 1s ease both;
    animation-delay: 1.1s;
}

.social-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.soc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.soc-btn:hover {
    color: var(--blue-dark);
    border-color: var(--blue-light);
    background: var(--blue-wash);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(43, 108, 176, 0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.page-footer {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    animation: fade-in 1.2s ease both;
    animation-delay: 1.3s;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-email-link {
    font-size: 0.8rem;
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-email-link:hover {
    color: var(--teal);
    text-decoration: underline;
}

/* ==========================================================================
   ANİMASYON KEYFRAMES
   ========================================================================== */

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in-down {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slide-in-word {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float-shape {
    0%   { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.08); }
}

@keyframes blink-dot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(56, 178, 172, 0.10); }
}

@keyframes pulse-circle {
    from { opacity: 0.4; transform: scale(0.9); }
    to   { opacity: 1;   transform: scale(1.2); }
}

/* Sallanma (hata) animasyonu */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60%  { transform: translateX(-7px); }
    40%, 80%  { transform: translateX(7px); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2.5rem 0 1.5rem;
    }

    .deco-column {
        display: none;
    }

    .center-card {
        padding: 2.5rem 1.5rem 2rem;
        border-radius: var(--radius-lg);
    }

    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 2.4rem;
    }

    .subtitle-text {
        font-size: 0.95rem;
    }

    .br-desktop {
        display: none;
    }

    .workshop-types {
        gap: 0.75rem;
    }

    .wtype-item {
        min-width: 100px;
        padding: 1rem 1rem;
    }

    .form-input-row {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 0.75rem;
    }

    .notify-form input[type="email"] {
        background: var(--bg);
        border: 1.5px solid var(--border);
        border-radius: 50px;
        padding: 0.8rem 1.25rem;
        text-align: center;
        width: 100%;
        transition: var(--transition);
    }

    .notify-form input:focus {
        border-color: var(--border-focus);
        box-shadow: 0 0 0 4px rgba(99, 179, 237, 0.15);
        outline: none;
    }

    #notify-btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    .page-footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-line-1,
    .title-line-2,
    .title-line-3 {
        font-size: 2rem;
    }

    .center-card {
        padding: 2rem 1.25rem 1.75rem;
    }
}
