
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --black: #0A0A0A;
    --concrete: #2C2C2C;
    --steel: #404040;
    --goldcolor: #e6a139;
    --industrial-orange: #e6a139;
    --light-gray: #A8A8A8;
    --white: #F5F5F5;
    --border: #1A1A1A;
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    height: calc(100vh - 50px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-gray);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 95px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    padding-bottom: 1%;
    margin: 0 auto;
    transform: scale(0.75);
    transform-origin: 0 0;
    width: calc(100% / 0.75);
    height: calc(100% / 0.75);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: transparent;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: url('images/shroomys logo.jpg'); 
    background-repeat: no-repeat;
    background-position: center left; 
    background-size: 100% 100%;
    width: 400px;
    height: 100px;
}

.logo svg {
    width: 35px;
    height: 35px;
}

.logo:hover {
    transform: translateY(-10px);
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #e6a139;
}

.logo:hover svg path {
    fill: var(--industrial-orange);
}   

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    padding-left: 60px;
    text-align: center;
}

.nav-link {
    width: 100px;
    height: 100px;
    background-image: url('images/luckyblock.png');
    background-size: cover; /* or specific dimensions like 150px 50px */
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    text-align: center; /* Center the text */
    display: block; /* Ensure it behaves as a block */
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        right: 0;
        left: auto;
        flex-direction: column;
        text-align: center;
        z-index: 1000;
        width: 40%;
        padding: 0.5rem 0;
        gap: 0;
    }

    .nav-link {
        background-image: none;
        background: none;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
    } 

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        background: rgba(10, 10, 10, 0.9);
        padding: 3rem 3rem;
        padding-top: 3rem !important;
        margin: 0;
        border: 2px solid var(--goldcolor);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links a:hover {
        background: var(--goldcolor);
        transform: translateY(-10px)
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .menu-toggle.active span:nth-child(4) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(5) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(6) {
        opacity: 0;
    }
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    padding-top: 97px;
    white-space: nowrap;
}

.nav-links a:hover {
    border-radius: 6px;
    box-shadow: 0px 0px 30px 0px #e6a139;
    transform: translateY(-10px);
}

.nav-links a.active {
    color: var(--white);
    transform: translateY(-10px);
}

.discordlink {
    background: var(--white);
    display: block;
    margin-left: auto;
    margin-right: 0;
    border: 2px solid var(--goldcolor);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.discordlink:hover {
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #e6a139;
    transform: translateY(-10px)
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section with Rotating Backgrounds */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeRotate 27s infinite;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-out;
}

.hero-bg:nth-child(1) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(44,44,44,0.7)), 
                url('images/register.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 0s;
}

.hero-bg:nth-child(2) {
    background: linear-gradient(rgba(10,10,10,0.6), rgba(230,57,70,0.2)), 
                url('images/costume.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 3s;
}

.hero-bg:nth-child(3) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(255,107,53,0.2)), 
                url('images/gamesection.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 6s;
}

.hero-bg:nth-child(4) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(255,107,53,0.2)), 
                url('images/tcgevent2.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 9s;
}

.hero-bg:nth-child(5) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(255,107,53,0.2)), 
                url('images/arcade game.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 12s;
}

.hero-bg:nth-child(6) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(255,107,53,0.2)), 
                url('images/card case.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 15s;
}

.hero-bg:nth-child(7) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(255,107,53,0.2)), 
                url('images/games3.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 18s;
}

.hero-bg:nth-child(8) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(255,107,53,0.2)), 
                url('images/tcgevent.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 21s;
}

.hero-bg:nth-child(9) {
    background: linear-gradient(rgba(10,10,10,0.7), rgba(255,107,53,0.2)), 
                url('images/storefront.jpg');
    background-size: cover;
    background-position: center;
    animation-delay: 24s;
}

