/* General styling */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #e7e7e7;
    color: #333;
    overflow-x: hidden;
}

/* Header / Hero section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFD700;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0;
}

.btn-outline-gold {
    border-color: #FFD700;
    color: #FFD700;
    transition: 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #FFD700;
    color: #333;
}

/* Button animation */
.btn-outline-gold {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Category cards */
.category-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body {
    background-color: #333;
    padding: 20px;
    border-radius: 0 0 15px 15px;
    color: #FFD700;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Category card with box shadow and overlay */
.category-card {
    position: relative;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    /* Subtle shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    /* Stronger shadow on hover */
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Text overlay at the bottom of the image */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFD700;
    padding: 10px;
    text-align: center;
}

.overlay h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
}

.overlay p {
    font-size: 1rem;
    margin: 5px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Mobile padding for left and right */
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .overlay h5 {
        font-size: 1.2rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }
}