/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

h1, h2, h3 {
    color: #00f; /* Blue text */
}

p {
    color: #fff; /* White text */
}

a {
    color: #00f; /* Blue links */
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-shadow: 0px 0px 5px #00f;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0em;
    background-color: #000000; /* Darker background */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00f; /* Blue border */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2em;
}

.nav-links a {
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: #00f;
    transform: scale(1.1);
}

/* Hero Section */
.club-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(135deg,  #000,rgb(0, 0, 0));
    animation: fadeIn 1.5s ease-in;
}

.club-hero-content h1 {
    font-size: 3em;
    color: #00f; /* Blue text */
    margin-bottom: 0.5em;
}

.tagline {
    font-size: 1.5em;
    margin-bottom: 1em;
}

.cta-button {
    background-color: #00f; /* Blue button */
    color: #fff;
    border: none;
    padding: 0.75em 2em;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: #00f;
    transform: scale(1.1);
}

/* About Section */
.club-about-section {
    padding: 4em 2em;
    background-color: #111;
    text-align: center;
}

.club-about-section p {
    font-size: 1.2em;
    line-height: 1.6em;
    max-width: 800px;
    margin: 0 auto;
}

/* Event Section */
.club-events-section {
    padding: 4em 2em;
    background-color: #000;
    text-align: center;
}

.virtual-meetings-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2em;
    padding-top: 2em;
}

.event-card {
    background-color: #111;
    border: 2px solid #00f;
    border-radius: 8px;
    padding: 1.5em;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1em;
}

.event-card h3 {
    margin-bottom: 0.5em;
}

.event-card p {
    margin-bottom: 1.5em;
}

.join-now-button {
    background-color: #00f;
    color: #fff;
    border: none;
    padding: 0.75em 1.5em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.join-now-button:hover {
    background-color: #fff;
    color: #00f;
    transform: scale(1.05);
}

.event-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #00f;
}

/* Registration Section */
.club-registration-section {
    padding: 4em 2em;
    background-color: #111;
    text-align: center;
}

.registration-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2em;
}

.registration-card {
    background-color: #000;
    border: 2px solid #00f;
    border-radius: 8px;
    padding: 1.5em;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1em;
}

.registration-card h3 {
    margin-bottom: 0.5em;
}

.registration-card p {
    margin-bottom: 1.5em;
}

.register-button {
    background-color: #00f;
    color: #fff;
    border: none;
    padding: 0.75em 1.5em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.register-button:hover {
    background-color: #fff;
    color: #00f;
    transform: scale(1.05);
}

.registration-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #00f;
}

/* Polls Section */
.club-polls-section {
    padding: 4em 2em;
    background-color: #000;
    text-align: center;
}

.poll-embed iframe {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border: 2px solid #00f;
    border-radius: 8px;
}

/* Q&A Section */
.club-qa-section {
    padding: 4em 2em;
    background-color: #111;
    text-align: center;
}

.club-qa-section form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #000;
    padding: 2em;
    border: 2px solid #00f;
    border-radius: 8px;
}

.club-qa-section .form-group {
    margin-bottom: 1.5em;
}

.club-qa-section .form-group label {
    display: block;
    margin-bottom: 0.5em;
}

.club-qa-section .form-group input,
.club-qa-section .form-group textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #00f;
    border-radius: 5px;
    background-color: #111;
    color: #fff;
}

.club-qa-section .submit-button {
    background-color: #00f;
    color: #fff;
    border: none;
    padding: 0.75em 2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.club-qa-section .submit-button:hover {
    background-color: #fff;
    color: #00f;
    transform: scale(1.05);
}

/* Leadership Section */
.club-leadership-section {
    padding: 4em 2em;
    background-color: #000;
    text-align: center;
}

.leadership-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2em;
}

.leader-card {
    background-color: #111;
    border: 2px solid #00f;
    border-radius: 8px;
    padding: 1.5em;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1em;
}

.leader-card h3 {
    margin-bottom: 0.5em;
}

.leader-card p {
    margin-bottom: 1.5em;
}

.contact-button {
    background-color: #00f;
    color: #fff;
    border: none;
    padding: 0.75em 1.5em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
    background-color: #fff;
    color: #00f;
    transform: scale(1.05);
}

.leader-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #00f;
}

