/* Color Palette */
:root {
    --bg-pink: #F8C8D3;
    --dark-maroon: #7A2E41; /* The frame color from your mockup */
    --text-white: #ffffff;
    --accent-pink: #FFB6C1;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-pink);
    color: var(--dark-maroon);
    overflow-x: hidden;
}

/* SECTION 1: HERO */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    flex-wrap: wrap;
    gap: 40px;
}

.avatar-frame {
    background-color: var(--dark-maroon);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.avatar-frame img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-right { text-align: left; max-width: 500px; }
.welcome-tag { font-weight: bold; letter-spacing: 2px; margin-bottom: 0; }
.hero-right h1 { font-size: 3.5rem; margin: 0; color: var(--dark-maroon); }
.tagline { font-size: 1.5rem; margin-bottom: 25px; }

.cta-button {
    background-color: var(--dark-maroon);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: opacity 0.3s;
}

.cta-button:hover { opacity: 0.9; }

/* SECTION 2: SHOWCASE & BLUR */
.work-showcase {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.blur-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.8); /* Apply the blur here */
    transform: scale(1.1); /* Prevents white edges from blur */
}

.work-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.work-frame {
    width: 250px;
    height: 250px;
    border: 8px solid white;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.work-frame:hover { transform: translateY(-10px); }

.work-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTION 3: DARK CONTACT BOX */
.contact-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.contact-card-dark {
    background-color: var(--dark-maroon); /* Dark maroon background */
    color: var(--text-white); /* White text for contrast */
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-card-dark h2 { font-size: 2.2rem; margin-bottom: 30px; }
.info-list p { margin: 15px 0; font-size: 1.2rem; }
.info-list a { color: var(--accent-pink); text-decoration: none; }

.social-icons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-icons a {
    color: white;
    font-size: 2.5rem;
    transition: color 0.3s;
}

.social-icons a:hover { color: var(--accent-pink); }

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .work-overlay { flex-direction: column; height: auto; padding-top: 400px; padding-bottom: 50px; }
    .work-showcase { height: auto; }
    .hero-right { text-align: center; }
}