/*
Theme Name: Child Theme
Version: 1.0
Description: A child theme of Twenty Twenty-Five
Template: twentytwentyfive
Author: Administrator
*/
@import url("../twentytwentyfive/style.css");
/* Your awesome customization starts here */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Noto+Sans&display=swap');

.warranty-content{
    text-align: center;
}
/* ----------------------------------------
   Global Variables
   ---------------------------------------- */
:root {
  --primary: #ECBD32;
  --secondary: #000814;
  --body-font-family:"Oswald", "Odoo Unicode Support Noto", sans-serif;
}
.site-header .header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px 0;
}

/* ----------------------------------------
   Dealer Detail Page Styles
   ---------------------------------------- */
.dealer-detail-page {
  font-family: var(--body-font-family, Arial, sans-serif);
  color: var(--secondary);
  padding: 2rem 0;
}
.dealer-detail-page h1.dealer-title {
  font-family: var(--headings, 'Oswald', sans-serif);
  color: var(--primary);
  font-size: calc(1.375rem + 1.5vw);
  margin-bottom: 0.5rem;
}
@media (min-width: 1200px) {
  .dealer-detail-page h1.dealer-title {
    font-size: 2.5rem;
  }
}
.star-rating span.fa-star {
  color: var(--primary);
}
.dealer-detail-page .img-fluid {
  max-width: 100%;
  height: auto;
}
.dealer-detail-page .rounded {
  border-radius: 0.25rem;
}
.dealer-detail-page .row + .row p {
  margin-bottom: 1rem;
}
.reviews-title {
  font-size: 1.5rem;
  color: var(--secondary);
}
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }

/* ----------------------------------------
   Header Styles (Responsive)
   ---------------------------------------- */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.header-top .site-logo {
  max-height: 60px;
  width: auto;
}
.header-cta .btn-contact {
  background-color: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
}

.header-bottom {
  padding: 1rem 0;
}
.header-bottom .nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-bottom .nav-menu li {
  margin: 0 0.75rem;
}
.header-bottom .nav-menu li a {
  color: var(--secondary);
  text-decoration: none;
  padding: 0.5rem;
}
.header-bottom .nav-menu li a.active,
.header-bottom .nav-menu li a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    text-align: center;
  }
  .header-cta {
    margin-top: 1rem;
  }
  .header-bottom .nav-menu {
    flex-direction: column;
  }
  .header-bottom .nav-menu li {
    margin: 0.5rem 0;
  }
}