/* Global Styles & Reset overrides */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');
section{
    width: 100%;
    overflow: hidden;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #a7144c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8a103e;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.group:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Slider Styles */
.slider-container {
    scroll-snap-type: x mandatory;
}
.slide {
    scroll-snap-align: start;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Comment Styles */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.comment-body {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f1f1f1;
}
.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}
.comment-author cite {
    font-style: normal;
    font-weight: bold;
    color: #111;
}
.comment-content {
    color: #444;
    line-height: 1.6;
}
.reply a {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    color: #a7144c; /* Brand color */
    text-transform: uppercase;
}
.comment-form textarea, .comment-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
.form-submit .submit {
    background: #111;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.form-submit .submit:hover {
    background: #a7144c;
}
