/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

header {
    background-color: #2c8c84;
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

header h1 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #D84B16;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: slideIn 1s ease-out;
}

h2 {
    color: #2c8c84;
    margin-bottom: 20px;
    font-size: 2em;
    text-align: center;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
}

#contact-info,
#social-media,
#location {
    margin-bottom: 50px;
}

/* Contact Information */
.contact-details {
    text-align: center;
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 1.3em;
    margin: 15px 0;
}

.contact-details strong {
    font-weight: bold;
    color: #2c8c84;
}

/* Social Media Links */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    font-size: 2.5em;
    color: #333;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #2c8c84;
    transform: translateY(-5px);
}

/* Map Section */
#map {
    text-align: center;
}

#map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#map img:hover {
    transform: scale(1.05);
}




/* Footer */
footer {
    background-color: #2C8C84; /* Game Point Green */
    color: white;
    text-align: center;
    padding: 20px 15px;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 50px; /* Adds space between content and footer */
}

/* Social Icons */
footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .social-icons a {
    font-size: 22px;
    transition: transform 0.3s ease-in-out;
}

footer .social-icons a:hover {
    transform: scale(1.2);
}

/* Copyright Text */
footer p {
    font-size: 14px;
    margin-top: 5px;
}

/* Logo Styling */
footer .header-logo {
    width: 120px;
    height: auto;
    margin-top: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

footer .header-logo:hover {
    transform: scale(1.1);
}

/* Ensures Footer Stays at Bottom if Content is Short */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 15px;
    }

    footer .social-icons a {
        font-size: 20px;
    }

    footer p {
        font-size: 12px;
    }

    footer .header-logo {
        width: 100px;
    }
}


/* Slide-in Animation */
@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

