/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #332a15; }
::-webkit-scrollbar-thumb:hover { background: #C5A059; }

/* Custom animation for the background image */
@keyframes zoomIn {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.carousel-bg-image {
    animation: zoomIn 6s ease-in-out infinite alternate;
}
.event-card {
    transition: all 0.3s ease;
}
.event-card:hover {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    transform: translateY(-5px);
}
/* General Sponsor Card Style */
.sponsor-card {
    background-color: #0F0F0F;
    border: 1px solid #332a15;
    transition: all 0.3s ease;
}
.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(197, 160, 89, 0.2), 0 4px 6px -2px rgba(197, 160, 89, 0.05);
}

/* Platinum Tier Specific Styling */
.platinum-tier {
    background: radial-gradient(circle at center, #0F0F0F 0%, #050505 100%);
    border: 2px solid #E5C579;
}

/* Gold Tier Specific Styling */
.gold-tier {
    border-bottom: 2px solid #C5A059;
}
/* General Card Style */
.membership-card {
    background-color: #0F0F0F;
    border: 1px solid #332a15;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 20px -5px rgba(197, 160, 89, 0.2), 0 6px 6px -3px rgba(197, 160, 89, 0.05);
}

/* Lifetime Tier Specific Styling */
.lifetime-tier {
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.15) 0%, rgba(5, 5, 5, 1) 70%);
    border: 2px solid #E5C579;
}

/* Input Field Styling */
.form-input {
    background-color: #0F0F0F;
    border: 1px solid #332a15;
    color: #E5C579;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: border-color 0.2s;
}
.form-input:focus {
    outline: none;
    border-color: #C5A059;
    box-shadow: 0 0 0 1px #C5A059;
}

/* Story Card Styling */
.story-card {
    background-color: #0F0F0F;
    border: 1px solid #332a15;
    transition: all 0.3s ease;
}
.story-card:hover {
    box-shadow: 0 10px 15px -3px rgba(197, 160, 89, 0.2), 0 4px 6px -2px rgba(197, 160, 89, 0.05);
}

/* Input Field Styling */
.form-input {
    background-color: #0F0F0F;
    border: 1px solid #332a15;
    color: #E5C579;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: border-color 0.2s;
}
.form-input:focus {
    outline: none;
    border-color: #C5A059;
    box-shadow: 0 0 0 1px #C5A059;
}

/* Message Box Animations */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}
.animate-slide-in {
    animation: slideIn 0.3s ease-out forwards;
}
.animate-slide-out {
    animation: slideOut 0.3s ease-in forwards;
}
/* CONTACT STYLE */
.input-style {
    background-color: #0F0F0F;
    border: 1px solid #332a15;
    color: #E5C579;
    padding: 0.75rem;
    border-radius: 0.375rem;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.input-style:focus {
    outline: none;
    border-color: #C5A059;
    box-shadow: 0 0 0 1px #C5A059;
}
.input-style::placeholder {
    color: #6b7280; /* Gray-500 */
}