
/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Caladea', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}


/* ===== Navigation ===== */
header {
  background-color: transparent;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size:20px;
}

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

nav .logo img {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #f6d6d5;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #b12b24;
}

/* ===== Hero Section with Overlay ===== */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.8rem;
  color: #f6d6d5;
}

/* Hero Discord Button */
.btn-discord {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: #00ffff;
  color: #000000;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}

.btn-discord:hover {
  background: #8c1f1a;
  transform: scale(1.05);
}

/* ===== Sections ===== */
section {
  padding: 5rem 2rem;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00ffff;
}

section h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00ffff;
}

section p {
  max-width: 900px;
  margin: 1rem auto;
  font-size: 1.1rem;
  color: #ddd;
}

/* ===== Games Section ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.game {
  background: #1b262c;
  padding: 1.5rem;
  border-radius: 60px;
  transition: transform 0.3s ease;
}

.game:hover {
  transform: translateY(-5px);
}

.game img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.game h3 {
  color: #f6d6d5;
  font-size: 1.2rem;
}

/* ===== Contact Section ===== */
#contact a {
  display: inline-block;
  margin-top: 1rem;
  background: #00ffff;
  color: #000000;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

#contact a:hover {
  background: #8c1f1a;
}

/* ===== Footer ===== */
footer {
  background: #1b262c;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #f6d6d5;
}
