

body { 
  font-family: "futura-pt", sans-serif;                                    
  color: #707070;
  box-sizing: border-box;
  padding-top: 140px;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* kills right-side white space */
}

.left-side-margin {
  margin: 60px;
}

.right-side-margin {
  margin: 60px;
}

/* Header Font */

.header-font {
  font-family: 'MoreSugar', sans-serif; 
}

/* Menu */
  
.navbar-brand {
  font-family: 'MoreSugar', sans-serif;   
  font-size: 3rem;
  color: #30c0ff !important;
  z-index: 5;
}
  
.navbar-nav .nav-link {
  color: #707070;
  margin-right: 15px;    
}

.nav-item {
  z-index: 10;
}

.nav-link:hover {
  background-color: #30c0ff;
  color: white;
}

.background-petblue {
  background-color: #30c0ff;
  width: 100vw;
}

.font-petblue {
  color: #30c0ff;
}
  
.social-icons a {
  color:  #30c0ff;
  margin-right: 15px;
}
  
/* Hamburger Menu */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Home Page Section */

.home-container {
  position: relative;   /* makes overlay position relative to this */
  display: inline-block;
  width: 100%;
}

.home-image {
  margin-top:100px;
  width: 100%;
  height: auto;
  display: block;       /* prevents weird spacing */
    z-index: 1;           
}

.form-overlay {
  position: absolute;   
  top: 80%;             
  left: 21%;            
  transform: translate(-50%, -50%);
  padding: 15px 20px;
  border-radius: 8px;
  text-align:center;
  z-index: 2;           /* make sure it's above the image */
  max-width: 90%;
}

.form-overlay input {  
  padding: 8px 12px;
  width: 300px;
  border: 2px solid #30C0FF;
  border-radius: 5px;
  margin: 10px 10px;
  font-size: 16px;
}

.form-overlay button {
  padding: 8px 16px;
  background:red;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-overlay button:hover {
  background: #30C0FF;
}

/*Content Section*/
.content-section .text-main {
  flex: 1;
}

.content-section .text-main h2 {
  font-family:'MoreSugar', sans-serif; 
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
}
.text-main h2, .text-main h4 ,.text-main h5{
  color: #30C0FF;
  }

.content-section .text-main p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #707070;
}

.content-section .image {
  flex: 1;
}

.content-section .image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer; /* shows hand icon */
}
.content-section .image a {
  display: block;
  transition: transform 0.3s ease;
}

.content-section .image a:hover {
  transform: scale(1.05); /* zooms on hover */
}
/* Reverse layout */
.content-section.reverse {
  flex-direction: row-reverse;
  transform: translateX(-100px);
}

/* General Section Styling */
.content-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 200px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

/* Reverse layout (image right, text left) */
.content-section.reverse {
  flex-direction: row-reverse;
  transform: translateX(-100px); /* start from left */
}

/* When visible */
.content-section.show {
  opacity: 1;
  transform: translateX(0);
}

.content-section .image img {
  max-width: 400px;
  border-radius: 12px;
}

.content-section .text-main{
  max-width: 500px;
}



/* Button styling */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color:#30C0FF;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  /* background-color: #6f9a99; */
  background-color: #30c0ff;
} 

/* About Us */
.aboutUs {
  margin-top: 150px;
  margin-left: 60px;
  margin-right: 60px;
}

p {
  color: #707070;
}

h1 h2 h3 h4 h5 h6 {
  font-family: 'MoreSugar', sans-serif; 
}

.no-design {
  text-decoration: none;
  list-style-type: none;
}

.custom-text-color {
  color: #30c0ff;
}

.background-blue {
  background-color: #30c0ff;
}

.background-green {
  background-color: #30C586;
}

.background-orange {
  background-color: #FF9445;
}

.background-pink {
  background-color: #FACED9;
}

.background-yellow {
  background-color: #FFDE5F;
}

.background-beige {
  background-color: #ECD8BF;
}

.background-black {
  background-color: #1E1A1B; 
}

.background-gray {
  background-color: #707070;
}

.card-transparent-border {
  background-color: transparent;
  border-color: #ffffff;
}

/* Trainers */

.trainer-container {
  position: relative;
}

.trainer-image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.trainer-container:hover .trainer-image {
  opacity: 0.3;
}

.trainer-container:hover .middle {
  opacity: 1;
}

.text {
  background-color: #30c0ff;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
  text-decoration: none;
}

.text a:link {
  color: white;
  text-decoration: none;
}

.text a:hover {
  color: white;
  text-decoration: none;
}

.text a:visited {
  color: white;
  text-decoration: none;
}

/* Responsive layout */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    text-align: center;
  }

  .content-section.reverse {
    flex-direction: column;
  }
}


/* Back To Top */
#backToTopBtn {
  position: fixed; 
  bottom: 20px; 
  right: 30px; 
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #30c0ff; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#backToTopBtn:hover {
  background-color: #707070; /* Add a darker background on hover */
}
  

/**PETHUB SECTION**/
.title {
  font-family: 'MoreSugar', sans-serif; 
  color: #30C0FF;
  margin-top: 220px; /* height of your navbar + some spacing */
  text-align: center;
}
#cart h2 , #cartTotal{
  font-family: 'MoreSugar', sans-serif; 
  color: #30C0FF;
}
#checkoutBtn {
  padding: 6px 16px;  /* tweak size */
  font-size: 0.9rem;
}

.title h1 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
}

.category {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.category h2 {
  font-family:'MoreSugar', sans-serif ;
  color: #30C0FF;
  border-bottom: 3px solid #30C0FF;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.pet-card .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pet-card .card:hover {
  transform: translateY(-6px);              /* slight upward lift */
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.25); /* stronger shadow for pop effect */
}


.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pet {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.pet img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.pet h3 {
  font-family: 'MoreSugar', sans-serif;
  margin: 0.5rem 0;
  color: #30C0FF;
}

.price {
  color: #30C0FF;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Contact Form Specific Styles */
.contact-input {
    border: 2px solid rgba(48, 192, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
}

.contact-input:focus {
    border-color: #30c0ff !important;
    box-shadow: 0 0 0 0.2rem rgba(48, 192, 255, 0.25) !important;
}

.contact-input.is-invalid {
    border-color: #dc3545 !important;
}

.contact-input.is-valid {
    border-color: #198754 !important;
}

.btn-send {
    background: linear-gradient(135deg, #30c0ff 0%, #0099cc 100%) !important;
    border: none !important;
    color: white !important;
    padding: 12px 40px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.btn-send:hover {
    background: linear-gradient(135deg, #0099cc 0%, #007399 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(48, 192, 255, 0.4) !important;
    color: white !important;
}

.btn-send:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.invalid-feedback {
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
}


/* Footer */
  
footer {
  text-align: center;
  padding: 20px;
  color: #30c0ff;
}
  
.footer-logo {
  font-family: "futura-pt", sans-serif;
  font-size: 3rem;
  color: #30c0ff;
}

.footer-line {
  border-top: 1px solid #707070;
  margin: 20px 0;
}
  
.social-btn {
  border: 1px solid #fff;
  padding: 8px 20px;
  border-radius: 0;
  background: transparent;
  color: #30c0ff;
  text-decoration: none;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-btn:hover {
  background-color: #30c0ff;
  color: white;
}
  

@font-face {
  font-family: 'MoreSugar'; 
  src: url('../assets/assets_Joanne/fonts/MoreSugar-Regular.ttf') format('truetype'),
       url('../assets/assets_Joanne/fonts/MoreSugar-Extras.ttf') format('truetype'),
       url('../assets/assets_Joanne/fonts/MoreSugar-Thin.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}