/* Base Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #b1854d; /* warm tan background */
    color: #f0e0d0; /* soft beige text */
}

/* Navbar */
.navbar {
    background-color: #a6763d;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f0e0d0;
}

.nav-links .discord-btn {
    background-color: #fff;
    color: #a6763d;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links .discord-btn:hover {
    background-color: #f5f0e8;
    color: #7d4f23;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f0e0d0;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #f7f2ec;
}

.highlight-text {
    font-weight: 600;
    color: #fff8f0;
}

.hero-buttons .btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #fff;
    color: #a6763d;
}

.btn-primary:hover {
    background-color: #f5f0e8;
    color: #7d4f23;
}

.btn-secondary {
    background-color: #a6763d;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #8b5e2f;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #a6763d;
    padding: 1rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f0e0d0;
}

.footer-links {
    display: flex;
    align-items: center;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    margin-right: 0.5rem;
}

.footer-divider {
    margin: 0 0.5rem;
    color: #f0e0d0;
}

.footer-text {
    color: #f0e0d0;
}

/* Optional: Add slight animation to floating-star */
.floating-star {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
/* Powered by Axiom section */
.powered-by {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(240, 224, 208, 0.3);
}

.powered-logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.powered-text {
    font-size: 1rem;
    color: #f0e0d0;
    font-weight: 500;
}
