/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    text-align: center;   
}

/* Intro Section */
.intro {
    padding: 30px;
}

/* Headings */
h1 {
    color: darkblue;
    margin-top: 20px;
    text-align: center;   
}

h2 {
    color: #555;
    text-align: center;   
}

/* About Me Paragraph */
.about {
    font-size: 16px;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    color: #444;
    text-align: center;   
}

/* Navigation Menu Buttons */
nav {
    text-align: center;   
    margin: 20px 0;
}

nav button {
    background: #91502f;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

nav button:hover {
    background: #4589a0;
}
/* Hobby List Styling */
.hobby-list {
    list-style-type: disc;
    padding-left: 0;
    display: inline-block;  
    text-align: left;        
    line-height: 1.8;
    margin-top: 20px;
}
/* Skills Page */
.skills-heading {
    color: purple;
    margin-bottom: 20px;
}

.skills-section {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
}

.skills-section h3 {
    color: darkred;
    margin-top: 20px;
}

.skills-section ul {
    list-style-type: disc;
    padding-left: 40px;
    line-height: 1.8;
}
/* Gallery Page */
.gallery-heading {
    color: brown;
    margin-bottom: 20px;
}

/* Gallery Images */
.gallery {
    text-align: center;
    margin-top: 20px;
}

.gallery img {
    margin: 10px;
    border: 2px solid black;
    border-radius: 8px;
    width: 200px;
    height: auto;
}


/* Clear floats after gallery */
.gallery::after {
    content: "";
    display: block;
    clear: both;
}

/* General Styles */
body { 
    font-family: Arial, sans-serif; 
    background: #f9f9f9; 
    margin: 0; 
    text-align: center;
}

.container {
    padding: 30px;
}

h1 {
    color: navy;
    margin-bottom: 20px;
}

/* Navigation */
nav button { 
    background: #91502f; 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    margin: 5px; 
    cursor: pointer; 
    border-radius: 5px; 
    font-size: 16px;
}
nav button:hover { 
    background: #4589a0; 
}

/* Contact Info */
.contact-info {
    font-size: 18px; 
    margin-top: 20px;
}
.contact-info span {
    color: blue;
}
.contact-info a {
    color: blue;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}

/* Form */
form {
    margin-top: 20px;
}
form input, form textarea {
    display: block; 
    margin: 10px auto; 
    padding: 10px; 
    width: 280px; 
    border: 1px solid #ccc; 
    border-radius: 5px;
    font-size: 14px;
}
form input[type="submit"] {
    background: #4589a0; 
    color: white; 
    border: none; 
    cursor: pointer; 
    width: 150px;
    transition: background 0.3s ease;
}
form input[type="submit"]:hover {
    background: #306578;
}
footer {
    margin-top: 10px;
    background: #91502f;
    color: white;
    padding: 1px;
}