@keyframes fadeRotate {
    0% { 
        opacity: 0;
        transform: scale(1.1);
    }
    5% {
        opacity: 1;
        transform: scale(1);
    }
    33.33% { 
        opacity: 1;
        transform: scale(1);
    }
    38.33% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% { 
        opacity: 0;
        transform: scale(1.1);
    }
}

@keyframes rotateBackground {
    0%, 33.33% { opacity: 1; }
    33.34%, 100% { opacity: 0; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 75px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        width: 60%;
        margin: 0 auto;
        padding: 0 1rem;
        width: 100%;
    }
    .hero {
        align-items: flex-start;
        padding-top: 7rem; /* Add space from top */
    }
    .hero-content img {
        width: 80%;
        height: auto;
        max-width: 400px;
        margin: 0 auto 1rem;
        display: block;
    }
}

.hero-subtitle-top {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: none;
    text-align: center;
    text-decoration: underline;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: none;
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.directions_button {
    background: var(--goldcolor);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid var(--goldcolor);
    cursor: pointer;
}

.directions_button:hover {
    background: transparent;
    transform: translateX(5px);
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #e6a139;
}

.discordlink_2 {
    background: var(--white);
    color: var(--goldcolor);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 2px solid var(--steel);
}

.discordlink_2:hover {
    background: transparent;
    border-color: var(--steel);
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #e6a139;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--concrete);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--goldcolor), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* CSS for hightlighting what day of the week it is */
.dayoftheweekhighlight {
    background-color: rgba(255, 215, 0, 0.486);
    font-weight: bold;
    font-size: x-large;
    text-shadow: 2px 2px 4px #000000;
}

/*About us Section */
.aboutus {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--concrete) 100%);
    position: relative;
}

.aboutus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--goldcolor), transparent);
    z-index: 10;
}

.aboutus::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--goldcolor), transparent);
    z-index: 2;
}

.aboutus .container {
    position: relative;
    z-index: 2;
}

.aboutus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.aboutus-servicelist {
    text-align: center;
}

.aboutus-servicelist h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* facebook Section */
.facebook {
    background: linear-gradient(180deg, var(--black) 0%, var(--concrete) 100%);
    padding-top: 1%;
    position: relative;
    overflow: hidden;
}

.facebook_class {
    display: flex;
    justify-content: center;
    margin: 2rem auto 3rem;
    max-width: 500px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    gap: 0;
}

.facebook h2 {
    line-height: 60px;
    margin: 0;
}

@media (max-width: 768px) {
    .facebook h2 {
        white-space: nowrap;
        text-overflow: ellipsis;
        padding-top: 5%;
        font-size: 1.5rem;
        line-height: 1.2;
        left: 0;
        max-width: 100%;
    }

    .facebook-icon {
        width: 45px;
        height: 20px;
        position: relative;
    }
}

.facebook-icon {
    display: inline-block;
    width: 195px;
    height: 75px;
    background-image: url('images/facebook.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 10px;
    vertical-align: middle;
}   

.facebook .facebook-icon:hover {
    border-radius: 10px;
    box-shadow: 0px 0px 30px 0px #e6a139;
    transform: translateY(-10px);
}

.fb-page, 
.fb-page span, 
.fb-page span iframe[style] { 
    width: 100% !important; 
    padding-bottom: 5%;
}

@media (min-width: 769px) {
    .fb-page, 
    .fb-page span, 
    .fb-page span iframe[style] {
        padding-left: 5%;
    }
}

.facebook::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--goldcolor), transparent);
}

