/* Reset margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Include padding and border in element's width/height */
}

/* Body styling */
html, body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    height: 100%; /* Ensure full height */
    display: flex;
    flex-direction: column;
}

/* Header styling */
header {
    background: linear-gradient(90deg, #2c5b7f, #1a3c5a, #334e68);
    height: 120px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between logo and text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Subtle shadow for depth */
	padding: 1rem;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Logo and header content */
.headerContent {
    display: flex;
    align-items: center;
}

#myImage {
    width: 70px;
    margin-right: 15px; /* Space between image and text */
}

.headerText h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
	color: White;
}

.headerText p {
    font-size: 1rem;
    color: White;
}

/* Navigation styling */
nav {
    background: linear-gradient(90deg, #1f4068, #162447, #334e68);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0.75rem;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

nav ul a:hover {
    background: #e94560;
    color: #FFD700;
}

nav ul a.active {
    background: #e94560;
    color: #ffffff;
}

/* Main content styling */
main {
    flex: 1;
    padding: 2rem;
    color: #e8e8e8;
    background: linear-gradient(90deg, #2c5b7f, #1a3c5a, #334e68);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); /* Subtle inner shadow for depth */
}

/* Footer styling */
footer {
    background: linear-gradient(90deg, #1f4068, #162447, #334e68);
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3); /* Shadow above footer */
}

#indexContent {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Add space between the sections */
    justify-content: space-between; /* Space out the two sections */
    padding: 2rem; /* Add padding around the content */
}

/* Styling for Opening Hours */
.openingHours, .crazyHours {
    background: linear-gradient(135deg, #1f4068, #162447);
    padding: 2rem;
    border-radius: 15px; /* Smooth edges */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(0, 255, 255, 0.3); /* Outer and inner glow */
    color: #ffffff; 
    text-align: center; /* Center text */
    font-family: 'Roboto', Arial, sans-serif;
	flex: 1; /* Each section takes equal space */
    max-width: 48%;
    box-sizing: border-box; /* Include padding and borders in width */
}

.openingHours h1, .crazyHours h1 {
    font-size: 2rem;
    color: #00d4ff;
    text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
    margin-bottom: 1rem;
}

.openingHours dt, .crazyHours dt {
    font-size: 1.3rem;
    color: #ffffff;
    margin-top: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 5px #ffffff;
}

.openingHours dd, .crazyHours dd {
    font-size: 1rem;
    color: #b0c7ff;
    margin-bottom: 0.5rem;
}

#locationSection {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-align content */
    padding: 0;
    background: linear-gradient(135deg, #1f4068, #162447); 
    border-radius: 15px; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(0, 255, 255, 0.3); /
    overflow: hidden; 
    width: fit-content; 
    margin-top: 2rem; 
}

#locationSection h1 {
    text-align: center; /* Center align the title */
    color: #e8e8e8; 
    margin-bottom: 1.5rem;
}

.locationContent {
    display: flex;
    align-items: flex-start; 
    gap: 1rem; /* Space between image and text */
}

#locationImage {
    flex-shrink: 0; 
    max-width: 50%; 
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for the image */
}

#locationImage:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); 
}

.locationDescription {
    color: #e8e8e8;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-right: 1rem;
}

.eventSection {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
	background: linear-gradient(135deg, #1f4068, #162447);
    border-radius: 15px;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(0, 255, 255, 0.3);
}

#happeningImage, #upcomingImage {
    flex: 0 0 auto; 
    max-width: 45%; 
    height: auto; 
    border-radius: 10px; 
    overflow: hidden; 
    object-fit: cover; 
    display: block; 
    margin: 0 auto; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); 
}

#happeningImage:hover, #upcomingImage:hover {
    transform: scale(1.02); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); 
}

.eventDescription {
    flex: 1;
    color: #e8e8e8;
	text-align: justify;
	padding: 2rem;
}

.eventDescription h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.eventDescription p {
    margin-bottom: 0.5rem; 
    font-size: 1rem;
    color: #b0b0b0;
}

.facilityImage {
    flex: 0 0 auto; 
    max-width: 35%; 
    height: auto; 
    border-radius: 10px; 
    overflow: hidden; 
    object-fit: cover; 
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); 
}

