@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 87, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 87, 34, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 87, 34, 0.03) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 87, 34, 0.2);
    transition: all 0.3s ease;
}

header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 87, 34, 0.5) 50%,
        transparent 100%);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #FF5722;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FF5722 0%, #FF8A65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF5722, #FF8A65);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #FF5722;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #e0e0e0;
    padding: 120px 20px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 87, 34, 0.1) 0%,
        transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FF5722;
    text-shadow: 0 0 30px rgba(255, 87, 34, 0.4);
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #FF5722 0%, #FF8A65 50%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-content p {
    font-size: 1.5rem;
    color: #d0d0d0;
    font-weight: 300;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #FF8A65;
    margin-top: 0.5rem;
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

.scroll-indicator {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.scroll-indicator span {
    font-size: 0.9rem;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #FF5722;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* About Section */
.about {
    padding: 100px 20px;
    background: #0f0f0f;
    position: relative;
}

.about h2 {
    text-align: center;
    font-size: 3.5rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 4rem;
    color: #FF5722;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-content > p {
    font-size: 1.3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.9;
    color: #d0d0d0;
    font-weight: 300;
}

.richard-spotlight {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    margin: 3rem auto;
    max-width: 900px;
    border: 1px solid rgba(255, 87, 34, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.richard-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FF5722, #FF8A65);
    box-shadow: 0 0 20px rgba(255, 87, 34, 0.5);
}

.richard-spotlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(255, 87, 34, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.richard-spotlight h3 {
    color: #FF5722;
    font-size: 2.2rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.richard-spotlight p {
    color: #d0d0d0;
    font-size: 1.15rem;
    line-height: 2;
    text-align: left;
    font-weight: 300;
}

.interests {
    margin-top: 5rem;
}

.interests h3 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-weight: 700;
}

.interest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.interest-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 87, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 87, 34, 0.05) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interest-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 32px rgba(255, 87, 34, 0.3);
    border-color: rgba(255, 87, 34, 0.5);
}

.interest-card:hover::before {
    opacity: 1;
}

.interest-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #FF5722;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.interest-card p {
    color: #b8b8b8;
    text-align: left;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Family Section */
.family {
    padding: 100px 20px;
    background: #0a0a0a;
    position: relative;
}

.family h2 {
    text-align: center;
    font-size: 3.5rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 4rem;
    color: #FF5722;
    text-shadow: 0 0 20px rgba(255, 87, 34, 0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.family-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.member-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e0e0e0;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 87, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF5722, #FF8A65, #FF5722);
    background-size: 200% auto;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    to {
        background-position: 200% center;
    }
}

.member-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 48px rgba(255, 87, 34, 0.4);
    border-color: rgba(255, 87, 34, 0.6);
}

.member-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(255, 87, 34, 0.3));
    transition: transform 0.3s ease;
}

.member-card:hover .member-icon {
    transform: scale(1.1) rotate(5deg);
}

.member-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: #FF5722;
    font-weight: 600;
}

.member-card p {
    color: #d0d0d0;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e0e0e0;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 87, 34, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 87, 34, 0.5) 50%,
        transparent 100%);
}

footer p {
    color: #909090;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .scroll-indicator {
        margin-top: 2rem;
    }

    .scroll-indicator span {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 1.2rem;
        font-size: 0.85rem;
    }

    .about h2,
    .family h2 {
        font-size: 2.5rem;
    }

    .about-content > p {
        font-size: 1.1rem;
    }

    .richard-spotlight {
        padding: 2rem;
    }

    .richard-spotlight h3 {
        font-size: 1.8rem;
    }

    .richard-spotlight p {
        font-size: 1rem;
    }

    .interests h3 {
        font-size: 2rem;
    }

    .interest-grid,
    .family-members {
        grid-template-columns: 1fr;
    }

    .member-card {
        padding: 2.5rem 2rem;
    }
}
