body {
    font-family: 'Lato', sans-serif;
}

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

.bg-dark {
    background-color: #121212 !important;
}

.bg-warning {
    background-color: #FFD700 !important;
}

.bg-secondary {
    background-color: #212529 !important;
}

.text-warning {
    color: #FFD700 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.hover-underline:hover::after {
    transform: scaleX(1);
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.zoomIn {
    animation-name: zoomIn;
}

/* Specific section styling */

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#hero > .container {
    z-index: 2;
}

.card-image-hover {
    transition: transform 0.4s ease-in-out;
    overflow: hidden;
}

.card-image-hover:hover {
    transform: scale(1.1);
}