@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Truculenta:opsz,wght@12..72,100..900&display=swap');

/* Global Styles */
* {
    font-family: 'Truculenta', sans-serif;
    color: #dbf1fa;
}

html,
body {
    height: 100vh;
    margin: 0;
}

a {
    color: #dd9a84;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


p {
    font-size: 1.2rem;
}

h2 {
    font-family: 'Monoton', cursive;
    font-weight: bold;
    font-size: 2rem;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.bottom-border {
    border-bottom: #000 solid 1.5px;
    box-shadow: #1f0a1c 0px 0px 10px;
}

.hidden {
    display: none;
}



/* Buttons */
.btn-link {
    color: #dd9a84;
    text-decoration: none;
}

.btn-link:hover {
    color: #dd9a84;
    text-decoration: underline;
}


.btn-primary {
    background-color: #de643b;
    color: #dbf1fa;
    border: #1f0a1c solid 2px;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
}

.btn-primary:hover {
    background-color: #dbf1fa;
    color: #1f0a1c;
}

.btn-danger {
    background-color: #7f4b91;
    color: #dbf1fa;
    border: #1f0a1c solid 2px;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
}

.btn-danger:hover {
    background-color: #dbf1fa;
    color: #1f0a1c;
}

.btn-secondary {
    background-color: #411f2a;
    color: #dbf1fa;
    border: #1f0a1c solid 2px;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
}

/* Pagination buttons */
.pagination {
    padding: 1rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: #1f0a1c solid 1px;
    border-radius: 5px;
    color: #1f0a1c;
}

.pagination a:hover {
    background-color: #de643b;
    color: #dbf1fa;
    border: #1f0a1c solid 1px;
}

.active>.page-link {
    background-color: #de643b;
    color: #dbf1fa;
    border: #1f0a1c solid 1px;
}


/* header */
h1 {
    font-family: 'Monoton', cursive;
    font-size: 3rem;
    color: #dbf1fa;
}

/* Navbar */
.navbar,
.dropdown-menu {
    background-color: #1f0a1c;
    padding: 1rem;
    color: #dbf1fa;
}

.navbar-nav .nav-link,
.dropdown-item {
    color: #dbf1fa;
    padding: 0.5rem 2rem;
    font-size: 1.5em;
}

.navbar-nav .nav-link.active {
    color: #de643b;
}

.navbar-nav .nav-link:hover {
    color: #de643b;
    text-decoration: underline;
    font-weight: bold;
}



/* main */
main {
    background-color: #411f2a;
    flex: 1;
}

/* General Card Styling */
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: #1f0a1c solid 2px;
    border-radius: 10px;
    background-color: #1f0a1c;
    box-shadow: #1f0a1c 0px 0px 10px;
    color: #dbf1fa;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body .btn {
    margin-top: auto;
}

/* hero banner */
#hero {
    width: 100%;
    height: 500px;
    color: #dbf1fa;
    text-shadow: 2px 2px 4px #000000;
    text-align: center;
    background: url(/static/images/hero_image.webp) no-repeat center/cover;
    padding-top: 8em;
}

#hero .btn {
    background-color: #de643b;
    color: #dbf1fa;
    border: #1f0a1c solid 2px;
    border-radius: 10px;
    text-shadow: none;
}

#hero .btn:hover {
    background-color: #dbf1fa;
    color: #1f0a1c;
}

/* review list */
#listTitle {
    text-align: center;
    font-size: 2rem;
    margin: 1em;
}

.review-list {
    margin: 1em;
}

#review-list a {
    text-decoration: none;
}

#review-list a:hover {
    text-decoration: none;
}

/* Comment Section */
.comment {
    background-color: #411f2a;
    border: #1f0a1c solid 1.5px;
    border-radius: 10px;
    padding: 1em;

}

/* Review_detail comment buttons */
.comment-actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 1em;
}

/* forms */

select>option {
    color: #1f0a1c;
    font-family: 'Truculenta', sans-serif;
}

select,
input,
textarea {
    border: #1f0a1c solid 1px;
    border-radius: 30px;
    color: #1f0a1c;
    padding: 0.5rem;
}

/* Comment form */

.comment-form textarea {
    padding: 1rem;
    max-width: 60vw;
    height: 141px;
}

/* album dropdown */
#id_existing_album {
    width: 90%;
}

/* review form */

#review-form textarea {
    padding: 1rem;
}

#review-form {
    background-color: #1f0a1c;
    border: #1f0a1c solid 1px;
    border-radius: 10px;
    box-shadow: #1f0a1c 0px 0px 10px;
    text-align: center;
    max-width: 1000px;
    width: 80vw;
}



#review-form label {
    display: block;
}

.review-form {
    display: flex;
    flex-direction: column;
    align-items: center;

}

/* Sign Up */
form>ul>li {
    list-style: none;
    margin-left: 0;
}

/* Ensure footer is fixed to the bottom */


/* Footer */

footer {
    background-color: #1f0a1c;
    text-align: center;
}

footer p {
    margin: 0;
    padding: 0.5rem;
}

/* Summernote Iframe */
.summernote-div {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.summernote-div iframe {
    flex: 1;
    border: 0;
    width: 100%;
    height: 100%;
}

/* Media queries */

/* Tablets and up */
@media only screen and (min-width: 768px) {
    #review-form {
        width: 60vw;
    }

    #id_existing_album {
        width: 50%;
    }
}