/* === Fonts === */
body {
    font-family: Arial, sans-serif;
}

/* === Headings === */
h2.custom-heading {
    color: #eb5f2d;
    font-family: 'Merienda', cursive;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* === Section Padding === */
section {
    padding: 3rem 0;
}

/* === Paragraphs === */
.event-description {
    text-align: justify;
    text-justify: inter-character;
    line-height: 1.7;
}

/* === Images === */
img.event-image {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    object-fit: cover;
}

img.event-image-small {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

/* === Divider Line === */
.section-divider {
    border: 2px solid black;
    width: 50%;
    margin: 2rem auto;
}

/* === Animations === */
.fade-in-zoom {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    animation: fadeInZoom 1s forwards;
}
@keyframes fadeInZoom {
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.img-hover-tilt:hover {
    transform: scale(1.05) rotate(-1deg);
    transition: transform 0.5s ease;
}

.content-slide {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideFade 1s forwards;
}
@keyframes slideFade {
    to { opacity: 1; transform: translateX(0); }
}
.content-slide:hover {
    transform: translateX(0) scale(1.02);
    transition: transform 0.3s ease;
}

/* === Badge Styling === */
.badge-pop {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    transform: scale(0);
    animation: popIn 0.6s forwards;
    animation-delay: 0.5s;
}
@keyframes popIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.badge-pop:hover {
    text-shadow: 0 0 8px #eb5f2d;
    transform: scale(1.1);
    transition: all 0.3s;
}

/* === Buttons === */
.custom-btn-primary {
    background-color: #eb5f2d;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    font-family: 'Merienda', cursive;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: btnPulse 2s infinite alternate;
}
.custom-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 1rem 2rem rgba(235,95,45,0.4);
}
@keyframes btnPulse {
    0% { box-shadow: 0 0.5rem 1rem rgba(235,95,45,0.2); }
    100% { box-shadow: 0 1rem 1.8rem rgba(235,95,45,0.4); }
}

.custom-btn-outline {
    color: #eb5f2d;
    border: 2px solid #eb5f2d;
    border-radius: 30px;
    padding: 0.6rem 1.8rem;
    font-weight: 700;
    font-family: 'Merienda', cursive;
    transition: all 0.3s;
}
.custom-btn-outline:hover {
    background-color: #eb5f2d;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 1rem 2rem rgba(235,95,45,0.4);
}

/* === Quote Animation === */
.quote-animate {
    opacity: 0;
    transform: translateX(-30px);
    animation: quoteSlide 1s forwards;
    animation-delay: 0.7s;
}
@keyframes quoteSlide {
    to { opacity: 1; transform: translateX(0); }
}
.quote-animate p {
    position: relative;
}
.quote-animate p::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #eb5f2d;
    left: 0;
    bottom: -5px;
    animation: underline 1s forwards;
    animation-delay: 1s;
}
@keyframes underline {
    to { width: 100%; }
}

.event-description {
    text-align: justify !important;
    word-break: break-word !important;
    hyphens: auto !important;
}

