/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #FFE135;
    color: #1a1a2e;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== BACKGROUND SHAPES ===== */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #ff3b00;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #00b4d8;
    bottom: 20%;
    left: -80px;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: #7c3aed;
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: #ff3b00;
    bottom: -50px;
    left: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 35px) scale(1.02); }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.greeting {
    font-size: 1.25rem;
    color: #ff6b35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #ff6b35 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dot {
    color: #ff6b35;
    -webkit-text-fill-color: #ff6b35;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(26, 26, 46, 0.7);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(26, 26, 46, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.4), transparent);
    animation: bounce 2s ease-in-out infinite;
}

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

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #4ecdc4);
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.15rem;
    color: rgba(26, 26, 46, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    border-color: #ff6b35;
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.stat-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-card p {
    color: rgba(26, 26, 46, 0.6);
    font-size: 0.95rem;
}

/* ===== INTERESTS SECTION ===== */
.interests {
    padding: 4rem 0 8rem;
}

.interest-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.interest-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.interest-card:hover {
    transform: translateY(-8px);
}

.card-inner {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.interest-card:hover .card-inner {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff6b35;
}

.card-1::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 59, 0, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.card-2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-inner h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-inner p {
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.interest-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.interest-details li {
    color: rgba(26, 26, 46, 0.5);
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.interest-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.card-2 .interest-details li::before {
    color: #4ecdc4;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 2px solid rgba(26, 26, 46, 0.15);
    color: rgba(26, 26, 46, 0.4);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .interest-cards {
        grid-template-columns: 1fr;
    }

    .card-inner {
        padding: 2rem 1.5rem;
    }

    .about, .interests {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: clamp(3rem, 15vw, 6rem);
    }

    .tagline {
        letter-spacing: 0.15em;
    }

    .section-title {
        font-size: 2rem;
    }
}
