@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
html {
    font-family: "Poppins", sans-serif;
}

:root {
    --main-color: #47002C;
}

.cta {
    background: var(--main-color);
    color: #fff;
    margin: 0 2.4rem;
}

.cta:hover {
    background: var(--main-color);
    color: #fff;
}

#top-nav {
    background: var(--main-color) !important;
    color: #fff !important;
    font-size: 1.1rem; /* Base font size */
}

#top-nav h6 {
    font-size: 1rem; /* Larger heading */
    margin-bottom: 0.25rem;
}

/* navbar */
nav .navbar-nav a {
    color: var(--main-color) !important;
    transition: all .3s ease-in-out;
    font-size: 1.4rem;
    padding: 0 1.2rem
}

nav .navbar-nav a:hover {
    color: #000 !important;
    transform: scale(1.1);
    font-weight: bold;
}
nav .navbar-brand img{
    width: 5rem !important;
}
/* slider */
/* #slider-container {
    height: 65vh;
} */

#slider-container .carousel-indicators button {
    background: var(--main-color) !important;
    width: 22px;
    height: 3px;
    border-radius: 50px;
}

/* services */
#services .card {
    background: #000;
    color: #fff;
    cursor: pointer;
}

#services .card .circle {
    border: 3px solid var(--main-color);
    border-radius: 50%;
    height: 150px;
    width: 150px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

#services .card .circle img {
    width: 100%;
    object-fit: contain;
}

#services .card:hover .circle {
    transform: scale(1.1);
}

/* groceries */
#grocery .card {
    /* background: var(--main-color); */
    overflow: hidden;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

#grocery .card .card-img {
    background: #F7F7F7;
    border-radius: 0;
    border-bottom-left-radius: 3rem;
    height: 30vh;
    align-items: center;
    justify-content: center;
    display: flex;
    overflow: hidden;
}

#grocery .card img {
    width: 60%;
    object-fit: contain;
}

#grocery .card:hover img {
    transition: all .3s ease-in-out;
    transform: scale(1.1);
}

/* Hero Video Responsive */
.hero-container {
  width: 75%; 
  margin: 0 auto; 
  position: relative;
  overflow: hidden;
  height: 80vh; 
  border-radius: 10px; 
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #top-nav .row > div {
    text-align: center !important;
    margin-bottom: 1rem;
  }

  .hero-container {
    height: 50vh;
    width: 95vw;
  }

  #services img {
    width: 80px !important;
  }

  h3.display-5 {
    font-size: 1.8rem;
  }

  .card h4 {
    font-size: 1.4rem;
  }

  iframe {
    height: 250px !important;
  }
}

/* General tweaks */
.card img {
  object-fit: cover;
  height: 100%;
}

.card {
  border-radius: 0.75rem;
  overflow: hidden;
}

a.text-dark:hover {
  color: #e17e22 !important;
}
