/*
 Theme Name: GeneratePress Child
 Theme URI: https://wellebonus.casino/
 Description: Child theme for GeneratePress
 Author: WelleBonus Team
 Author URI: https://wellebonus.casino/
 Template: generatepress
 Version: 1.0
*/

/* Подключаем стили родительской темы */
@import url("../generatepress/style.css");

/* ======== WelleBonus.casino main styling ======== */

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #e6f0fa; /* светло-голубой фон */
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: #111;
}

a {
  color: #0052cc;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #003d99;
}

/* Buttons */
.btn-primary {
  background: #0052cc;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,82,204,0.25);
  display: inline-block;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #003d99;
  box-shadow: 0 4px 12px rgba(0,82,204,0.3);
}

/* Sections */
.section {
  padding: 60px 0;
  border-bottom: 1px solid #e5e7eb;
  background-color: #e6f0fa; /* совпадает с body */
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f9fafb;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ======================== */
/* Premium Cards Styling */
/* ======================== */

.card {
  background: #ffffff; /* белый фон */
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Градиентная рамка с псевдоэлементом */
.card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, #0052cc, #00aaff);
  z-index: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Содержимое карточки поверх градиента */
.card h3, .card p, .card a.btn-primary {
  position: relative;
  z-index: 1;
}

/* Заголовки карточек */
.card h3 {
  font-size: 1.35rem;
  color: #0052cc;
  margin-bottom: 15px;
}

/* Параграф */
.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Кнопки внутри карточек */
.card a.btn-primary {
  font-size: 1rem;
  padding: 10px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,82,204,0.25);
  transition: all 0.3s ease;
}
.card a.btn-primary:hover {
  background: #003d99;
  box-shadow: 0 4px 12px rgba(0,82,204,0.3);
}

/* Bonuses Overview Cards */
.bonus-cards .card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.bonus-cards .card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Casino Highlights Cards */
.highlight-cards .card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.highlight-cards .card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: #f9fafb;
  color: #555;
  text-align: center;
  padding: 30px 10px;
  font-size: 14px;
}
