/*=======================
    Import CSS
=========================*/
@import url('./fontawesome.min.css');
@import url('./brands.min.css');
@import url('./solid.min.css');

/*=======================
    Fonts section
=========================*/
@font-face {
    font-family: 'PlayfairDisplay';
    src: url('../fonts/PlayfairDisplay.ttf')
}
.playfair-display {
    font-family: 'PlayfairDisplay', sans-serif;
}
.text-green {
    color: #226e01 !important;
}
.navbar .nav-link {
    color: #aaa;
}
.navbar .nav-link.active {
    color: #eee;
}
.navbar-toggler-icon{
    filter: invert(1);
}
/*=======================
    General section
=========================*/
img {
    max-width: 100%;
}
.navbar-brand{
    max-width: 100px;
}
/*=======================
    Banner section
=========================*/
.banner-container {
    min-height: calc(100vh - 56px);
}
.banner-container img, .book-container img {
    max-height: 450px;
    border-radius: 6px;
    box-shadow: 5px 6px 6px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 5px 6px 6px 1px rgba(0, 0, 0, 0.25);
}
.banner-container-bg-1 {
    background: url("../images/banner1.png") center / cover fixed no-repeat;
}
.banner-container-bg-2 {
    background: url("../images/banner2.png") center / cover fixed no-repeat;
}
/*=======================
    Logo section
=========================*/
.logo-section img {
    max-width: 175px;
}

/*=======================
    Animation section
=========================*/
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.bg-yellow {
    background-color: #fffc7b;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

/*=======================
    Comment section
=========================*/
.comment-box {
    position: relative;
    background: #fff;
    border: 2px solid #000;
    padding: 30px;
    max-width: 500px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 4px;
}

.comment-box::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 30px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

.comment-box::before {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 32px;
    border-width: 18px 18px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.comment-box .quote {
    position: absolute;
    top: -20px;
    right: 15px;
    font-size: 60px;
    color: #222;
    font-weight: bold;
}
/*=======================
    Author section
=========================*/
.author-img {
    border-radius: 6px;
    box-shadow: 5px 6px 6px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 5px 6px 6px 1px rgba(0, 0, 0, 0.25);
}
/*=======================
    Social icons
=========================*/
.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}
.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 25px;
    width: 1.8rem;
    height: 1.8rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
}
.social-item:hover {
    transform: scale(1.1);
}