/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Header Styling */
header {
    text-align: left
}

.home-container {
    display: flex; /* Flexbox layout */
    align-items: center; /* Vertically align items in the center */
    justify-content: flex-start; /* Align items to the left */
    gap: 20px; /* Space between the image and text */
    padding: 20px; /*padding around the container*/
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: black;
}

.profile-photo {
    width: 200px; /* Set the width of the photo */
    height: auto; /* Keep the aspect ratio */
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

a img{
    width: 200px;
    height: auto;
    border: 2px solid #cdc4e3;
    border-radius: 10px;
    transition: transform 0.3s;
}

a img:hover{
    transform: scale(1.1); /*slight zoom */
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    background-color: #f4f4f4;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keeps footer at the bottom */
}


/* Tabbed Navigation */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #cdc4e3;
    color: black;
    border: 1px solid #cdc4e3;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tab-button:hover {
    background-color: #9e8dc9;
}

.tab-button.active {
    background-color: #9e8dc9;
    border-color: #9e8dc9;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

ul{
    list-style-type: circle; /* Use circle-shaped bullets */
    padding-left: 20px;
}

li{
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}
/* Contact Page Styling */
#contact {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#contact h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

input, textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s
}

button.submit-btn:hover {
    background-color: #9e8dc9;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
/* Footer Styling */
footer {
    background-color: #cdc4e3;
    color: black;
    text-align: center;
    padding: 20px;
    margin-top: auto; /*footer is always at the bottom */
    width: 100%;
}