.facilityImage:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Adds a shadow for a popping effect */
}

.facilitySection {
	display: flex;
    align-items: flex-start;
    gap: 1rem; /* Space between image and text */
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #1f4068, #162447);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3),
                inset 0 0 10px rgba(0, 255, 255, 0.3); 
    color: #e8e8e8;
}

.facilityText {
    flex: 1;
    color: #e8e8e8;
	text-align: justify;
	padding: 2rem;
}

.facilitySection p {
	margin-bottom: 0.5rem; /* Space between paragraphs */
    font-size: 1rem;
    color: #b0b0b0;
}

.facilitySection h2 {
	font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.searchBar {
    position: relative;
    margin: 20px auto;
    text-align: center;
}

#facilitySearch {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#facilitySearch:focus {
    border-color: #1f4068;
    outline: none;
    box-shadow: 0 2px 6px rgba(31, 64, 104, 0.5);
}

#suggestionList {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    max-height: 150px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 5px;
    margin: 0;
    z-index: 1000;
    display: none;
}

#suggestionList li {
    padding: 8px;
    cursor: pointer;
	color: black;
	text-align: left;
}

#suggestionList li:hover {
    background-color: #f0f0f0;
}

/* Booking Form Container */
#bookingContent {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #1f4068, #162447);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(0, 255, 255, 0.3);
    color: #ffffff;
    text-align: center;
}

/* Form Labels */
form label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 600;
    color: #e8e8e8;
}

/* Input and Select Fields */
form input, form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    background: #e8e8e8;
    color: #333333;
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

form input:focus, form select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(31, 64, 104, 0.8);
}

/* Submit Button */
form button {
    width: 100%;
    padding: 0.75rem;
    background: #e94560;
    color: #ffffff;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
}

form button:hover {
    background: #FFD700;
    color: #333333;
}

/* Confirmation Message */
#confirmationMessage {
    display: none;
    margin-top: 20px;
    padding: 1.5rem;
    background: #1a3c5a;
    color: #00FF7F;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#membershipPlans {
    text-align: center;
}

#membershipPlans h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

#membershipPlans p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.membershipOptions {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.membershipCard {
	background: linear-gradient(135deg, #1f4068, #162447);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(0, 255, 255, 0.3);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.membershipCard h3 {
    font-size: 1.8em;
    color: #e8e8e8;
    margin-bottom: 15px;
}

.membershipCard p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.membershipCard ul {
    list-style-type: none;
    padding: 0;
    font-size: 1em;
}

.membershipCard ul li {
    margin-bottom: 10px;
}

.membershipCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#membershipNote {
	margin-top: 1rem;
	color: #e8e8e8;
}

.about-section {
    background: linear-gradient(135deg, #1f4068, #162447);
    color: #ffffff;
    margin: 20px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 800px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #e8e8e8; /* Gold for emphasis */
    text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #e8e8e8;
}

/* Founder Section Styling */
.founder-section {
    background: linear-gradient(135deg, #1f4068, #162447);
    color: #ffffff;
    margin: 20px auto;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 800px; 
}

.founder-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #e8e8e8; 
    text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
}

.founder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Space between the image and the description */
}

.founder-image img {
    width: 500px; 
    height: auto; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.founder-image:hover {
    transform: scale(1.05);
}

.founder-description {
    text-align: justify;
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.contactInfo, .contactForm, .socialLinks {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1f4068, #162447);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3), 
                inset 0 0 10px rgba(0, 255, 255, 0.3);
}

.contactInfo h2, .contactForm h2, .socialLinks h2 {
    font-size: 1.5rem;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.contactForm label, .contactForm input, .contactForm textarea {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

.contactForm input, .contactForm textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    background: #e8e8e8;
    color: #333333;
    font-size: 1rem;
}

.contactForm button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    background: #e94560;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contactForm button:hover {
    background: #FFD700;
}

.socialLinks a {
    color: #e8e8e8;
    text-decoration: none;
    margin: 0 0.5rem;
}

#successMessage {
    padding: 1rem;
    background-color: #0f3460;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #FFD700;
}
