/* Custom styles for Dictadura landing page */

:root {
  --primary-color: #094291;  /* Blue (Cobalt) */
  --secondary-color: #b13232; /* Red */
  --dark-color: #222;
  --light-color: #f4f4f4;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light-color);
  color: var(--dark-color);
}

/* Header styles */
.navbar {
  background-color: var(--dark-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--secondary-color) !important;
}

/* Hero section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/game-background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Logo */
.game-logo {
  max-width: 250px;
  margin-bottom: 30px;
}

/* Features section */
.features {
  padding: 80px 0;
}

.feature-box {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

/* Coming soon section */
.coming-soon {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.coming-soon h2 {
  color: var(--secondary-color);
}

.platform-icons {
  font-size: 3rem;
  margin: 20px 0;
}

.platform-icons i {
  margin: 0 15px;
}

/* Newsletter */
.newsletter {
  padding: 80px 0;
  background-color: var(--light-color);
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .game-logo {
    max-width: 180px;
  }
}

/* Animation */
.fade-in {
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Button styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #003380; /* Darker blue */
  border-color: #003380;
}

.btn-outline-light:hover {
  color: var(--primary-color);
}

/* Countdown timer */
.countdown {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.countdown-item {
  margin: 0 10px;
  text-align: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 10px 15px;
  display: block;
}

.countdown-label {
  font-size: 0.9rem;
  margin-top: 5px;
  text-transform: uppercase;
}