/* General Styling */
body {
    font-family: 'Amatic SC', cursive;
    margin: 0;
    padding: 0;
    background-color: #1e1e2d;
    color: #ffffff;
}

/* Navbar */
.navbar {
    background-color: #0f0f0f;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Logo and Site Name */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffcc00;
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.site-name {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #555;
    color: #ffcc00;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon {
    width: 30px;
    height: 2px;
    background-color: white;
    display: block;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

/* Hero Banner */
.hero {
    background: url('https://i.ibb.co/5j2MFpy/image.png') no-repeat center center/cover;
    height: 35vh; /* Adjust height as needed */
    margin-top: 0; /* Ensure no gap between navbar and hero */
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* No padding on hero to keep it aligned */
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
}

/* Buttons */
.cta-buttons .btn {
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
    display: inline-block;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth animation */
}

.btn.discord {
    background-color: #7289da;
}

.btn.discord:hover {
    transform: scale(1.1); /* Pop up effect */
    background-color: #5b6eae; /* Slightly darker on hover */
}

.btn.forum {
    background-color: #ffcc00;
    color: black;
}

.btn.forum:hover {
    transform: scale(1.1); /* Pop up effect */
    background-color: #d4a700; /* Slightly darker on hover */
}


/* Section Styling */
section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    background: #2c2c3b;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container h2 {
    font-family: 'Amatic SC', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.container p {
    font-family: 'Amatic SC', cursive;
    font-size: 1.5rem;
    text-align: center;
}

/* Servers Section Grid */
.server-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.server {
    background-color: #2c2c3b;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.server img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

.server h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffcc00;
}

.server p {
    font-size: 1.5rem;
    color: #cccccc;
}

.server:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Footer Styling */


.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-icon img {
    transition: transform 0.6s ease;
}

.footer-icon img:hover {
    transform: rotate(360deg);
}

.footer-description {
    text-align: center;
    margin-bottom: 1rem;
}

footer p {
    text-align: center;
    font-size: 1rem;
    color: #ccc;
}




 /* Styling for the copy stuff*/ 
 
.copyable {
    cursor: pointer;
    color: #ffcc00;
    text-decoration: underline;
}

.copyable:hover {
    color: #ffaa00;
}