/* Past Events Section */
.club-past-events-section {
    padding: 4em 2em;
    background-color: #111;
    text-align: center;
}

.past-events-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2em;
}

.gallery-item {
    background-color: #000;
    border: 2px solid #00f;
    border-radius: 8px;
    padding: 1.5em;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1em;
}

.gallery-item h3 {
    margin-bottom: 0.5em;
}

.gallery-item p {
    margin-bottom: 1.5em;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px #00f;
}

/* Footer Section */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2em 0;
    border-top: 2px solid #00f;
}

footer p {
    margin: 0;
}

footer .social-links {
    margin-top: 1em;
}

footer .social-links a {
    color: #00f;
    margin: 0 1em;
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-links a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


/* Virtual Meetings Section */
.club-events-section {
    padding: 4em 0;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.club-events-section h2 {
    font-size: 2.5em;
    color: #00f;
    margin-bottom: 1.5em;
}

.virtual-meetings-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
    margin: 0 auto;
    padding: 0 2em;
}

.event-card {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.event-card img {
    width: 100%;
    height: auto;
    display: block;
}

.event-card h3 {
    font-size: 1.8em;
    color: #00f;
    margin: 0.8em 0;
}

.event-card p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 1.2em;
}

.join-now-button {
    background-color: #00f;
    color: #fff;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.join-now-button i {
    margin-right: 0.5em;
}

.join-now-button:hover {
    background-color: #0057e7;
    transform: translateY(-5px);
}

/* Club Registration Section */
.club-registration-section {
    padding: 50px;
    text-align: center;
}

.registration-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.registration-card {
    background-color: #222;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.registration-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.registration-card h3 {
    margin: 10px;
    color: #00bfff; /* Blue color */
}

.registration-card p {
    margin: 0 10px 10px;
    color: #ddd;
}

.register-button {
    background-color: #00bfff; /* Blue color */
    color: #fff;
    border: none;
    padding: 10px;
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.register-button:hover {
    background-color: #1e90ff; /* Darker blue on hover */
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
}

.modal-content {
    background-color: #222;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    color: #fff;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #00bfff;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    color: #00bfff; /* Blue color */
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

form textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    background-color: #00bfff; /* Blue color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1e90ff; /* Darker blue on hover */
}

#confirmation-message {
    color: #00bfff;
    font-weight: bold;
    margin-top: 10px;
}

.hidden {
    display: none;
}



/* General Styles for Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000; /* Dark background for the navbar */
    padding: 0.5em 0em; /* Adjust padding as needed */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

/* Logo Styles */
.navbar .logo {
    display: flex;
    align-items: center;
    /* Adjust logo size and padding as needed */
}

.navbar .logo img {
    height: 50px; /* Adjust based on your logo size */
    width: auto; /* Maintain aspect ratio */
    /* Optional: Add a border or box shadow */
    border-radius: 5px; /* Rounded corners if desired */
    transition: transform 0.3s;
}

.navbar .logo img:hover {
    transform: scale(1.1); /* Slightly zoom on hover */
}

/* Navigation Links Styles */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2em; /* Space between nav links */
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #1E90FF; /* Bright blue color for links */
    text-decoration: none;
    font-size: 1em; /* Adjust font size */
    padding: 0.5em 0;
    transition: color 0.3s, border-bottom 0.3s;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #ffffff; /* White color on hover */
    border-bottom: 2px solid #1E90FF; /* Underline effect */
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5em 1em; /* Adjust padding for smaller screens */
    }
    
    .nav-links {
        display: none; /* Hide links by default on small screens */
    }
}


/* Header styling */
h2 {
    font-size: 2em; /* Adjust the font size as needed */
    font-weight: bold;
    text-align: center; /* Center align the text */
    margin: 1em 0; /* Adjust margin as needed */
}

/* White color for 'Virtual' */
.white-text {
    color: #ffffff; /* White color */
}

/* Blue color for 'Meetings' */
.blue-text {
    color: #1E90FF; /* Bright blue color */
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #222;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    color: #fff;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

label {
    display: block;
    margin-top: 10px;
    color: rgb(255, 255, 255);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #444;
    color: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: #00f;
    outline: none;
}

.submit-button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #00f;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

.submit-button:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
    margin-top: 15px;
    color: #0f0;
    text-align: center;
}
