/* Global Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e0f7fa, #e1bee7); /* soft gradient */
    color: #333;
}

/* Navigation Bar */
.navbar {
    padding: 20px 40px;
}

/* Header: logo + nav */
.navbar .logo {
    display: inline-flex;

}

.logo img {
    width: 150px;
    height: 100px;
}

/* Navigation links */
.nav-links {
    display: inline-flex;
    list-style: none;
    margin: 10;
    padding: 10;
    float: right;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #4a148c;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-links li a:hover {
    background-color: rgba(74, 20, 140, 0.1);
}

/* Home Section */
#home {
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px;
}

#home h1 {
    font-size: 2em;
    color: #4a148c;
    margin-bottom: 30px;
}

/* New content wrapper for text and image */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.content p {
    flex: 1;
    max-width: 600px;
    line-height: 1.7;
    font-size: 1.1em;
}

.pic img {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive fix */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .pic img {
        max-width: 90%;
    }
}
/* About Page - Info Section */
.info {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    margin: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.info h1 {
    font-size: 2.2em;
    color: #4a148c;
    margin-bottom: 20px;
    border-bottom: 2px solid #4a148c;
    padding-bottom: 10px;
}

.info h2 {
    font-size: 1.6em;
    color: #6a1b9a;
    margin-top: 20px;
    margin-bottom: 15px;
}

.info p {
    line-height: 1.8;
    font-size: 1.1em;
    text-align: justify;
    max-width: 900px;
}
