/* ===========================
   CSS VARIABLES
   =========================== */
   :root {
    --primary: #081c34;
    --primary-hover: #0a2a55;
    --primary-light: #e8eef5;
}

/* ===========================
   PROMOTION HERO - NO TEXT
   =========================== */
#promotion-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/promotions/promohero.png') center/cover no-repeat;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.promotion-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* ===========================
   PROMOTION TITLE SECTION
   =========================== */
.promotion-title-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 60px;
}

.promotion-fancy-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-decoration {
    color: #d4af37;
    font-size: 3rem;
    margin: 0 30px;
    display: inline-block;
   animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.promotion-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===========================
   PROMOTION GALLERY
   =========================== */
.promotion-gallery {
    background: #ffffff;
    min-height: 400px;
}

.promotion-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(8, 28, 52, 0.2);
}

.promotion-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f8f9fa;
}

.promotion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promotion-card:hover .promotion-image {
    transform: scale(1.1);
}

/* Hover Overlay */
.promotion-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 28, 52, 0.9) 0%, rgba(8, 28, 52, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promotion-card:hover .promotion-hover-overlay {
    opacity: 1;
}

.promotion-view-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.promotion-view-btn i {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.promotion-view-btn:hover {
    color: white;
    transform: scale(1.1);
}

.promotion-view-btn:hover i {
    transform: scale(1.2) rotate(15deg);
}

/* Empty State */
.empty-state {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===========================
   CTA SECTION
   =========================== */
.promotion-cta {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.cta-card {
    position: relative;
    background: var(--primary);
    border-radius: 30px;
    padding: 60px 50px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(8, 28, 52, 0.3);
}

.cta-card .btn-light {
    background: white;
    color: var(--primary);
    border: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card .btn-light:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-light);
    color: var(--primary-hover);
}

.cta-card .btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-card .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* CTA Decoration */
.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

.cta-circle-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -100px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -90px;
    left: -50px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.6;
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .promotion-fancy-title {
        font-size: 4rem;
    }

    .title-decoration {
        font-size: 2.5rem;
        margin: 0 20px;
    }

    .promotion-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    #promotion-hero {
        height: 50vh;
    }

    .promotion-title-section {
        padding: 60px 0 40px;
    }

    .promotion-fancy-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .title-decoration {
        font-size: 2rem;
        margin: 0 15px;
    }

    .promotion-subtitle {
        font-size: 1.1rem;
    }

    .promotion-image-wrapper {
        height: 300px;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-card .btn-lg {
        padding: 12px 30px !important;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    #promotion-hero {
        height: 40vh;
    }

    .promotion-fancy-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .title-decoration {
        font-size: 1.5rem;
        margin: 0 10px;
    }

    .promotion-subtitle {
        font-size: 1rem;
    }

    .promotion-image-wrapper {
        height: 250px;
    }

    .promotion-view-btn {
        font-size: 1rem;
    }

    .promotion-view-btn i {
        font-size: 2.5rem;
    }
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}