/* General Styling */
body {
    font-family: 'Comfortaa', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333333; /* Charcoal Gray for text */
    background-color: #013979; /* Deep Blue */
    background: radial-gradient(circle, #069494 0%, #013979 100%);
}

/* Header Styling */
header {
    background: linear-gradient(to right, #013A63, #06B6D4); /* Deep Blue to Teal */
    color: #FFFFFF; /* White for text */
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo {
    height: 100px; /* Increased logo size */
    width: auto;   /* Maintain aspect ratio */
    margin-right: auto; /* Move logo to the left */
}

header .nav-bar {
    display: flex;
    gap: 1.5rem;
}

header .nav-bar a {
    text-decoration: none;
    color: #FFFFFF; /* White for links */
    font-weight: bold;
    transition: color 0.3s ease, transform 0.2s;
}

header .nav-bar a:hover {
    color: #E63946; /* Heart Red for hover */
    transform: scale(1.1);
}

/* Main Content */
.content {
    padding: 2rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #06B6D4; /* Teal for the heading */
    margin-bottom: 1rem;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #F5F5F5; /* Light Gray for readability */
    text-align: justify;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05); /* Subtle translucent background */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to top, #013979, #069494); /* Gradient from blue to teal */
    color: #FFFFFF; /* White for text */
    margin-top: 2rem;
}

footer a {
    color: #06B6D4; /* Teal for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #E63946; /* Heart Red for hover */
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header .nav-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .content {
        padding: 1rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

    header .logo {
        height: 80px; /* Smaller size for responsive design */
    }
}
