:root {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --accent-color: #d4af37; /* Gold */
    --secondary-color: #8b0000; /* Dark Red */
    --card-bg: #2a2a2a;
    --discord-blurple: #5865F2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'MedievalSharp', cursive;
    color: var(--accent-color);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid #333;
    background: #111;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-svg {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent-color);
}

.btn-discord {
    background: var(--discord-blurple);
    padding: 10px 20px;
    border-radius: 4px;
    color: white !important;
}

.btn-discord:hover {
    background: #4752c4;
}

#hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1614032684782-96424564344d?auto=format&fit=crop&q=80&w=1200') no-repeat center/cover;
    border-bottom: 2px solid var(--secondary-color);
}

#hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    font-family: 'MedievalSharp', cursive;
    font-size: 1.6rem;
    border-radius: 5px;
    border: 2px solid var(--accent-color);
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #a00000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

#about {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
}

#location {
    padding: 80px 0;
    text-align: center;
    background-color: #111;
}

#location h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

address {
    font-style: normal;
    font-size: 1.3rem;
    margin: 20px 0;
    color: var(--accent-color);
}

.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

.map-container iframe {
    display: block;
}

footer {
    padding: 60px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    #hero h2 { font-size: 2.5rem; }
    .grid { grid-template-columns: 1fr; }
    header .container { flex-direction: column; gap: 25px; }
    nav a { margin: 0 10px; }
}