/* Contact Form Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, #0F0F0F 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--goldcolor), transparent);
}

@keyframes subtleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, rgba(44,44,44,0.5) 0%, rgba(26,26,26,0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(230,57,70,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--goldcolor), var(--industrial-orange), var(--goldcolor));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.contact-info:hover {
    border-color: rgba(230,57,70,0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(230,57,70,0.1);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info h3::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--goldcolor);
}

.contact-info p {
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.contact-details li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.contact-details li strong {
    color: var(--industrial-orange);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    min-width: 80px;
}

.contact-map {
    background: var(--concrete);
    border: 1px solid rgba(230,57,70,0.2);
    position: relative;
    overflow: hidden;
    height: 300px;
    transition: all 0.3s ease;
}

.contact-map:hover {
    border-color: rgba(230,57,70,0.4);
    box-shadow: 0 10px 40px rgba(230,57,70,0.1);
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.contact-map:hover iframe {
    filter: grayscale(50%) contrast(1) opacity(1);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(44,44,44,0.3) 0%, rgba(26,26,26,0.5) 100%);
    backdrop-filter: blur(10px);
    padding: 1px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230,57,70,0.2) 0%, transparent 50%, rgba(255,107,53,0.2) 100%);
    opacity: 0.5;
}

.contact-form {
    background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 100%);
    padding: 3.5rem;
    position: relative;
    height: 100%;
}

.form-header {
    margin-bottom: 3rem;
    position: relative;
}

.form-header h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--goldcolor) 0%, var(--industrial-orange) 100%);
}

.form-header p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    letter-spacing: 0.3px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select option {
    background: var(--concrete);
    color: var(--white);
    padding: 0.75rem;
}

.form-group select option:hover {
    background: var(--steel);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(230,57,70,0.5);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(135deg, var(--goldcolor) 0%, var(--industrial-orange) 100%);
    color: var(--white);
    padding: 1.25rem 3rem;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-submit:hover::before {
    width: 300%;
    height: 300%;
}

.form-submit span {
    position: relative;
    z-index: 1;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(230,57,70,0.4);
}

@media (max-width: 1024px) {
    .contact-grid {
        gap: 2rem;
        padding-left: 0;
        width: 100%;
    }

    .contact-left {
        order: 2;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form-wrapper {
        order: 1;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form {
        padding: 2rem 1.25rem;
        box-sizing: border-box;
    }

    .contact-info {
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* Events Section */
.Events {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--concrete) 100%);
    position: relative;
}

.Events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 51%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 1;
}

.Events::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--goldcolor), transparent);
    z-index: 2;
}

.Events .container {
    position: relative;
    z-index: 2;
}

.Events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.amenity-item {
    text-align: center;
}

.amenity-icon {
    width: 170px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--goldcolor);
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    background: var(--goldcolor);
    color: var(--white);
    transform: rotate(5deg);
}

.amenity-item h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e6a139 40%, rgba(255,107,53,0.7) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 51%);
    background-size: 100px 100px;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 100%);
    pointer-events: none;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta .directions_button {
    background: var(--white);
    color: var(--goldcolor);
    border-color: var(--white);
}

.cta .directions_button:hover {
    background: transparent;
    color: var(--white);
}

/* Footer */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--goldcolor);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--goldcolor);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-credits {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-credits a {
    color: var(--goldcolor);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--industrial-orange);
}

/* Responsive Design */
@media (max-width: 768px) {
    .discordlink {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        padding-bottom: 50px;
    }

    .facebook-card.featured {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-credits {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .directions_button, .discordlink_2 {
        width: 100%;
        text-align: center;
    }

    .feature-card {
        clip-path: none;
    }

    .feature-icon {
        clip-path: none;
    }

    .contact-grid {
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 0 0rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .contact-details li {
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.8);
        padding-left: 0;
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }

    .contact-details li strong {
        color: var(--industrial-orange);
        font-weight: 500;
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        min-width: 60px;
    }

    .contact-form-wrapper {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form {
        padding: 2rem 1.25rem;
        box-sizing: border-box;
    }

    .contact-left {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info {
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    /* Facebook fixes */
    .facebook_class {
        padding: 0 1rem;
    }
}

/* Loading Animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--goldcolor);
    transform: scaleX(0);
    transform-origin: left;
    animation: loading 2s ease-out forwards;
    z-index: 10000;
}

@keyframes loading {
    to {
        transform: scaleX(1);
    }
}
