.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* Adjust the 0.5 as needed to darken or lighten */
    z-index: 1;
}

.hero-section {
    height: 40vh; /* adjust to your preference */
    width: 100%;
    background-attachment: fixed; /* creates the parallax effect */
    background-position: center; /* centers the background image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

h1 {
    font-size: 3em; /* Increase font size */
    z-index: 2;
    position: relative;
    color: #fff; /* Ensure the text color is white */
    background: linear-gradient(to right, rgb(239, 85, 224), rgb(221, 207, 17));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.grid-title {
    margin-bottom: 15px; /* Add space between title and cards */
}
.section {
    text-align: center; /* Center-align content */
    margin-bottom: 30px; /* Add space between sections */
}

body {
    font-family: Arial, sans-serif;
}

.grid.cards ul {
    /* Style for the card list. Adjust as needed */
    display: flex;
    justify-content: center;
    gap: 10px;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
/* these next two body.home-page css is for hiding the left column menu */
body.home-page .md-sidebar { 
    display: none; 
}

body.home-page .md-content {
    width: 100%; /* or however wide you want the content area to be without the sidebar */
    margin-left: 0;
}

.glass-button {
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black background */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Drop shadow */
    backdrop-filter: blur(8px); /* This creates the frosted glass effect */
    padding: 15px 25px; /* Adjust as needed */
    margin: 10px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    z-index: 2;
    position: relative;
    color: #ffffff; /* White text */
    text-shadow: 1px 1px 2px #000; /* Text shadow for better readability */
    border-radius: 15px;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.4); /* Slightly more opaque on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Larger drop shadow on hover */
    color: antiquewhite;
}

.glass-button-web {
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black background */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Drop shadow */
    backdrop-filter: blur(8px); /* This creates the frosted glass effect */
    padding: 15px 25px; /* Adjust as needed */
    margin: 10px;
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    z-index: 2;
    position: relative;
    color: #ffffff; /* White text */
    text-shadow: 1px 1px 2px #000; /* Text shadow for better readability */
    border-radius: 15px;
}

.glass-button-web:hover {
    background: rgba(255, 255, 255, 0.4); /* Slightly more opaque on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Larger drop shadow on hover */
    color: antiquewhite;
}

.card {
    flex: 0 1 calc(50% - 10px); /* This makes each card take up half the container's width minus half the gap */
    /* Add your other .card styles below this */
    border: 1px solid #ccc; /* Example style */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
    justify-content: center;
    text-align: center;
}
.grid.cards img {
    width: 48px;       /* Control the width of the icon */
    height: 48px;      /* Control the height of the icon */
    margin-right: 65px; /* Space between the icon and the text */
    vertical-align: middle; /* Align the icon with the text */
    display: flex;
}


/* Style for clickable cards */
.grid.cards a {
    display: block;  /* Makes the entire area clickable */
    text-decoration: none;  /* Removes the underline from links */
    color: inherit;  /* Keeps the text color consistent */
    border-radius: 15px;
}

.grid.cards :hover,
.grid.cards a:hover, 
.glass-button:hover, 
.grid-title a:hover {
    cursor: pointer;  /* Changes the cursor to a pointer finger */
}

/* Optional: Add a hover effect to the card for better visual feedback */
.grid.cards a:hover {
    background-color: rgba(0, 0, 0, 0.05);  /* Light background on hover */
    border-radius: 5px;  /* Rounded corners */
    transition: background-color 0.3s ease;  /* Smooth transition */
}

.custom-divider {
    border-top: 2px solid;
    margin: 20px 0;
}
/* Divider style for dark mode */
@media (prefers-color-scheme: dark) {
    .custom-divider {
        border-color: purple; /* Replace with the light color you want for dark mode */
    }
}

.product-image {
    display: block;         /* Makes the image a block element to apply margins */
    margin-left: auto;      /* Centers the image horizontally on the left side */
    margin-right: auto;     /* Centers the image horizontally on the right side */
    max-width: 100%;        /* Ensures the image is responsive and doesn't exceed its container's width */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.responsive-iframe {
    display: block;          /* Makes the iframe a block element to apply margins */
    margin-left: auto;       /* Centers the iframe horizontally on the left side */
    margin-right: auto;      /* Centers the iframe horizontally on the right side */
    max-width: 100%;         /* Ensures the iframe is responsive */
    width: 80%;              /* Adjust to the desired default width, e.g., 80% of container */
    /* border: 1px solid #ddd;  Optional: add a border if desired */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Optional: add shadow if desired */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #bb30da; /* Change this to your desired button color */
    color: #ffffff !important; /* This is the text color */
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

.grid2.cards2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.grid2.cards2 > div {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.grid2.cards2 > div:hover {
    transform: translateY(-10px); /* This gives the levitating effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#discord {
    display: flex;
    flex-direction: column; /* Align children vertically */
    justify-content: center; /* Center children vertically */
    align-items: center; /* Center children horizontally */
    text-align: center; /* Center text inside the children */
    height: fit-content; /* Adjust height to fit content */
}

.discord {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: fit-content;
}

#join {
    margin-bottom: 1px; /* Add some space between the text and the icon */
    /* Additional styling for the text if needed */
}
