/*
Theme Name: Drinking Games 2025
Theme URI: https://drinkinggamesapp.com
Description: Ultra-modern, bold minimalist theme for Drinxie and Dronko app promotion. Features gradient backgrounds, bold typography, and smooth animations.
Author: Claude AI
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drinking-games-2025
*/

/* ============================================
   MODERN DESIGN SYSTEM - 2025
   ============================================ */

:root {
  /* Colors */
  --purple: #8E3FFF;
  --cyan: #00B4D8;
  --orange: #FF6B35;
  --orange-light: #FF8C42;
  --dark: #1a1a1a;
  --gray: #f5f5f5;
  --white: #ffffff;

  /* Gradients */
  --gradient-purple-cyan: linear-gradient(135deg, #8E3FFF 0%, #00B4D8 100%);
  --gradient-orange: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);

  /* Typography */
  --font-primary: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ============================================
   TYPOGRAPHY - BOLD & MODERN
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--gray);
}

/* ============================================
   BUTTONS - MODERN & BOLD
   ============================================ */

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-purple-cyan);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(142, 63, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(142, 63, 255, 0.4);
}

.btn-secondary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* ============================================
   HERO SECTION - GRADIENT
   ============================================ */

.hero {
  background: var(--gradient-purple-cyan);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-xl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 2rem;
  font-weight: 400;
  opacity: 0.95;
}

/* ============================================
   APP SECTIONS - ASYMMETRIC LAYOUT
   ============================================ */

.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.app-section.reverse {
  direction: rtl;
}

.app-section.reverse > * {
  direction: ltr;
}

.app-content h2 {
  margin-bottom: var(--spacing-md);
}

.app-content h3 {
  margin-top: var(--spacing-md);
  font-size: 1.5rem;
  font-weight: 700;
}

.app-content ul {
  list-style: none;
  margin: var(--spacing-md) 0;
}

.app-content li {
  font-size: 1.1rem;
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  position: relative;
}

.app-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple);
}

.app-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.app-image:hover {
  transform: scale(1.03);
}

.app-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--gradient-orange);
  color: var(--white);
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  margin-bottom: var(--spacing-sm);
}

.cta-section p {
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
}

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

.site-logo a {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-purple-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.main-nav a {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: var(--gray);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer-menu ul {
  list-style: none;
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-menu a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 1;
}

.footer-social {
  margin: var(--spacing-md) 0;
}

.footer-social a {
  display: inline-block;
  margin: 0 var(--spacing-sm);
  font-size: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-copyright {
  margin-top: var(--spacing-md);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ============================================
   BLOG STYLES - MODERN CARD LAYOUT
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  height: 250px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-content {
  padding: var(--spacing-md);
}

.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.blog-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: var(--spacing-sm);
}

.blog-card .read-more {
  color: var(--purple);
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-card .read-more:hover {
  transform: translateX(5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .app-section {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .app-section.reverse {
    direction: ltr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
