/* 
   meudayr.com - Minimalist Flat Design System
   WoW Druid/Tauren themed styling with solid colors, clean cards, and flat interfaces.
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

:root {
  --bg-color: #111317;
  --card-bg: #181a1f;
  --card-border: #25282f;
  --card-border-hover: #3b3f4a;
  
  /* WoW Druid & Earthy Palette */
  --primary: #388e3c; /* Flat Forest Green */
  --accent: #c09d52;  /* Flat Bronze/Gold */
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition: all 0.2s ease-in-out;
  --radius-lg: 12px;
  --radius-md: 8px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header {
  padding: 30px 0;
  border-bottom: 1px solid var(--card-border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.brand span {
  color: var(--text-main);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

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

/* Hero Tool Cards */
.hero-tools {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tool-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  text-align: left;
}

.hero-tool-card:hover {
  border-color: var(--card-border-hover);
  transform: translateX(4px);
}

.hero-tool-card:hover .hero-tool-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hero-tool-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(56, 142, 60, 0.1);
  border: 1px solid rgba(56, 142, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.hero-tool-icon svg {
  width: 20px;
  height: 20px;
}

.hero-tool-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.hero-tool-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.hero-tool-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-tool-arrow {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
  flex-shrink: 0;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(56, 142, 60, 0.12);
  border: 1px solid rgba(56, 142, 60, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Addons Grid Section */
.addons-section {
  padding: 40px 0 80px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 10px auto 0;
}

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

/* Flat Addon Card */
.addon-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.addon-card:hover {
  transform: translateY(-2px);
  border-color: var(--card-border-hover);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.addon-icon {
  width: 56px;
  height: 56px;
  background: #20232a;
  border: 1px solid #2d313c;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.addon-game-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.addon-game-badge.wow {
  background: rgba(56, 142, 60, 0.1);
  border-color: rgba(56, 142, 60, 0.2);
  color: #81c784;
}

.addon-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.addon-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.addon-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text-dark);
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Flat Download Button */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: #e05300;
  color: white;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.download-btn:hover {
  background: #f55d00;
}

.download-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer */
footer {
  margin-top: auto;
  padding: 30px 0;
  border-top: 1px solid var(--card-border);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(56, 142, 60, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }
  .addons-grid {
    grid-template-columns: 1fr;
  }
}
