/*
font-family: "Atma", system-ui; 
font-family: "Nunito", sans-serif;
font-family: "Playpen Sans", sans-serif;
*/

@import url('https://fonts.googleapis.com/css2?family=Atma:wght@300;400;500;600;700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playpen+Sans:wght@100..800&display=swap');

nav a{
  position: relative;
  color: white;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

nav a::after{
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

nav a:hover::after{
  width: 100%;
}

@keyframes rubberBand {
  0% {
    transform: scale3d(1,1,1);
  }
  30% {
    transform: scale3d(1.25,0.75,1);
  }
  40% {
    transform: scale3d(0.75,1.25,1);
  }
  50% {
    transform: scale3d(1.15,0.85,1);
  }
  65% {
    transform: scale3d(.95,1.05,1);
  }
  75% {
    transform: scale3d(1.05,.95,1);
  }
  100% {
    transform: scale3d(1,1,1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.site-container {
  background-color: lightblue;
  border: 1px solid black;
  padding: 10px;
  box-sizing: border-box;
}

.atma-light {
  font-family: "Atma", system-ui;
  font-weight: 300;
  font-style: normal;
}

.atma-regular {
  font-family: "Atma", system-ui;
  font-weight: 400;
  font-style: normal;
}

.atma-medium {
  font-family: "Atma", system-ui;
  font-weight: 500;
  font-style: normal;
}

.atma-semibold {
  font-family: "Atma", system-ui;
  font-weight: 600;
  font-style: normal;
}

.atma-bold {
  font-family: "Atma", system-ui;
  font-weight: 700;
  font-style: normal;
}

/* <weight>: Use a value from 200 to 1000
   <uniquifier>: Use a unique and descriptive class name */

 /* Concrete example: replace <uniquifier> with a name and <weight> with a numeric value */
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
}

 .nunito-regular {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Template using a CSS custom property for flexible weight */
.nunito-template {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: var(--nunito-weight, 400);
  font-style: normal;
}

/* <weight>: Use a value from 100 to 800
   <uniquifier>: Use a unique and descriptive class name */

.playpen-sans-template {
  font-family: "Playpen Sans", cursive;
  font-optical-sizing: auto;
  font-weight: var(--playpen-weight, 400);
  font-style: normal;
}

nav{
  background-color: #799FFF;
  padding: 10px 40px 10px 40px;
  align-self: center;
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul {
display: flex;
gap: 10px;
  list-style-type: none;
}
/* #logo {
  display: flex;
  justify-content: center;
}  */

#nav-links {
  display: flex;
  gap: 20px;
} 

nav a {
  color: white;
  text-decoration: none;
}
header{
  background-color: #DEE7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 80px;
  font-family: "Nunito", sans-serif;
}

header img{
  width: 420px;
  border-radius: 10px;
}

header h1{
  font-family: "Atma", cursive;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header h3{
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "atma", system-ui;
}

header p{
  max-width: 500px;
  line-height: 1.6;
}

.box1:hover,
.box2:hover,
.box3:hover,
.owner:hover,
.manager:hover,
.receptionist:hover,
.groomer:hover,
.box4:hover,
.box5:hover,
.box6:hover{
  animation: pulse 0.6s;
  transition: transform 0.2s ease;
}

#booknow {
  background-color: #001930;
  padding: 50px;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

.three{
  display: flex;
  flex-wrap: center;

  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.box1, .box2, .box3{
  width: 320px;
  background-color: #BCCFFF;
  padding: 20px;
  border: 3px solid white;
  border-radius: 25px;
  text-align: center;
}

.box1 img, .box2 img, .box3 img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

h2{
  font-family: "Atma", sans-serif;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: center;
}

.services-button {
    /* Background and Text Color */
    background-color: #00325F; /* A dark blue color */
    color: white; /* White text */

    /* Padding (space between text and border) */
    padding: 15px 32px;

    /* Font properties */
    font-size: 16px;
    font-family: "Atma", system-ui;

    /* Border properties */
    border: none; /* Remove default border */
    border-radius: 8px; /* Rounded corners */

    /* Cursor style on hover */
    cursor: pointer; /* Hand pointer on hover */

    /* Transition effect for smooth hover */
    transition-duration: 0.4s;
}

/* 
.my-button:hover {
    background-color: #799FFF;
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
} */


.services-button:hover{
  animation: rubberBand 0.8s;
  background-color: #799FFF;
  transition: transform 0.2s ease;
}

.box1 {
  width: 380px;
  background-color: #BCCFFF;
  padding: 10px;
  margin: 10px;
  border: 3px solid #ffffff;
  border-radius: 30px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: 100%;
  gap: 5px;
}

.box2 {
  width: 380px;
  background-color: #BCCFFF;
  padding: 10px;
  margin: 10px;
  border: 3px solid #ffffff;
  border-radius: 30px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: 100%;
  gap: 5px;
}

.box3 {
  width: 380px;
  background-color: #BCCFFF;
  padding: 10px;
  margin: 10px;
  border: 3px solid #ffffff;
  border-radius: 30px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: 100%;
  gap: 5px;
}

#ourteam {
  background-color: #799FFF;
  padding: 50px;
  box-sizing: border-box;
} 

#customertestimonials {
  background-color: #001930;
  padding: 50px;
  box-sizing: border-box;
}

#ourteam {
  background-image: url("images/paws.svg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.meetourteam {
  text-align: center;
  font-family: "atma", system-ui;
  font-weight: 600;
  max-width: fit-content;
  margin: 0 auto;
  padding: 50px;
  background-color: #799FFF;
  color: #ffffff;
}

.four{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-items: center;
}

.owner, .manager, .receptionist, .groomer{
  text-align: center;
}

.owner {
  width: 340px;
  background-color: #ffffff;
  padding: 10px;
  margin: 10px;
  border: 4px solid #00325F;
  border-radius: 30px;
  box-sizing: content-box;
  display: flex;
  flex-wrap: 100%;
  flex-direction: column;
  justify-content: center;
  font-family: "nunito", sans-serif;
} 

.manager {
  width: 340px;
  background-color: #ffffff; 
  padding: 10px;
  margin: 10px;
  border: 4px solid #00325F;
  border-radius: 30px;
  box-sizing: content-box;
  display: flex;
  flex-wrap: 100%;
  flex-direction: column;
  justify-content: center;
  font-family: "nunito", sans-serif;
}

.receptionist {
  width: 340px;
  background-color: #ffffff;
  padding: 10px;
  margin: 10px;
  border: 4px solid #00325F;
  border-radius: 30px;
  box-sizing: content-box;
  display: flex;
  flex-wrap: 100%;
  flex-direction: column;
  justify-content: center;
  font-family: "nunito", sans-serif;
}

.groomer {
  width: 340px;
  background-color: #ffffff;
  padding: 10px;
  margin: 10px;
  border: 4px solid #00325F;
  border-radius: 30px;
  box-sizing: content-box;
  display: flex;
  flex-wrap: 100%;
  flex-direction: column;
  justify-content: center;
  font-family: "nunito", sans-serif;
} 

.threeboxes {
  display: flex;
  padding: 20px;
  margin: 15px;
  gap: 10px;
  justify-content: center;
  flex-wrap: 100%;
}

.box4 img, .box5 img, .box6 img{
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.box4 {
  width: 350px;
  background-color: #DEE7FF;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-sizing: content-box;
}

.box5 {
  width: 350px;
  background-color: #DEE7FF;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-sizing: content-box;
}

.box6 {
  width: 350px;
  background-color: #DEE7FF;
  padding: 20px;
  margin: 10px;
  border-radius: 8px;
  box-sizing: content-box;
}

h3{
  font-family: "Atma", sans-serif;
  font-weight: 600;
  color: #001930;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.contact-wrapper{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
}

#contact img{
  width: 600px;
  border-radius: 10px;
}

#contact {
  background-color: #DEE7FF;
  padding: 10px;
  box-sizing: border-box;
}

.contact-container {
    flex-direction: row !important;
}

/* CONTACT SECTION */
#contact {
    padding: 40px 20px;
    text-align: center;
}

#contact h2 {
    margin-bottom: 30px;
}

#contact {
    padding: 80px 60px;
}

/* Fix the layout */
.contact-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 80px;

    max-width: 1000px;
    margin: 0 auto;
}

/* Keep text readable */
.contact-info {
    max-width: 400px;
}

.contact-info {
    flex: 1;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none; 
    color: inherit;          

    margin-bottom: 15px;
    padding: 10px 0;

    transition: 0.2s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 20px;

  font-size: 20px;
}
.social-icons img {
  width: 30px;
  height: 30px;
}

.footer-logo {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer{
  background-color: #DEE7FF;
  padding: 30px;
  box-sizing: border-box;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  gap: 60px;
  font-family: "Nunito", sans-serif;
} 
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  /* gap: 60px; */
}