body{
    font-family: 'Jost', sans-serif !important;;
} 

/* ===== Hero Section CSS Start ===== */

.hero {
    position: relative;
    background: url('../img/bg-1.jpg') center/cover no-repeat;
    color: #fff !important;
    padding: 120px 0;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9) !important;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5) !important; /* Adjust opacity here */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    user-select: none;
}

.hero p.lead {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffc2c2 !important;
}
 
/* ===== Hero Section CSS End ===== */


/* ===== Animated Heading ===== */

.animated-heading {
    font-weight: 700;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

.tagline {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* ===== Product Card Hover Effect ===== */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15) !important;
}

.product-card .card-title{
    font-weight: bold;
}

.modal-header {
    background-color: #2E2E2E !important;
    color: white !important;
}

/* Fade-up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#btn{
    background-color: #ff4545 !important;
}

#btn:hover{
    background-color: #000 !important;
    color:white !important;
}

#btn-1{
    background-color: #ff4545 !important;
}

#btn-1:hover{
    background-color: #000 !important;
    color:white !important;
}

/* ===== CTA Section ===== */

#custom-orders {
    color: #ff4545 !important;
    padding: 4rem 1rem;
    text-align: center;
    border-radius: 0.5rem;
    margin-top: 4rem;
}

#custom-orders h2 {
    font-weight: 800;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #ff4545 !important;
}

#custom-orders p {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto 2rem;
    color: #000 !important;
}

#custom-orders .btn-dark {
    background-color: #ff4545 !important;
    border-color:#ff4545 !important;
    color: #FAFAFA !important;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

#custom-orders .btn-dark:hover {
    background-color: #000 !important;
    border-color: #000 !important; 
    color: #FAFAFA !important;
    box-shadow: 0 6px 15px rgba(55, 71, 79, 0.4) !important;
}

@media (max-width: 768px) {
    h2.fw-bold {
        font-size: 1.75rem;
    }

    #custom-orders h2 {
        font-size: 1.75rem;
    }
}