html {
    overflow-x: hidden;
}

body {
    background-color: #000 !important;
}


@font-face {
  font-family: "cinzel"; /* Name your font */
  src: url("fonts/Cinzel-VariableFont_wght.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Helps prevent render-blocking */
}

.gold-text {
  color: #A57C00;
  font-weight: bold;
}

.text-outline-shadow {
  color: #A57C00; /* Color of the inner text */
  text-shadow: 0 0 5px #fff, /* Inner soft glow */
               0 0 10px #fff, /* Slightly larger glow */
               0 0 20px #fff, /* Even larger, fainter glow */
               0 0 40px #000; /* A darker base shadow for contrast */
}

.img-full {
    width: 100%;
}

#header {
    max-height: 300px;
}

#logo_text {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

#logo_text h1, #logo_text h3 {
    font-family: "cinzel", serif !important;
    font-weight: 800;
    margin: 0;
}

#logo_text h1 {
    font-size: 5em;
}

#logo_text h3 {
    font-size: 3em;
}

#logo_text p {
    font-family: "cinzel", serif !important;
    font-weight: 400;
    font-size: 2em;
}

#header #Video {
    object-fit: cover;
    width: 100%;
    height: 300px;
}

#Video {
    z-index: -1;
    position: relative;
    width: 100%;
}

#mainMenu {
    background-color: #A57C00;
    min-height: 45px;
    margin-top: -10px;
}

#mainMenu .menu li a {
    text-align: center;
    padding: 15px;
    font-weight: 500;
    font-size: 18px;
    color: white;
}

#mainMenu .menu li a:hover {
    background-color: #000;
    color: white;
}

#content, .content {
    background-color: rgba(255,255,255,0.1);
    padding: 25px 40px;
    margin: 40px auto !important;
    color: white;
    text-align: center;
}

#books_grid {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#books_grid img {
    width: 80%;
    transition: transform 0.3s ease; /* Image specific transition */
}

#books_grid a:hover img {
    transform: scale(1.1); /* Grow by 10% */
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.7); /* White glow */
}

.author img {
    margin-bottom: .5rem;
}


@media screen and (max-width: 768px) {
    iframe {
        width: 100%;
    }

    #logo_text {
        margin-top: 3.5rem;
    }

    #logo_text h1 {
        font-size: 3em;
    }

    #logo_text h1 {
        font-size: 2.5em;
    }

    .book {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 425px) {
    .title-bar {
        padding: 1rem .5rem !important;
    }
    
    iframe {
        width: 100% !important;
        height: auto !important;
    }
    
    iframe #player {
        width: 100% !important;
        heght: auto !important;
    }

    #mainMenu .menu li {
        width: 100%;
    }

    #mainMenu .menu li a {
        display: block;
        width: 100%;
    }

    #content, .content {
    margin: 0 auto !important;
}

    p {
        margin: 40px 0;
    }

    #logo_text {
        margin-top: .5rem;
    }

    #logo_text h1 {
        font-size: 2.5em;
    }

    #logo_text h3 {
        font-size: 2em;
    }
       
}

@media screen and (max-width: 375px) {}

@media screen and (max-width: 320px) {}