/*
 Theme Name:   V8 Masters Astra Child
 Description:  Child theme for V8 Masters racing club
 Template:     astra
 Version:      1.0
*/

@import url("../astra/style.css");

/* Racing Red */
a, .elementor-button { color: #c00 !important; border-color: #c00 !important; }
a:hover { color: #900 !important; }

/* Card Hover */
.elementor-post, .ea-driver-card {
  transition: all .3s ease;
  border: 2px solid #eee;
  border-radius: 8px;
}
.elementor-post:hover, .ea-driver-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,.15);
  border-color: #c00;
}

/* Hero Overlay */
.hero-section {
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,.7), rgba(200,0,0,.5));
  z-index: 1;
}