/* ==========================================
   Global Styles
========================================== */

/* Apply a background gradient and set the basic layout for the body */
body {
    background: linear-gradient(135deg, #0a1931, #0d254d, #142b52, #0a1931);
    background-size: 100% 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    flex-direction: column;
    padding: 1rem;
}


/* ==========================================
   Decorative Patterns & Overlays
========================================== */

/* Pattern overlay for a decorative effect */
.pattern-overlay {
    background-image: url('../patrens.png');
    background-repeat: repeat;
    background-size: 450px 450px;
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ==========================================
   Club Name Styling
========================================== */

/* Style for the club name, animated on load */
.club-name {
    font-family: "Concert One", sans-serif;
    font-weight: bold;
    color: #ffa500;
    position: relative;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: fadeIn 3s ease forwards;
    animation-delay: 1s;
    text-transform: uppercase;
    z-index: 50;
    white-space: nowrap;
}

/* Fade-in effect */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.club-name span {
    display: inline-block;
    animation: float 2s ease-in-out infinite;
}

.club-name span:nth-child(odd) {
    animation-delay: 0.1s;
}

.club-name span:nth-child(even) {
    animation-delay: 0.3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

        /* Description Styling with Shadow Text */
        .description {
            font-family: "Amiri", serif;
            font-size: 1.5rem;
            color: #ffeb3b;
            margin-top: 1.5rem;
            opacity: 0;
            animation: fadeIn 3s ease forwards;
            animation-delay: 4s; /* Delay to appear after the club name */
            text-shadow: 
                3px 3px 0px #ff0000,  /* Red shadow */
                -3px -3px 0px #00ff00, /* Green shadow */
                3px -3px 0px #0000ff,  /* Blue shadow */
                -3px 3px 0px #ffff00; /* Yellow shadow */
        }
/* ==========================================
   Footer Styling
========================================== */

/* Footer with gradient background */
footer {

    z-index: 50;
    background: #fea637;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: rgb(22, 63, 117);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    color: #121d81;
    font-size: 1.0rem;
    text-decoration: none;
}