/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; /* Light beige */
    color: #4a4a4a;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #e0d8c0; /* Light beige with a hint of warmth */
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    color: #4a4a4a;
}

.slogan {
    font-size: 1.2em;
    font-weight: 600;
    color: #6b6b6b;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #f0e9d2; /* Slightly darker beige */
}

.hero-content {
    display: flex;
 align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.hero-text p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.hero-image {
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button Group */
.button-group {
    display: flex;
    gap: 15px;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #ffcc00; /* Bright yellow */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6b800; /* Darker yellow on hover */
}

/* Discord Button */
.discord-button {
    display: inline-block;
    padding: 15px 25px;
    background-color: #7289da; /* Discord blue */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.discord-button:hover {
    background-color: #5b6eae; /* Darker blue on hover */
}

/* Features Section */
.features {
    padding: 50px 0;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: #ff5722; /* Corgi orange */
}

/* Call to Action Section */
.cta {
    background-color: #f0e9d2; /* Slightly darker beige */
    padding: 50px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

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