/* --- General Setup & Dark Mode --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden; /* Prevents scrollbars caused by blur overflow */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light grey text */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Needed for positioning the blur */
    text-align: center;
}

/* --- Blurred Background Effect --- */
.background-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px; /* Adjust size as needed */
    height: 400px; /* Adjust size as needed */
    transform: translate(-50%, -50%);
    /* Red-ish Orange Gradient - Soft edges */
    background: radial-gradient(circle, rgba(255, 111, 0, 0.4) 0%, rgba(255, 87, 34, 0) 70%); /* Accent: #FF6F00 / #FF5722 */
    filter: blur(120px); /* Adjust blur intensity */
    opacity: 0.8; /* Adjust opacity */
    z-index: 1; /* Behind the content */
    pointer-events: none; /* Make sure it doesn't interfere with text selection */
}

/* --- Content Container --- */
.container {
    position: relative; /* Ensure content is above the blur */
    z-index: 2;
    padding: 40px;
    max-width: 700px;
    width: 90%; /* Responsive width */
    /* Optional: Add a subtle background to the text area for readability over the blur */
    /* background: rgba(25, 25, 25, 0.2); */
    /* backdrop-filter: blur(5px); */ /* Subtle blur on the container itself */
    /* border-radius: 15px; */
    /* box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); */
}

/* --- Text Styling --- */
h1 {
    font-size: 3.5rem; /* Responsive font size */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.2;
}

h1 .accent {
    color: #FF6F00; /* Red-ish orange accent color */
    font-weight: 700;
}

h2 {
    font-size: 1.8rem; /* Responsive font size */
    font-weight: 300;
    color: #c0c0c0; /* Slightly dimmer subtitle */
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #a0a0a0; /* Even dimmer paragraph text */
    max-width: 500px; /* Prevent paragraph from getting too wide */
    margin: 0 auto; /* Center paragraph if max-width is applied */
}

p.contact {
    margin-top: 30px;
    font-size: 0.9rem;
}

p.contact a {
    color: #FF6F00; /* Accent color for link */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

p.contact a:hover {
    color: #ff8f33; /* Lighter orange on hover */
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
    .background-blur {
        width: 300px;
        height: 300px;
        filter: blur(100px);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    p {
        font-size: 0.9rem;
    }
    .container {
        padding: 25px;
    }
     .background-blur {
        width: 250px;
        height: 250px;
        filter: blur(80px);
    }
}
