/*
Copyright (c) 2014 Himanshu Softtech.
------------------------------------------------------------------
[Master Stylesheet]

Project:	Wedding Responsive HTML Template
Version:	1.0.0
Assigned to:	Themeforest
-------------------------------------------------------------------*/

@import url("fonts.css");
@import url("bootstrap.min.css");
@import url("style.css");
@import url("animate.css");
@import url("ihover.css");
@import url("responsive.css");
@import url("../js/plugins/owl/owl.carousel.css");
@import url("../js/plugins/owl/owl.theme.css");
@import url("../js/plugins/fancybox/jquery.fancybox.css");
@import url("../js/plugins/owl/owl.carousel.css");
@import url("../js/plugins/owl/owl.theme.css");
@import url("../js/plugins/revolution/css/settings.css");
@import url("../js/plugins/revolution/css/layers.css");
@import url("../js/plugins/revolution/css/navigation.css");
@import url("../js/plugins/scattered/css/component.css");
@import url("../js/plugins/flipclock/flipclock.css");
@import url("font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.font-pop {
    font-family: 'Poppins', sans-serif !important;
}

.collapse-card-content {
    display: none;
}

.collapse-card-content.open {
    display: block;
    animation: 2s ease-in all;
}

.collapse-card-btn {
    cursor: pointer;
}

/* Highlight Section Styles */
.highlight-section {
    background: linear-gradient(135deg, #ff2900 0%, #dc3545 100%);
    padding: 5px 0;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
}

.highlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.highlight-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    padding: 4px 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #fff;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }

    100% {
        transform: scale(1);
    }
}

.highlight-content {
    position: relative;
}

.highlight-icon {
    color: #ff2900;
    font-size: 0.7rem;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-3px);
    }

    60% {
        transform: translateY(-1px);
    }
}

.highlight-title {
    color: #ff2900;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
}

.highlight-subtitle {
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.5rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .highlight-title {
        font-size: 0.6rem;
    }

    .highlight-subtitle {
        font-size: 0.45rem;
    }

    .highlight-box {
        padding: 3px 6px;
        margin: 0 3px;
    }

    .highlight-icon {
        font-size: 0.6rem;
    }
}