/* Sophisticated Design System - Gospel Artist */

:root {
    /* Rich, warm color palette inspired by music and performance - Enhanced vibrancy */
    --color-cream: #fffefb;
    --color-warm-50: #fff9f0;
    --color-warm-100: #ffefd8;
    --color-warm-200: #ffe4c0;

    --color-burgundy: #8b1e3f;
    --color-burgundy-dark: #6b1530;
    --color-gold: #e6b655;
    --color-gold-light: #f5d180;
    --color-bronze: #c4904f;

    --color-charcoal: #2d2926;
    --color-slate: #4a4542;
    --color-slate-light: #6b6662;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-cream);
    color: var(--color-charcoal);
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* Sophisticated image overlay */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.35), rgba(230, 182, 85, 0.25));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-overlay:hover::after {
    opacity: 1;
}

.image-overlay img {
    transition: transform 0.6s ease;
}

.image-overlay:hover img {
    transform: scale(1.05);
}

/* Elegant underline effect */
.elegant-underline {
    position: relative;
    display: inline-block;
}

.elegant-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-underline:hover::after {
    width: 100%;
}

/* Decorative accent */
.accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-burgundy), var(--color-gold));
}

/* Beautiful card */
.beautiful-card {
    background: white;
    border: 1px solid rgba(230, 182, 85, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.beautiful-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(139, 30, 63, 0.15);
    border-color: rgba(230, 182, 85, 0.5);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(230, 182, 85, 0.4) 20%,
        rgba(230, 182, 85, 0.4) 80%,
        transparent
    );
}

/* 3D Sun container styling */
#sun-3d-container {
    border-radius: 50%;
    position: relative;
}

#sun-3d-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(220, 220, 220, 0.2);
    z-index: -1;
}
