body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.ccpt-top-nav {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
}
.ccpt-top-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.ccpt-top-nav a:hover {
    text-decoration: underline;
}
.items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
.intro-item {
    display: flex;
    flex-wrap: wrap;
    /* border: 1px solid #ddd;
    border-radius: 5px; */
    padding: 10px;
    max-width: 90%;
    /* width: (90%); */
    box-sizing: border-box;
}
.shop-item {
    border: 1px;
    border-radius: 5px;
    padding: 10px;
}

.item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: calc(25% - 20px);
    box-sizing: border-box;
    text-align: center;
}
.item img {
    max-width: 100%;
    border-radius: 5px;
}
.item h3 {
    margin: 10px 0 5px;
}
.item p {
    margin: 5px 0;
}
.item .price {
    font-weight: bold;
    color: #333;
}

.container {
    position: relative;
    text-align: center;
    color: white;
  }
  
  /* Bottom left text */
  .bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
  }
  
  /* Top left text */
  .top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }
  
  /* Top right text */
  .top-right {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  
  /* Bottom right text */
  .bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }
  
  /* Centered text */
  .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

.intro-heading {
    font-family: "Brush Script MT";
}

.section-text {
    font-family: "Times New Roman";
}

.col.border.rounded-pill {
    background-color: #3552f7; 
    color: white;
    width:50%;
}

.gallery-item :hover {
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f0f0; /* Light background for visibility */
    text-align: center; /* Center text inside the element */
    box-shadow: 5px 5px 4px lightblue;
}
.customer-feedback {
    border-style: solid;
    border-radius: 5px;
    border-width: 1px;
    border-color: #ddd;
    margin: 3px;
    background-color: rgb(0, 140, 255);
    color: white;
    box-shadow: 3px 3px 2px lightblue;
}

@media (max-width: 768px) {
    #intro-section {
        /* height: 20vh; */
    }
}
@keyframes intro-slide {
    0% {
        transform: scale(100%) translateX(0%);
    }
    50% {
        transform: scale(120%) translateX(-10%);
    }
    100% {
        transform: scale(100%) translateX(0%);
    }
}
#intro-photo {
    display: inline-block;
    animation:intro-slide 60s linear infinite;
}
#intro-overlay {
    overflow: hidden;
    position: absolute;
    padding: 10px;
    margin: auto;
    top: 0;
    left: 12px;
    width: 50vh;
    height: 20vh;
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 4em;
    z-index: 2;
    justify-content: center;
    /* align-items: center; */
}
.intro-text {
    text-wrap: normal;
    word-wrap: break-word;
}