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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Container to center content */
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation Bar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.navbar a:hover {
    background-color: #7289da; /* Discord blue hover effect */
    transform: scale(1.05); /* Slightly grow the element on hover */
}

/* Logo Styling */
.logo img {
    height: 40px; /* Adjust size as needed */
}

/* Header Section Styles */
header {
    background: #7289da; /* Discord Blue */
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Button Section Styles */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    width: 250px;
    transition: background-color 0.3s ease;
}

.cta-button.join-server {
    background-color: #7289da; /* Discord Blue */
    color: white;
}

.cta-button.add-bot {
    background-color: #25d366; /* Green for bot */
    color: white;
}

.cta-button:hover {
    opacity: 0.8;
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    font-size: 1em;
}
