/* Custom styles for Biblio+ landing page */

/* Primary color customization */
.is-primary {
    background-color: rgb(255, 211, 54) !important;
    color: #000 !important;
}

.is-primary:hover {
    background-color: rgb(255, 211, 44) !important;
    color: #000 !important;
}

/* Hero text color */
.hero.is-primary .title,
.hero.is-primary .subtitle {
    color: #000 !important;
}

.hero.is-primary .title a,
.hero.is-primary .subtitle a {
    color: #000 !important;
    text-decoration: none;
}

.hero.is-primary .title a:hover,
.hero.is-primary .subtitle a:hover {
    text-decoration: underline;
}

/* Logo styling */
.logo-img {
    max-height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: 0.75rem;
    color: #000;
}

/* Feature boxes styling */
.feature-box {
    height: 100%;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Feature icons styling */
.feature-icon {
    font-size: 2.5rem;
    color: rgb(255, 211, 54);
    margin-bottom: 1.5rem;
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon i {
    transform: scale(1.1);
}

/* Steps styling */
.steps {
    list-style-type: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgb(255, 211, 54);
    color: #000;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Image styling */
.image img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    object-fit: contain;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .hero-body {
        padding: 2rem 1.5rem;
    }
    
    .title.is-1 {
        font-size: 2rem;
    }
    
    .subtitle.is-4 {
        font-size: 1.25rem;
    }
}

/* Footer styling */
.footer {
    padding: 2rem 1.5rem;
    background-color: #f5f5f5;
}

/* Social sharing buttons */
.button.is-facebook {
    background-color: #1877f2;
    color: white;
}

.button.is-facebook:hover {
    background-color: #166fe5;
    color: white;
}

.button.is-twitter {
    background-color: #1da1f2;
    color: white;
}

.button.is-twitter:hover {
    background-color: #1a94e0;
    color: white;
}

.button.is-facebook .icon,
.button.is-twitter .icon {
    margin-right: 0.5rem;
}