/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Section Styling */
section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h1, section h2 {
    color: #FF6F3C; /* Primary orange */
    text-align: center;
    margin-bottom: 15px;
}

section p, section ul {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Club Info Section */
#club-info p {
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Club Contact Details */
#club-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#club-contact ul li {
    margin: 10px 0;
}

/* Social Media Links */
#club-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#club-social ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #FF6F3C; /* Primary orange */
    transition: color 0.3s ease;
}

#club-social ul li a:hover {
    color: #E65C2F; /* Darker orange */
}

/* Club Logo Styling */
.club-logo {
    text-align: center;
    margin-bottom: 20px; /* Adds spacing below the logo */
}

.club-logo img {
    width: 150px; /* Logo width */
    height: 150px; /* Logo height */
    object-fit: contain; /* Ensures the logo fits without distortion */
    border: 1px solid #ccc; /* Optional border for aesthetics */
    border-radius: 10px; /* Rounded corners for a softer look */
    padding: 5px; /* Space between the logo and border */
    background: #f9f9f9; /* Light background for contrast */
}

.back-button-container {
    margin-bottom: 15px; /* Adds space below the button */
    text-align: left; /* Aligns the button to the left */
}

.back-button {
    background-color: #FF6F3C; /* Primary orange color */
    color: #fff; /* White text */
    border: none; /* No border */
    padding: 10px 20px; /* Space inside the button */
    font-size: 1rem; /* Text size */
    font-weight: bold; /* Bold text */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.back-button:hover {
    background-color: #E65C2F; /* Darker orange on hover */
}
