/*
Theme Name: AC Template
Author: Addison Clark
Description: Your description goes here
Version: 1.0
Template: twentytwentyfive

This is the child theme for Twenty Twenty-Five theme.
*/
/* Metro Electric Custom Styles */

:root {
/* Primary Brand Colors */
--metro-lime: #BFF009;          /* Primary accent - lime green */
--metro-dark: #202020;          /* Dark grey/black */
--metro-black: #1D1D1D;         /* Text black */
--metro-light-grey: #F2F0EF;    /* Light background */
--metro-white: #FFFFFF;         /* White */
--metro-grey: #C4C4C4;          /* Medium grey */
--metro-light-grey-2: #D9D9D9;  /* Light grey accents */
}

/* Global Typography */

/* Navigation */
.wp-block-navigation a {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
}

/* Buttons */
.wp-block-button__link {
  font-weight: 700;
  font-size: 18px;
  border-radius: 30px;
  padding: 15px 30px;
  transition: all 0.3s ease;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Lime Green Accent */
.has-lime-color {
  color: var(--metro-lime) !important;
}

.has-lime-background-color {
  background-color: var(--metro-lime) !important;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Star Rating */
.star-rating {
  color: var(--metro-lime);
  font-size: 24px;
  letter-spacing: 2px;
}

/* Remove default margins on cover blocks */
.wp-block-cover {
  margin-top: 0;
  margin-bottom: 0;
}

/* Full width sections */
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Responsive typography */
@media (max-width: 768px) {
  h1 {
    font-size: 48px !important;
  }
  
  h2 {
    font-size: 36px !important;
  }
  
  h3 {
    font-size: 24px !important;
  }
  
  .wp-block-navigation a {
    font-size: 16px;
  }
}