* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.sidebar {
    position: fixed;
    width: 200px;
    height: 100%;
    background-color: #f1f1f1;
    padding: 20px;
}

.sidebar h1,
.sidebar nav {
    margin-bottom: 20px;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 10px 0;
}

.home-link {
    color: black;
    text-decoration: none;
    display: block;
}

.home-link:hover {
    text-decoration: underline;
}

/* Picture Styling and Animation */

.gallery {
    margin-left: 220px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: minmax(100px, auto);
    grid-gap: 15px;
    padding: 20px;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 0.8s forwards;
    animation-delay: var(--animation-delay);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About me */

.content {
    margin-left: 220px;
    padding: 20px;
    overflow: auto;
    text-align: center;

}

.content p {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}


.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

/* Packages */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 8px;
}

th {
    background-color: #f4f4f4;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

.custom-package-notice {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid black;

}

.custom-package-notice a {
    color: blue;
    text-decoration: none;
}

.custom-package-notice a:hover {
    text-decoration: underline;
}

/* Contact Page */

input[type="text"],
input[type="email"],
textarea,
input[type="radio"],
input[type="checkbox"] {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 4px;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    border-radius: 0;
}

fieldset {
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 5px 0;
}