@import url('https://fonts.googleapis.com/css2?family=Castoro:ital@0;1&family=Cinzel+Decorative:wght@400;700;900&display=swap');

:root {
    --Cinzel: 'Cinzel Decorative', serif;
    --Castoro: 'Castoro', serif;
    --Roboto: 'Roboto', sans-serif;
    --dark: #3c393d;
    --exDark: #2b2b2b;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Castoro", serif;
}

body {
    line-height: 1.4;
    color: var(--dark);
}

header {
    font-family: "Cinzel Decorative", serif;
    background-color: #F5F5F5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.navbar {
    background-color: #422711;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 20px; /* Reduced side padding */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items from the start */
}

.navbar-logo {
    height: 50px;
    margin-right: 20px; /* Space between logo and links */
}

.navbar-links {
    display: flex;
    justify-content: center;
    flex: 1; /* Take up remaining space */
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 80px; /* Smaller gap between links */
    padding: 10px;
}


.banner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -200px;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.text-content {
    max-width: 600px; /* Adjust this as necessary */
}

.banner-title {
    font-size: 5rem;
    font-weight: lighter;
    font-family: var(--Cinzel);
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 250px;
    text-align: center;
}

.banner-title2 {
    font-size: 4.5rem;
    font-weight: lighter;
    font-family: var(--Cinzel);
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 150px;
    text-align: center;
}

.mission-statement strong{
    font-family: var(--Cinzel);
    color: black;
}
.mission-statement {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.55);
    margin-top: 10px;
    line-height: 1.6;
    text-align: center;
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

.mission-statement:hover {
    transform: scale(1.1); /* Slightly enlarges */
    color: rgba(0, 0, 0, 0.9); /* Darkens the color */
}


.banner-image {
    margin-top: 250px;
}

.insights-section {
    margin-top: -85px;
    padding: 50px 20px; /* Adjusts space around the section */
    text-align: center; /* Center-align the header text */
    background-color: #f9f9f9; /* Light background to separate it from the banner */
}

.insights-sections {
    margin-top: 80px;
    padding: 50px 20px; /* Adjusts space around the section */
    text-align: center; /* Center-align the header text */
    background-color: #f9f9f9; /* Light background to separate it from the banner */
}

.insights-title {
    font-size: 3rem;
    font-weight: lighter;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 20px; /* Add some space below the title */
}

.book-review {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px; /* Space between image and review */
    margin-top: 20px;
    text-align: left;
    cursor: pointer;
}

/* Flexbox container for the book and review */
.book-review {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 150px;
    margin-top: 20px;
    text-align: left;
    align-items: center; /* Centering the button horizontally */
}

.reverse-layout {
    flex-direction: row-reverse;
}

.book-image {
    position: relative;
    overflow: hidden;
    width: 250px; /* Adjust the size */
    height: auto;
}

.book-image img {
    width: 100%;
    transition: all 0.5s ease;
}

.book-image::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    transition: background 0.5s ease;
    opacity: 0;
}

.book-image2:hover img {
    transform: scale(1.2); /* Zoom effect */
}

.book-image2:hover::after {
    opacity: 1; /* Make overlay visible on hover */
}

.book-gallery {
    display: flex;
    gap: 20px; /* Space between books */
    justify-content: center; /* Center the books in the container */
}

.book-image2 {
    position: relative;
    overflow: hidden;
    width: 250px; /* Adjust the size */
    height: auto;
    padding: 10px; /* Spacing around the image */
    box-sizing: border-box;
}

.book-image2 img {
    width: 100%;
    transition: all 0.5s ease;
    display: block;
}




.review-content {
    max-width: 600px; /* Prevent review text from being too wide */
}


.review-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);

}
.button-container {
    text-align: center; /* Center the button */
    margin-top: 20px; /* Add some space above the button */
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #422711;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #3a2310;
}
.links-section {
    padding: 20px;
    text-align: center;
}

.link-list {
    list-style-type: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 10px;
}

.link-list a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.link-list a:hover {
    color: #422711;
}