/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Kitten';
    src: url('fonts/Kitten.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Kitten', sans-serif; /* Falls back to sans-serif if font fails to load */
    text-shadow: 0.25px 0.25px 0 #000; /* Creates a thin shadow outline */
    font-size: 1.05em; /* Slightly increase font size to give a bolder effect */
}

/* Navigation styling */
nav {
    background-color: #fefefe;
    padding: 10px;
    text-align: center;
    font-family: arvo, sans-serif;
    letter-spacing: 2px;
    font-size: 13px;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect */
nav ul li a:hover {
    color: #a8858e; /* Change color on hover */
    text-decoration: underline; /* Add underline on hover */
}

h1 {
    font-family: arvo, sans-serif;
    letter-spacing: 2px;
}

/* Dark gray banner styling */
.banner {
    height: 200px;
    background-color: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.3em;
    font-family: arvo;
    text-align: center;
    letter-spacing: 0.2em;
}

/* Banner image styling */
.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Two-column block styling */
.two-column-block {
    display: flex;
}

.two-column-block div {
    flex: 1;
    padding: 90px;
    text-align: center;
}

.left-section {
    background-color: #d1c4c9;
}

.right-section {
    background-color: #f8f8f8;
}

.about-section {
    max-width: 800px; /* Limits the width for readability */
    margin: 0 auto; /* Centers the section horizontally */
    padding: 20px; /* Adds space inside the section */
    text-align: center; /* Centers the text */
    line-height: 1.6; /* Improves readability */
}

/* Styling for blockquote and author */
blockquote {
    font-size: 1.5em;
    font-style: italic;
    margin-bottom: 10px;
}

#quote-author {
    font-size: 1em;
    color: #555;
    margin-top: 5px;
}

/* Full-width video styling */
.full-width-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}
