/* =====================================================
   YANGI YIL - New Year Theme CSS
   A festive, magical winter wonderland design
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Festive */
    --color-primary: #c41e3a;
    /* Christmas Red */
    --color-primary-dark: #8b0000;
    --color-primary-light: #ff6b6b;

    /* Secondary Colors */
    --color-secondary: #1a5f2a;
    /* Pine Green */
    --color-secondary-light: #228b22;

    /* Accent Colors */
    --color-gold: #ffd700;
    --color-gold-light: #ffe55c;
    --color-silver: #c0c0c0;
    --color-ice-blue: #a8d8ea;

    /* Dark Theme Background */
    --color-bg-dark: #0a1628;
    --color-bg-gradient: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
    --color-bg-card: rgba(255, 255, 255, 0.05);
    --color-bg-card-hover: rgba(255, 255, 255, 0.1);

    /* Text Colors */
    --color-text-light: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-text-subtle: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-festive: linear-gradient(135deg, #c41e3a 0%, #ff6b6b 50%, #c41e3a 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffec8b 50%, #ffd700 100%);
    --gradient-winter: linear-gradient(180deg, #0a1628 0%, #1a3a5c 100%);

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-text: 0 2px 10px rgba(0, 0, 0, 0.5);

    /* Fonts */
    --font-primary: 'Nunito', sans-serif;
    --font-display: 'Pacifico', cursive;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg-gradient);
    color: var(--color-text-light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-festive);
    border-radius: 5px;
}

/* =====================================================
   SNOWFALL EFFECT
   ===================================================== */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1rem;
    opacity: 0.8;
    animation: fall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    background: rgba(10, 22, 40, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98) !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-gold) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.navbar-brand i {
    font-size: 2rem;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.nav-link {
    color: var(--color-text-light) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--color-gold) !important;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1.1rem;
}

.lang-btn {
    border-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
    font-weight: 600;
}

.lang-btn:hover {
    background: var(--color-gold) !important;
    color: var(--color-bg-dark) !important;
}

.dropdown-menu {
    background: rgba(10, 22, 40, 0.98);
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(20px);
}

.dropdown-item {
    color: var(--color-text-light);
    padding: 0.7rem 1.2rem;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-gold);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 95, 42, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(255, 215, 0, 0.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--color-text-light);
    text-shadow: var(--shadow-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--color-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   COUNTDOWN TIMER
   ===================================================== */
.countdown-container {
    margin: 3rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-gold);
}

.countdown-value {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* =====================================================
   CARDS
   ===================================================== */
.card-festive {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    backdrop-filter: blur(10px);
}

.card-festive:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-card);
}

.card-festive .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-festive:hover .card-img-top {
    transform: scale(1.05);
}

.card-festive .card-body {
    padding: 1.5rem;
}

.card-festive .card-title {
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.card-festive .card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-festive .card-footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

/* Image Wrapper for Cards */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-festive:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.card-festive:hover .card-overlay {
    opacity: 1;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-festive {
    background: var(--gradient-festive);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-festive:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    color: white;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--color-bg-dark);
}

.btn-outline-festive {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-outline-festive:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    transform: translateY(-3px);
}

/* =====================================================
   POEM CARDS
   ===================================================== */
.poem-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.poem-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 215, 0, 0.1);
    line-height: 1;
}

.poem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-card);
}

.poem-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.poem-content {
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    white-space: pre-line;
}

.poem-author {
    color: var(--color-text-subtle);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: right;
}

/* =====================================================
   GIFT CARDS
   ===================================================== */
.gift-card {
    position: relative;
}

.gift-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

/* =====================================================
   SONG CARDS
   ===================================================== */
.song-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.song-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.song-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-festive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.song-info {
    flex: 1;
}

.song-title {
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.song-artist {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* =====================================================
   PHOTO GALLERY
   ===================================================== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.photo-item:hover::after {
    opacity: 1;
}

.photo-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
    font-weight: 600;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.photo-item:hover .photo-title {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   CONGRATULATION CARDS
   ===================================================== */
.congrat-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    text-align: center;
}

.congrat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-card);
}

.congrat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.congrat-title {
    font-weight: 700;
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.congrat-text {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.congrat-category {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-gold);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: rgba(5, 10, 20, 0.9);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    color: var(--color-text-light);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: var(--color-text-subtle);
    font-size: 0.9rem;
}

/* =====================================================
   PAGE HEADERS
   ===================================================== */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.text-gold {
    color: var(--color-gold) !important;
}

.bg-glass {
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
}

.border-gold {
    border-color: var(--color-gold) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
    }

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

@media (max-width: 767px) {
    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .song-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 40px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.75rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Staggered animation delay classes */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Placeholder for images */
.placeholder-img {
    background: linear-gradient(135deg, #1a2a4a 0%, #0d1f3c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 3rem;
}