/* ============================================
   STARRY NIGHT THEME
   Yıldızlı gece, romantik gökyüzü teması
   ============================================ */

/* Tema Renkleri */
:root {
    --starry-primary: #667eea;
    --starry-secondary: #764ba2;
    --starry-accent: #ffd700;
    --starry-dark: #0a0e27;
    --starry-night: #1a1f3a;
    --starry-purple: #2d1b69;
}

/* Body Background - Night Sky */
body.starry-theme {
    background: linear-gradient(to bottom, #0a0e27 0%, #1a1f3a 50%, #2d1b69 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.star.medium {
    width: 3px;
    height: 3px;
    animation-duration: 4s;
}

.star.large {
    width: 4px;
    height: 4px;
    animation-duration: 5s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    animation: shoot 3s linear infinite;
}

@keyframes shoot {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-300px) translateY(300px);
        opacity: 0;
    }
}

/* Moon */
.moon {
    position: fixed;
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.6);
    z-index: 1;
}

.moon::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: var(--starry-dark);
    border-radius: 50%;
}

/* Hero Section */
.starry-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.starry-hero-content {
    max-width: 800px;
}

.starry-hero h1 {
    font-size: 4rem;
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.starry-hero p {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Constellation Section */
.constellation-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.constellation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.constellation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.constellation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.constellation-card:hover::before {
    opacity: 1;
}

.constellation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.constellation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.constellation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--starry-accent);
}

.constellation-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.constellation-date {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Galaxy Section */
.galaxy-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.galaxy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.galaxy-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.galaxy-caption {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.9;
}

/* Wish Section */
.wish-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.wish-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    text-align: center;
}

.wish-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--starry-accent);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.wish-container p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.wish-star {
    font-size: 3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Quote Section */
.starry-quote-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.starry-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.starry-quote blockquote {
    font-size: 2rem;
    font-family: var(--font-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.starry-quote cite {
    font-size: 1.25rem;
    opacity: 0.8;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Footer */
.starry-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.starry-footer h2 {
    color: var(--starry-accent);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .moon {
        width: 100px;
        height: 100px;
        top: 5%;
        right: 5%;
    }

    .moon::before {
        width: 80px;
        height: 80px;
        top: 15px;
        right: 15px;
    }

    .starry-hero h1 {
        font-size: 2.5rem;
    }

    .starry-hero p {
        font-size: 1.25rem;
    }

    .constellation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .starry-quote blockquote {
        font-size: 1.5rem;
    }

    .wish-container {
        padding: 2rem;
    }

    .wish-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .starry-hero h1 {
        font-size: 2rem;
    }

    .starry-hero p {
        font-size: 1rem;
    }

    .moon {
        width: 80px;
        height: 80px;
    }

    .moon::before {
        width: 60px;
        height: 60px;
    }

    .starry-quote blockquote {
        font-size: 1.25rem;
    }

    .wish-container h2 {
        font-size: 1.75rem;
    }

    .wish-container p {
        font-size: 1.125rem;
    }
}