body {
    font-family: 'Cormorant', serif;
    background-color: #333;
    color: white;
    margin: 0;
    padding: 0;
}
p {
	font-size: 1.2em;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.8em;
}
.container {
    width: 90%;
    margin: auto;
    overflow: visible;
}
.header, .footer {
    text-align: center;
    padding: 10px 0;
	font-family: 'Libre Baskerville', serif;
}
.header {
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-header {
    background-image: url('img/img-head.png'); /* Replace with your actual index header image */
}
.page-header {
    background-image: url('img/img-page.png'); /* Replace with your actual page header image */
}
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent background for better text visibility */
}
.block {
    margin: 20px auto;
    padding: 20px;
    background-color: #444;
    border-bottom: 1px solid #555;
}
.title {
	font-family: 'Oswald', sans-serif;
    font-weight: 700; /* Makes the title bold */
}
.center-title {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
	font-family: 'Oswald', sans-serif;
    font-weight: 700; /* Makes the title bold */
}
.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;  /* Allows items to wrap if not enough space*/
}
.row > div {
    width: 30%;
    text-align: center;
    padding: 10px;
}
.button {
    background-color: #D8BFD8;
    color: #333;
    border: none;
    padding: 15px 30px;
    margin: 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s;
	display: block;  /* Ensures the button respects padding and margin*/
	font-family: 'Libre Baskerville', serif;
    text-transform: uppercase; /* Ensures all button texts are uppercase */
}
.button:hover {
    background-color: #E6E6FA;
    color: #333;
}
a {
    color: #D8BFD8;
    text-decoration: none;
}
a:hover {
    color: #E6E6FA;
}
.back-to-home {
    display: inline-block;
    padding: 8px 16px;
    background-color: #444;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
}
.back-to-home:hover {
    background-color: #666;
    color: white;
}
.img.full {
    width: 100%;
    height: auto;
    display: block;
}
.side-image {
    display: flex;
}
.side-image img {
    width: 30%;
	height: auto;
}
.side-image .text {
    flex: 1;
    padding: 20px;
}
@media (max-width: 768px) {
    .header {
        height: 200px;
    }
    .column {
        flex-direction: column;
    }
    .side-image {
        flex-direction: column;
    }
    .side-image img {
        width: 100%;
    }
    .row > div {
        width: 100%;  // Columns stack vertically on smaller screens
    }
}
