/* Hero Section Styles */
.section-hero {
    background-blend-mode: multiply;
    height: 100vh !important;
    min-height: 600px;
}

.hero-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

.hero-card {
    border-radius: 0;
    border: 2px solid transparent;
    transition: border 0.3s ease, transform 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 373px;
    height: 356px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    cursor: pointer;
}

.hero-card:hover {
    border-color: #fff;
}

.btn-hero {
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Medium screens (14 inch laptops ~1366px-1440px) */
@media (max-width: 1440px) {
    .hero-card {
        max-width: 310px;
        height: 296px;
    }
    
    .hero-cards {
        gap: 1.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 1200px) {
    .hero-card {
        max-width: 280px;
        height: 268px;
    }
    
    .hero-cards {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
}

/* Tablet and below */
@media (max-width: 991px) {
    .section-hero {
        height: auto !important;
        min-height: 100vh;
        padding: 60px 0 40px 0;
    }
    
    .section-hero .container-xl {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-cards {
        justify-content: center !important;
        gap: 1rem;
    }
    
    .hero-card {
        max-width: 100% !important;
        height: 280px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .section-hero {
        padding: 40px 0 30px 0;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-hero {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .hero-card {
        height: 240px !important;
    }
    
    .hero-card h3 {
        font-size: 1rem !important;
    }
    
    .hero-card p {
        font-size: 0.8rem !important;
    }
    
    .hero-card div[style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.25rem !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
    }
    
    .hero-card {
        height: 220px !important;
    }
}

/* Sticky Banner on Scroll */
.sticky-hero-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(48, 59, 71, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

 

.sticky-hero-banner .container-xl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-hero-banner h2 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.sticky-hero-banner .btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.sticky-hero-banner .btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Background Music Control */
.music-control {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: rgba(3, 19, 34, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.music-control:hover {
    background: rgba(3, 19, 34, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.music-control.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    }
}

.music-control .music-icon {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .section-hero {
        height: 70vh !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    .hero-content {
        padding: 0 1rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .sticky-hero-banner h2 {
        font-size: 1.2rem !important;
    }
    
    .music-control {
        width: 48px !important;
        height: 48px !important;
        bottom: 1.5rem !important;
        left: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .section-hero {
        height: auto !important;
        min-height: 100vh !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        padding: 2rem 0 !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .section-hero .container-xl {
        height: auto !important;
        display: block !important;
    }
    
    .section-hero .row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .section-hero .col-md-12.col-lg-5,
    .section-hero .col-md-12.col-lg-7 {
        width: 100% !important;
        padding: 0 !important;
    }
    
    /* Hide hero content on mobile - it's for desktop hover only */
    .section-hero .col-md-12.col-lg-5 {
        display: none !important;
    }
    
    .hero-content {
        display: none !important;
    }
    
    /* Cards section - stack vertically centered */
    .section-hero .col-md-12.col-lg-7 {
        order: 1;
        display: flex !important;
        justify-content: center !important;
    }
    
    .hero-cards {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        width: 100%;
        max-width: 500px;
    }
    
    .hero-card {
        width: 100% !important;
        height: 220px !important;
        margin-bottom: 0 !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }
    
    .hero-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .hero-card > a > div:last-child {
        padding: 1rem !important;
    }
    
    .hero-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .hero-card p {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        display: none !important;
    }
    
    .hero-card div[style*="display: flex"] {
        font-size: 0.8rem !important;
    }
    
    .sticky-hero-banner {
        padding: 0.75rem 0 !important;
    }
    
    .sticky-hero-banner h2 {
        font-size: 1rem !important;
    }
    
    .sticky-hero-banner .btn {
        font-size: 0.85rem !important;
        padding: 0.4rem 1rem !important;
    }
    
    .music-control {
        width: 44px !important;
        height: 44px !important;
        bottom: 1rem !important;
        left: 1rem !important;
    }
    
    .music-control .music-icon {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 480px) {
    .section-hero {
        padding: 1.5rem 0 !important;
        min-height: auto !important;
    }
    
    .hero-cards {
        gap: 1rem !important;
        padding: 0 0.75rem !important;
    }
    
    .hero-card {
        height: 200px !important;
    }
}

