body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #22051C;
    color: white;
    line-height: 1.8;
}

section {
    padding: 80px 15%;
    position: relative;
}

h1,
h2,
h3 {
    color: #F0E06E;
}

.highlight {
    color: #702C98;
    font-weight: bold;
}

.secondary {
    color: #89863B;
}

.intro,
.journey,
.experience,
.philosophy,
.future {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
    
}

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

img {
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    margin: 40px 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

footer {
    text-align: center;
    padding: 40px;
    background: #702C98;
    color: white;
}

/* Footer - Redesigned */
footer {
    margin-top: 80px;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    animation: slideInUp 0.6s ease-out 0.3s forwards;
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-brand img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.footer-brand-info h3 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #F0E06E, #702C98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 16px;
    color: #F0E06E;
    font-size: 1.1rem;
}

.footer-section a,
.social-link {
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-decoration: none;
    color: white;
}

.footer-section a:hover,
.social-link:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #F0E06E;
}

.footer-contact {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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