@charset "UTF-8";
:root{
  --nav-h: 60px;
}

/* CSS Document */
* {
  margin: 0;
  padding: 0;
}



/* hamburger */
.toggle-button{
  display: none;        /* hidden on desktop */
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}

.toggle-button .bar{
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 10px;
}


body {
  font-family:'Copperplate', 'Copperplate Gothic Light', Impact, fantasy;
  background: #333;
  color: #fff;
  height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  height: 100%;
  /* CSS Smooth Scroll */
  overflow-y: scroll; 
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}


.navbar{
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  padding: 0 16px;

  background: rgba(0,0,0,0.65); 
  backdrop-filter: blur(6px);
}


.navbar-links{
  position: static;          
  transform: none;           
  display: flex;
  justify-content: center;
  grid-column: 2;            
  width: 100%;
}


.nav-list{
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}


.nav-list a{
  text-decoration: none;
  text-transform: uppercase;
  color: #f4f4f4;
}

.nav-list a:hover{
  color: skyblue;
}
.getNow{
  color: rgb(255, 255, 255);
  background-color: pink;
  border: #f4f4f4;
  border-radius: 12px;
  font-size: medium;
  display: inline-block;
  text-align: center;
  justify-content: center;
  justify-self: end;
  padding: 8px 16px;
  margin-right: 50px;
  background: pink;
  border-radius: 12px;
  color: #000;
  text-decoration: none;
  font-weight: bold;

}
.getNow:hover{
  box-shadow: 0 8px 16px 0 rgb(255, 255, 255)
  
}
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100vh;
  margin-bottom: 50px;
  
  /* Scroll Snap */
  /*scroll-snap-align: center;*/
}
/*Landing Page*/
#LandingPage{
  padding-top: var(--nav-h);
}
.hero{
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner{
  width: min(1100px, 92%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.hero-logo{
  justify-self: start;
  max-width: 360px;
  width: 100%;
  height: auto;
}

.hero-copy{
  text-align: left;
}

.cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 10px;
  background: pink;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  margin-top: 14px;
}
/*About*/
#About .lead{
  max-width: 900px;
  width: min(900px, 92%);
  padding: 0;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}


/* Service Columns */
#Services {
  padding-top: var(--nav-h);
  height: auto;              
  min-height: 100vh;          
  padding-bottom: 50px;
}

.serve {
  padding: 0;
  margin: 40px 0 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.service-card {
  padding: 30px;
  text-align: center;
  border-right: 2px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.25);;
}

.service-card:last-child {
  border-right: none;
}

.service-card h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Contact */
.num{
  font-size: 3rem;
  
}
.num1{
  color: rgb(0, 0, 0);
  background-color: pink;
  border: #f4f4f4;
  border-radius: 12px;
  font-size: 2rem;
  
 
  padding: 50px;
}


section h1 {
  font-size: 2rem;
}

/* Section Images */

section#LandingPage{
  background: url("pingdark.png") no-repeat center center/cover;;
}
section#About{
  background: url("PCPorange.png") no-repeat center center/cover;;
}
section#About p {
	font-size: 5 ;
	padding-left: 200px;
	padding-right: 200px;
}
section#Services{
  background: url("PCPBlu.png") no-repeat center center/cover;;
}
section#Contact {
  background: url("PCPBrn.png") no-repeat center center/cover;;
}
section#Contact h1 {
  padding-bottom: 50px;
}
section#serviceMap{
  background: url("PCPwht.png") no-repeat center center/cover;;
  
}




/*--------Serivce Map--------*/

.headmap{
  font-size: x-large;
  color: #333;
}
.mapImg {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px; /* optional: keeps it from being too large */
  height: auto;
}

@media (max-width: 800px) {
  

  body {
    overflow: auto;
  }
  .columns {
  column-count: 1;
  font-size: 1.2rem;
  column-rule: none;
}
  .hero-inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px
  }
  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.95rem;
  }
  .hero-copy{ text-align: center; }
  .hero-logo{ justify-self: center; max-width: 280px; }
  /* hide centered links by default */
  
  .toggle-button{ display: flex; }

  .navbar-links{
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;               /* important */
    width: 100%;
    box-sizing: border-box;

    background: rgba(0,0,0,0.95);
    justify-content: center;
    padding: 10px 0;
  }

  .navbar-links.active{
    display: flex;
  }

  .nav-list{
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-list li{
    width: 100%;
    text-align: center;
    padding: 16px 0;
  }

  .nav-list a{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.05rem;
  }
}
  #About .lead{
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .getNow{
    margin-left: 10px;
    padding: 10px 12px;
  }

.services-grid {
  grid-template-columns: 1fr;
}

.service-card {
  border-right: none;
  border-bottom: 2px solid rgba(255,255,255,0.3);
}

.service-card:last-child {
  border-bottom: none;
}

/*---------------------------*/
   
   /*Footer*/


   footer{
       background-color: #111;
       width: auto;
      
      
   }


   .footerContainer{
       width: 100%;
      
   }
   .soicons{
       display: flex;
       justify-content: center;
  
   }
   .soicons a{
       text-decoration: none;
       padding: 10px;
       background-color: white;
       margin:10px;
       border-radius: 50%;
  
   }


   .soicons a i{
       font-size: 2em;
       color: black;
       opacity:0.9;
   }

