﻿
body {
    font-family: 'Roboto', sans-serif;
    /*background-color: #ffc107*/; /* ✅ Deep Charcoal Background */
    color: #f0f0f0;
    margin-bottom:0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: #FFD700 !important; /* ✅ Custom Gold Color */
}
/* ✅ Carousel Image */
.carousel-inner img {
    height: 450px;
    object-fit: cover;
}

.carousel-container {
    max-width: 900px;
}
/* ✅ Card Overlay and Hover Effect */
.card-with-hover {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .card-with-hover:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    transition: background 0.3s ease-in-out;
}

.card-with-hover:hover .card-overlay {
    background: rgba(0,0,0,0.7);
}

.card-content {
    position: relative;
    z-index: 1;
}


