/* General Styles */
body {
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    padding: 0;
    margin: 0;
    background: linear-gradient(to right, #c2b490, #acb7ae);
}

/* Headings */
h1 {
    margin: 0;
    padding-bottom: 5%;
    line-height: 95%;
}


h3 {
    margin: 0;
    text-align: left;
}

h4 {
    margin: 0;
    line-height: 100%;
    font-size: 90%;
}

/* Paragraphs */
p {
    margin: 3px 0;
    padding-left: 5px;
    text-align: justify;
}

/* Links */
a {
    text-decoration: none;
    color: #233e4a;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    padding-left: 20px;
    text-indent: -10px;
}

li:not(:last-child) {
    margin-bottom: 15px;
}

/* Navigation Bar */
.navigation-bar {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px 20px;
    background-color: #f5f5dc;
}

.navigation-bar a {
    text-decoration: none;
    color: #0a4b78;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navigation-bar a:hover {
    color: #ff6347;
}

/* Profile Section (Image + Text Side by Side) */
.profile-container {
    display: flex;
    align-items: center;             
    justify-content: space-between;  
    gap: 40px;                      
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

/* Profile Photo */
.profile-photo img {
    width: 350px;
    height: 350px;
    border-radius: 50%;  /* Circular image */
    object-fit: cover;
    display: block;
}

/* Profile Text */
.profile-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.profile-text h2 {
    margin: 0;
    font-size: 1.8rem;
}

.profile-text p {
    margin: 5px 0 15px;
    line-height: 1.6;
}

/* Interests Section */
.interests {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.interests h2 {
    font-size: 26px;
    color: #222;
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-media a {
    font-size: 30px;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
    color: #0077b5;
    transform: scale(1.2);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        padding: 10px;
        margin: 15px;
    }
    h1 {
        font-size: 24px;
    }
    .profile-photo img {
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
    }
    h1, h3, h4 {
        text-align: center;
        margin: 15px;
    }
    .profile-text {
        text-align: center;
    }
    .profile-photo img {
        height: 120px;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
    .profile-photo img {
        width: 100px;
        height: 100px;
    }
}


header img {
  width: 100%; 
  height: 60px; 
  object-fit: cover; 
}
