@import url('css/responsive.css');

/*
Theme Name: MelBet Promo
Theme URI: https://melbet.com
Author: MelBet
Author URI: https://melbet.com
Description: A professional and responsive WordPress theme for MelBet sports betting promotions
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: melbet-promo
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

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

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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

a {
  color: #FFC100;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFB700;
}

button, input[type="button"], input[type="submit"] {
  cursor: pointer;
  font-family: inherit;
}

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

.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #FFC100;
  letter-spacing: 2px;
}

.logo span {
  color: white;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-menu a {
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #FFC100;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FFC100 0%, #FFB700 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero .bonus-highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  font-size: 24px;
  font-weight: bold;
}

/* ============================================
   PROMO CODE SECTION
   ============================================ */

.promo-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
}

.promo-container {
  max-width: 600px;
  margin: 0 auto;
}

.promo-section h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 700;
}

.promo-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.promo-code-box {
  background: linear-gradient(135deg, #FFC100 0%, #FFB700 100%);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(255, 193, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-code-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 193, 0, 0.4);
}

.promo-code-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-code-display {
  font-size: 42px;
  font-weight: bold;
  color: white;
  font-family: 'Courier New', monospace;
  letter-spacing: 3px;
  margin: 15px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.copy-promo-btn {
  background: white;
  color: #FFC100;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.copy-promo-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.copy-promo-btn.copied {
  background: #4CAF50;
  color: white;
}

.copy-feedback {
  margin-top: 15px;
  font-size: 14px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.copy-feedback.show {
  opacity: 1;
}

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

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 20px;
  text-align: center;
}

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

.cta-section h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 50px;
  font-weight: 700;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.cta-btn {
  background: linear-gradient(135deg, #FFC100 0%, #FFB700 100%);
  color: #1a1a1a;
  border: none;
  padding: 20px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 193, 0, 0.3);
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 193, 0, 0.4);
  color: #1a1a1a;
}

.cta-btn.secondary {
  background: rgba(255, 193, 0, 0.2);
  color: #FFC100;
  border: 2px solid #FFC100;
}

.cta-btn.secondary:hover {
  background: rgba(255, 193, 0, 0.3);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  background: white;
  padding: 60px 20px;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

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

.testimonial-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  border-left: 5px solid #FFC100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFC100 0%, #FFB700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  margin-right: 15px;
}

.testimonial-info h3 {
  font-size: 16px;
  color: #1a1a1a;
  margin: 0;
}

.testimonial-info .rating {
  color: #FFC100;
  font-size: 14px;
}

.testimonial-text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-date {
  font-size: 12px;
  color: #999;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 60px 20px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FFC100;
}

.feature-card h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

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

.footer {
  background: #1a1a1a;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.footer-section h3 {
  color: #FFC100;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FFC100;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #999;
}

.footer-bottom p {
  margin: 10px 0;
}

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

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .promo-code-display {
    font-size: 28px;
  }

  .cta-buttons {
    grid-template-columns: 1fr;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html, body {
    font-size: 14px;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .promo-section {
    padding: 40px 15px;
  }

  .promo-code-display {
    font-size: 24px;
  }

  .copy-promo-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .cta-section {
    padding: 40px 15px;
  }

  .testimonials-section {
    padding: 40px 15px;
  }

  .features-section {
    padding: 40px 15px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}
