.about-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 1rem;
    color: white;
    overflow: hidden;
}

/* Dark overlay using pseudo-element */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* 50% black overlay */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

/* Ensure container content sits above the overlay */
.about-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

body {
    /* font-family: 'Roboto', sans-serif; */
    overflow-x: hidden;
}

/*
.font-playfair {
    font-family: 'Playfair Display', serif;
}
*/

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
    background-color: #fff;
}

.filter-btn.active {
    background-color: #1e40af;
    color: white;
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-in-out;
}

button[id=submit-blog-form-button]:hover,
button[type=submit]:hover,
button[id=back-to-blog-button]:hover,
button[type=button]:hover {
    background-color: rgb(147, 147, 76);
}

button[id=submit-blog-form-button]:hover button[type=submit]:hover,
button[id=back-to-blog-button]:hover button[type=button]:hover {
    background-color: rgb(147, 147, 76);
}

.blog-btn {
    background: #b5862c;
}

.blog-btn:hover {
    background: #866321;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}