* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-image: url('/images/wall1.jpg');
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    background-color: #1a1a1a; /* Fallback color if image doesn't load */
    color: #f0f0f0;
    line-height: 1.6;
    position: relative;
}

/* Create overlay for better readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for readability */
    z-index: -1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 60px 0;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

h1 {
    margin-top: 20px;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: Tomato;
    margin-top: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.about {
    background-color: rgba(30, 30, 40, 0.8);
    text-align: center;
    padding: 20px; /* Reduced from 40px */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 25px; /* Reduced from 40px */
    margin-top: -30px; /* Added negative margin to move it up */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px; /* Added to make box narrower */
    margin-left: auto; /* Centers the box */
    margin-right: auto; /* Centers the box */
}

/* If you want to keep the section title large while reducing other text */
.about p {
    font-size: 0.9rem; /* Reduces only paragraph text */
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: DeepSkyBlue ;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    color: DeepSkyBlue ;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.social-links a:hover {
    transform: translateY(-3px);
    color: #66ccff;
    text-shadow: 0 0 10px rgba(102, 204, 255, 0.7);
}

.contact-btn {
    display: inline-block;
    margin-top: 10px; /* Reduced from 20px */
    padding: 6px 15px; /* Reduced from 12px 30px */
    background-color: DeepSkyBlue;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    font-size: 0.8rem; /* Added to reduce text size */
}

.contact-btn:hover {
    background-color: #5577ee;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

footer {
    text-align: center;
    padding: 150px 0;
    margin-top: auto;
    color: #aaa;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    header {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .about {
        padding: 20px;
    }
}