/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC99 50%, #FFE4B5 100%);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 8px, transparent 8px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.25) 6px, transparent 6px),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.2) 4px, transparent 4px),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.15) 5px, transparent 5px),
        radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.15) 5px, transparent 5px);
    background-size: 150px 150px, 120px 120px, 80px 80px, 180px 180px, 200px 200px, 140px 140px;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content {
    padding: 20px 0;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #2C1810;
    line-height: 1.2;
    margin-bottom: 25px;
     font-family: "Libre Bodoni", serif !important;
}

.hero-subheading {
    font-size: 1.25rem;
    color: #8B0000;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 600;
}

.hero-cta {
    margin-top: 30px;
}

.hero-btn {
    background-color: #FA6E32;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px 0 50px 0;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(250, 110, 50, 0.3);
}

.hero-btn:hover {
    background-color: #E85A28;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 110, 50, 0.4);
}

.hero-image {
    text-align: center;
    padding: 20px 0;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    z-index: 2;
}

.hero-img:hover {
    transform: scale(1.02);
}
