/* ============================================
   AURORA DREAMS THEME
   Kuzey ışıkları teması
   ============================================ */

/* Tema Renkleri */
:root {
    --aurora-dark: #0a0e27;
    --aurora-purple: #b794f6;
    --aurora-blue: #63b3ed;
    --aurora-green: #68d391;
    --aurora-pink: #f687b3;
    --aurora-cyan: #4fd1c5;
}

/* Body Background */
body.aurora-theme {
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    color: white;
    overflow-x: hidden;
}

/* Aurora Lights Background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.aurora-light {
    position: absolute;
    width: 100%;
    height: 300px;
    filter: blur(80px);
    opacity: 0.6;
    animation: auroraWave 15s ease-in-out infinite;
}

.aurora-light-1 {
    top: 10%;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--aurora-purple) 25%,
            var(--aurora-blue) 50%,
            var(--aurora-green) 75%,
            transparent 100%);
    animation-delay: 0s;
}

.aurora-light-2 {
    top: 30%;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--aurora-pink) 25%,
            var(--aurora-cyan) 50%,
            var(--aurora-purple) 75%,
            transparent 100%);
    animation-delay: 5s;
}

.aurora-light-3 {
    top: 50%;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--aurora-green) 25%,
            var(--aurora-blue) 50%,
            var(--aurora-pink) 75%,
            transparent 100%);
    animation-delay: 10s;
}

@keyframes auroraWave {

    0%,
    100% {
        transform: translateX(-50%) scaleY(1);
        opacity: 0.4;
    }

    50% {
        transform: translateX(50%) scaleY(1.5);
        opacity: 0.7;
    }
}

/* Stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.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;
    }
}

/* Hero Section */
.aurora-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.aurora-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.aurora-title {
    font-family: var(--font-secondary);
    font-size: 5rem;
    background: linear-gradient(135deg,
            var(--aurora-purple),
            var(--aurora-blue),
            var(--aurora-green),
            var(--aurora-pink));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientShift 8s ease infinite;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(183, 148, 246, 0.5);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.aurora-subtitle {
    font-size: 1.75rem;
    color: var(--aurora-cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(79, 209, 197, 0.5);
}

.aurora-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Dreams Section */
.dreams-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.dream-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dream-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dream-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--aurora-purple),
            var(--aurora-blue),
            var(--aurora-green));
}

.dream-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(183, 148, 246, 0.3);
}

.dream-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(183, 148, 246, 0.5));
}

.dream-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    color: var(--aurora-cyan);
    margin-bottom: 1rem;
}

.dream-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.dream-date {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--aurora-purple);
    font-weight: 600;
}

/* Wishes Section */
.wishes-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.wishes-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    text-align: center;
    position: relative;
}

.wishes-container::before {
    content: '✨';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    filter: drop-shadow(0 0 20px rgba(183, 148, 246, 0.8));
}

.wishes-container h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    background: linear-gradient(135deg,
            var(--aurora-purple),
            var(--aurora-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.wishes-container p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Footer */
.aurora-footer {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.aurora-footer h2 {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg,
            var(--aurora-blue),
            var(--aurora-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .aurora-title {
        font-size: 3rem;
    }

    .aurora-subtitle {
        font-size: 1.5rem;
    }

    .dream-cards {
        grid-template-columns: 1fr;
    }

    .wishes-container {
        padding: 3rem 2rem;
    }

    .wishes-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .aurora-title {
        font-size: 2.5rem;
    }

    .aurora-subtitle {
        font-size: 1.25rem;
    }

    .aurora-description {
        font-size: 1.125rem;
    }

    .dream-card {
        padding: 2rem;
    }

    .wishes-container {
        padding: 2rem 1.5rem;
    }

    .wishes-container h2 {
        font-size: 1.75rem;
    }

    .wishes-container p {
        font-size: 1.125rem;
    }
}