/* Book Frame Styles */
.book-frame {
    border: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.book-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.book-frame .card-img {
    height: 100%;
    object-fit: cover;
    border-radius: 4px 0 0 4px;
    margin-left: 10%;
}



@media (max-width: 767px) {
    .book-frame .card-img {
        margin-left: 0px !important;
    }
}

.book-frame .card-body {
    padding: 3rem;
}

.book-frame .card-title {
    color: #f86f2d;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.book-frame .book-details {
    margin: 1.5rem 0;
}

.book-frame .book-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.book-frame .btn-primary {
    background-color: #f86f2d;
    border-color: #f86f2d;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.book-frame .btn-primary:hover {
    background-color: #d95e13;
    border-color: #d95e13;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(248,111,45,0.12);
}

/* Logo Frame Styles */
.logo-frame {
    background: #fff;
    border-radius: 10px;
   
    transition: all 0.3s ease;
}

.logo-frame:hover {
    transform: translateY(-5px);

}

.logo-text h2 {
    color: #2c3e50;
    font-weight: 600;
}

.logo-text .lead {
    color: #34495e;
    font-size: 1.2rem;
    font-weight: 400;
}

.logo-text p {
    color: #7f8c8d;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .logo-frame {
        margin-bottom: 2rem;
    }
    
    .logo-text {
        text-align: center;
        padding-left: 0 !important;
    }
} 