@import url('https://fonts.googleapis.com/css2?family=Fragment+Mono:ital@0;1&family=Geist:wght@100..900&display=swap');

:root{
    --bright-blue: #007BFF;
    --warm-orange: #FF6F3C;
    --deep-teal: #008B8B;
    --golden-yellow: #FFC107;
    --rich-green: #28A745;
    --bs-primary-blue: #007bff;
}
body{
    font-family: "Geist",sans-serif;
    margin: 0;
}
#app{
    margin: 0 auto;
    max-width: 80rem;
}
.header{

    justify-content: space-between;
    align-items: center;
    margin: 32px 0;
}
.logo-area{
    display: flex;
    column-gap: 1rem;
    justify-content: center;
    align-items: center;
}
.logo-svg{
    width: auto;
    height: 71.33px;
    max-height: 71.33px;
    stroke: var(--warm-orange);
}

/* Begin Location Code */
.location-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.95rem;
}

.location-label {
  font-weight: 600;
  margin-right: 10px;
  color: #0d6efd;
}

.location-item {
  margin: 0 8px;
  color: #444;
  font-weight: 500;
}

.dot {
  color: #bbb;
}

.location-bar {
  background: linear-gradient(to right, #f8f9fa, #ffffff, #f8f9fa);
}
/* End Location */




/* Hero Section */
.hero {
  background: url('images/hero.jpeg') center/cover no-repeat;
  height: 60vh;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero .container {
  position: relative;
  z-index: 1;
}










/* Begin Service Card Code */

/* End Service card code  */

h1{
    margin: 0;
    font-family: "Fragment Mono", sans-serif;
    letter-spacing: .3px;
    font-weight: 400;
}
#headerLocPin{
    width: 1rem;
}
.phone-icon{
    display: block;
    stroke: var(--bs-primary-blue);
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}
.phone-box-box{
    display: flex;
    justify-content: end;
    column-gap: 1rem;
}
.phone-box:hover .phone-icon {
  animation: ring 0.25s infinite; /* fast, repeating animation */
  transform-origin: center;
}

@keyframes ring {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(15deg); }
  50%  { transform: rotate(-15deg); }
  75%  { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}
.phone-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: .875rem;
}
a[href="tel:+6478964577"]{
    text-decoration: none;
    color: var(--bs-primary-blue);
}
.tagline{
    white-space: nowrap;
    text-align: center;
    margin: 1rem 0;
}
.cta-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-button{
    font-family: inherit;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-weight: 500;
    letter-spacing: normal;
    padding: 1.5rem 1.5rem;
    border: 1px solid #28a745;
    border-radius: calc(0.5rem - 2px);
    cursor: pointer;
    background-color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.71rem;
    font-size: 1.25rem;
    color: rgb(250,250,250);
    height: 2.25rem;
    animation: pulseGlow 2s infinite;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}
.booking-svg{
    display: block;
    /* vertical-align: middle; */
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.cta-btn:hover {
  background-color: #218838;       /* darker green on hover */
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px 5px rgba(40, 167, 69, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
}
/* ------END Call-To-Action-------------------- */
.quick-estimate-title{
    margin-bottom: 0;
    font-weight: 400;
}
/* --bootstrapped .room-selection{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.check-holder{
    display: inline-flex;
    gap: 0.4rem;
} 
p, ul, li, input, select{
    font-size: .875rem;
    line-height: 1.875rem;
    margin: 0;
    color: rgb(75,85,99);
}
    
input, select{
    padding: 0rem;
    line-height: 1.875rem;
}*/
.dyk{
    background-color: rgba(228,228,231,0.25);
    padding: 0 16px;
    border: 2px solid rgb(228,228,231);
    border-radius: 8px;
    margin-top: 1rem;
}