/*Box Design*/
.box{
    padding:30px;
    background:var(--white);
    border-radius:var(--border-radius);
    box-shadow:var(--box-shadow);
    transition: var(--transition);
    margin-top:10px;
}
.box:hover{
    transform: scale(1.05,1.05);
    box-shadow:var(--box-shadow-1);
    transition: var(--transition);
}
.box .count{
    font-size:55px;
    color:var(--orange-dark);
    font-weight:900;
}
.box .title{
    font-size:20px;
    color:var(--black);
    font-weight:900;
    margin:5px 0px;
}
.box .paragraph{
    font-size:16px;
    color:var(--grey);
}
@media (max-width: 991px) {
    .box .count{
        font-size:45px;
    }
    .box .title{
        font-size:18px;
    }
}

@media (max-width: 768px) {
    .box{
        padding:20px;
    }
    .box .title{
        font-size:16px;
    }
    .box .paragraph{
        font-size:14px;
    }
}

/*Featured rows*/
.featured{
    padding:35px 10px;
    text-align:center;
    margin-top:50px;
}
.featured .box{
    margin-top:30px;
}

@media (max-width: 991px) {
    .featured{
        padding:30px 10px;
    }
}
@media (max-width: 768px) {
    .featured{
        padding:25px 10px;
    }
    .featured .box{
        margin-top:10px;
        margin-bottom:5px;
        margin-bottom:5px;
    }
}
.about-title{
    font-size:1rem;
    color:var(--grey);
    letter-spacing: 3px;
}
.about-heading{
    font-size:3.5rem;
    font-weight:700;
    color:var(--black);
}
.about-paragraph{
    font-size:1rem;
    color:var(--grey);
    padding-top:15px;
}
@media (max-width: 768px) {
    .about-title{
        font-size:0.933rem;
        text-align: center;
    }
    .about-heading{
        font-size:2.5rem;
        text-align: center;
    }
    .about-paragraph{
        font-size:0.9rem;
        padding-top:15px;
        text-align: center;
    }
}

/*Featured Images*/
.featured-images{
    transition: var(--transition);
}
.featured-images:hover{
    transform: scale(1.02,1.02);
    transition: var(--transition);
}

/*Event Highlighter*/
.event-highlighter-box{
	padding:10px 20px 20px 20px;
	background:var(--black);
	color:var(--white);
	border-radius: 0 0 9px 9px;
	background: linear-gradient(90deg, #0a031a, #1d0d40, #4a0d2b, #1f0210);
}
.event-img{
	border-radius:9px;
}
/* Clean, Static Container */
.event-bar {
	display: flex;
	align-items: center;
	width: 100%;
	height: 48px;
	background: linear-gradient(90deg, #0a031a, #1d0d40, #4a0d2b, #1f0210);
	border-radius: 9px 9px 0 0;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Static Title Container */
.event-title-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 24px;
	background-color: #0f1115; /* Dark solid badge background */
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	user-select: none;
}

/* STRICTLY ANIMATED TEXT ONLY */
.event-text-animated {
	font-weight: 800;
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	
	/* Gradient Fill applied directly to the text */
	background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
	background-size: 300% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	
	/* Smooth texture scrolling animation */
	animation: textGradient 3s linear infinite;
}

/* Content Area */
.event-content {
	flex-grow: 1;
	padding: 0 15px;
	color:var(--white);
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: opacity 0.3s ease;
}

/* Action Button */
.event-btn {
	padding: 9px 15px;
	background-color: rgba(255, 255, 255, 0.07);
	color: var(--orange);
	border: none;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.event-btn:hover {
	background-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-1px);
}

/* Text Animation Logic */
@keyframes textGradient {
	0% { background-position: 0% 50%; }
	100% { background-position: 300% 50%; }
}