:root {
    --color-primary: #f8c8dc;   /* Light pink */
    --color-accent: #487d84;    /* Lily Dress Green #487d84 - good for white and black text */
    --color-black: #000;
    --color-white: #fff;
    --font-main: 'Open Sans', Arial, sans-serif;

    --transition: 0.3s cubic-bezier(.4,2,.3,1); /* Smooth transition for hover effects */
  }
  
  /* Global styles */
  body {
    font-family: var(--font-main);
    color: var(--color-black);
    background: var(--color-white);
    margin: 0;
    font-size: 16px; /* base size */
    font-weight: 400; /* normal */
  }
  
  h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
  }
  
  h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-black);
  }
  
  h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
  }
  
  h4 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-black);
  }
  
  /* Backgrounds */
  .main-header {
    background: var(--color-white);
    border-bottom: 3px solid var(--color-accent); 
  }
  .main-footer {
    background: var(--color-white);
    color: var(--color-black);
  }
  
/* START HERO SECTION */
/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: var(--color-white);
    margin-bottom: 0px;
}

/* Carousel container */
.carousel {
    width: 100vw;
/*    max-width: 1680px; */
    margin: 0 auto;
    overflow: hidden;
    height: auto; /* Set your desired carousel height */
    object-fit: contain;
    margin: 0;
    padding: 0;
    position: relative;
    background: var(--color-white);
}

/* Carousel track for infinite scroll */
.carousel-track {
    display: flex;
    width: calc(26 * 2vw); /* 13 images x 2 (duplicated for seamless scroll) */
    animation: scroll 100s linear infinite; /* Slow, smooth scroll */
    gap: 10px; /* Set to 0 for no space, or e.g. 10px for a small gap */
}
.carousel-track a {
    flex: 0 0 25vw; /* or 20vw for more images, or a fixed px width */
    display: block;
  }
.carousel:hover .carousel-track {
    animation-play-state: paused;
}

/* Each image in the carousel */
.carousel-track img {
    width: 100%;             /* Each image fills the viewport width */
    max-width: 1200px;        /* Optional: limit max width */
    height: auto;            /* Fixed carousel height */
    object-fit: contain;      /* Show entire image without cropping */
    object-position: center;
    margin: 0;
    padding: 0;
    display: block;
    background: var(--color-white);
    flex-shrink: 0;
}

/* Keyframes for seamless horizontal scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-500vw); /* 13 images x -100vw */
    }
}

/* END HERO SECTION */

/* START FLEXBOX SECTION */
/* Make the footer columns display side by side on desktop, and stack vertically on mobile. Use Flexbox. */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em 0;
    background: var(--color-white);
    color: var(--color-black);
    border-top: 2px solid var(--color-accent)
  }
  
  .footer-logo {
    margin-bottom: 1em;
  }
  
  .footer-logo img {
    max-width: 100%;
    height: auto;
  }  

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 2em; /* space between columns */
  }
  
  .footer-col {
    flex: 1 1 calc(25% - 20px); /* Adjust width as needed */
    margin: 10px;
    min-width: 200px; /* Ensure columns don't shrink too much */
  }
  
  .footer-col .box {
    padding: 10px;
    background-color: var(--color-white); /* Example background */
    border-radius: 5px;
  }

.box-services p {
  line-height: 1.3;      /* or try 1.1 or 1 for even tighter lines */
  margin: 0 0 4px 0;     /* removes top margin, keeps a little space below each line */
  padding: 0;
}


  /* Responsive: stack columns on small screens */
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 1em;
    }
    .footer-col {
      min-width: 0;
    }
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
  }
  .inner {
    width: 100%;
  }
  
  
    /* END FLEXBOX SECTION */

    .footer-bottom {
        text-align: center;
        font-size: 1rem;
        padding: 1em 0 0 0;
        color: var(--color-black);
        background: transparent;
      }
      
/* SOCIAL ICONS START */
.social {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .social a {
    color: var(--color-accent);
    font-size: 2rem;
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
  }
  
  .social a:hover {
    color: var(--color-primary);
    transform: scale(1.2);
  }
  

/* SOCIAL ICONS END */


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 2em;
  }

.header {
  background: var(--color-white);
  padding: 1em 0;
  border-bottom: 2px solid var(--color-accent);
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.header-col {
   flex: 1 1 auto; 
}

.logo-and-titles {
  display: flex;
  align-items: center;
  gap: 1em;
}

.shop-logo {
  width: 100px;
  height: auto;
}

.header-titles h1 {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 0;
}

.header-titles .tagline {
  font-size: 1rem;
  color: var(--color-black);
  margin: 0;
}

.header-social {
  display: flex;
  gap: 1em;
}

.header-social a {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: color 0.3s, transform 0.3s;
  text-decoration: none;
}

.header-social a:hover {
  color: var(--color-primary);
  transform: scale(1.2);
}

.main-nav {
  text-align: center;
  margin-top: 1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-row {
    flex-direction: column;
    align-items: center;
  }

  .logo-and-titles {
    flex-direction: column;
    align-items: center;
  }

  .header-social {
    justify-content: center;
  }
}

  /* Responsive for mobile */
  @media (max-width: 600px) {
    .header-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5em;
    }
    .header-contact-social {
      align-items: flex-start;
    }
    .contact-info {
      align-items: flex-start;
    }
  }
  
  
  .logo-link {
    display: flex;
    align-items: center;
  }
  
  .shop-logo {
    width: 100px;           /* Start with 80px; adjust as needed */
    max-width: 120px;      /* Prevents it from getting too large */
    height: auto;
    margin-right: 0; /* Let the gap handle spacing */
  }
  
  .header-titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0em; /* Reduce space between shop name and tagline */
  }
  
  @media (max-width: 600px) {
    .shop-logo {
      width: 50px;
      max-width: 80px;
    }
    .header-content {
      gap: 1em;
    }

    .header-social {
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
    }
    .social-icons-row {
        justify-content: center !important;
      }

    .header-phone {
        text-align: center;
        width: 100%;
      }
      .header-address {
        text-align: center;
        width: 100%;
      }
  }

/* Shadows for Boxes */
.box-shadow{
    box-shadow: 0px 4px 4px #00000030, 0px 12px 12px #00000015;
}

/* Scale on hover */
.scale {
    transition: transform var(--transition);
    cursor: pointer;
  }
  
  .scale:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  }



  .site-title-link {
    color: var(--color-accent);           /* Use your accent or another color for default */
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .site-title-link:hover,
  .site-title-link:focus {
    color: var(--color-primary);          /* Pink on hover */

  }
  

  .header-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5em;
  }
  
  .header-social > a {
    /* Social icon links */
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
    margin-bottom: 0; /* Remove any unwanted margin */
  }
  
  .header-social > a:hover {
    color: var(--color-primary);
    transform: scale(1.2);
  }
  
  .header-phone a {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .header-phone a:hover {
    color: var(--color-accent);
  }
  .header-address a {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .header-address a:hover {
    color: var(--color-primary);
  }
  
  address {
    font-style: normal;
  }