html {
    height: 100%;
}

body {
    font-family: 'Crimson Text', serif;
    /* font-family: 'Arial', sans-serif; */
    background-color: #f8f9fa;
    color: #212529;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

.nav .nav-link {
    font-family: 'Crimson Text', serif;
    color: #000000 !important;
    text-decoration: underline !important;
}

.nav .nav-link:hover,
.nav .nav-link:focus,
.nav .nav-link.active {
    color: #000000 !important;
    text-decoration: underline !important;
}

.photo-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.photo img {
    width: 100%;
    max-width: 900px;
    display: block;
    border-radius: 0; /* Removed rounded corners */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.caption {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-top: 8px;
}

h1, h2, h3 {
    font-weight: 600;
}

p {
    font-weight: 400;
}

header {
    background-color: #f8f9fa;
}

header h1 a {
    text-decoration: none;
    color: inherit;
}

.card img {
    max-height: 250px;
    object-fit: cover;
}

.card-body {
    text-align: center;
}

.card-body h3 {
    margin-bottom: 15px;
}

ul.list-unstyled {
    padding-left: 0;
}

ul.list-unstyled li a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
}

ul.list-unstyled li a:hover {
    text-decoration: underline;
}

section {
    margin-bottom: 40px;
}

/* Make main content area grow to push footer down */
body > .container {
    flex: 1;
}

footer {
    background-color: #f8f9fa;
    margin-top: auto;
}
