/* General */
body {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: lighter;
    margin: 0;
    padding: 0;
    color: rgb(210, 210, 247); /* Text color */
    animation: backgroundColorChange 10s infinite alternate;
    cursor: url('dolphin.png'), auto;
}

@keyframes backgroundColorChange {
    0% {
        background-color: black; 
    }
    100% {
        background-color: #2e003e; 
    }
}


div.cursor {
    cursor: url('ltams.png'), auto;
}

/* Fixed Menu */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(137, 137, 216);
    padding: 10px 0;
    z-index: 1000;
}

.menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.menu li {
    margin: 0 10px;
}

.menu .name {
    font-size: 24px;
    font-weight: bold;
    color: white; 
}

.menu a {
    color: white;
    font-size: 15px;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s;
    font-weight: lighter;
}

.menu a:hover {
    background-color: lavender;
    text-decoration: wavy;
}

/* Home Section */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 100px 20px;
}

/* About Section*/
.about {
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    gap: 15px; 
    padding: 20px 20px; 
    margin-top: 60px; 
}

.about p {
    font-size: 16px; 
    max-width: 500px; 
    margin: 0; 
    font-weight: lighter;
    padding: 10px 0; 
}

.about h1 {
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: rgb(137, 137, 216);
    margin-top: 0; 
}

.profile img {
    width: 325px; 
    height: 500px; 
    object-fit: cover; 
    padding-top: 10px; 
}


/* Gallery */
.gallery {
    padding: 50px 20px;
    text-align: center;
    display:flex;
}

.gallery h1 {
    font-size: 32px;
    color: rgb(137, 137, 216);
    justify-content: flex-start;
    padding-top: 10px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

body.contact-page {
    background-image: url('images/manysavvy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding-top: 60px;
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.contact {
    padding: 100px 20px;
    text-align: center;
}

.contact h1 {
    font-size: 32px;
    color: rgb(137, 137, 216);
    font-family: Arial, Helvetica, sans-serif;
}


.contact p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: lighter;
    color: rgb(161, 161, 244);
}

.email-link {
    display: inline-block;
    background-color: rgb(137, 137, 216);
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    margin: 20px 0;
    text-decoration: none;
    transition: background-color 0.3s;
}

.email-link:hover {
    background-color: lavender;
}

/* Email Style */
form {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    font-size: 16px;
    margin: 10px 0 5px;
    color: rgb(137, 137, 216);
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

form button {
    background-color: rgb(137, 137, 216);
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: lavender;
}
