@charset "utf-8";


/* Photography Categories */

.image-with-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; 
    border: 1px solid #ccc; 
}

.image-with-text img {
    max-width: 25%; 
}
        
.text-content {
    max-width: 55%; 
}
        
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.image-grid-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: 10px 0;
}

.image-grid-item {
    text-align: center;
    margin: 0 10px;
}

.image-grid-item img {
    max-width: 240px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease; 
}

.image-grid-item:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.image-grid-item p {
    color: white; 
}

.image-grid-item:hover p {
    color: white; 
}

/* Headings */

.heading-container {
    text-align: center;
    color: white;
    padding: 20px 0;
}

.heading-container h1 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}
        
h1{
    font-size: 30px;
    font-weight: 600;
    font-family: 'Candara', 'Arial', sans-serif;
    text-align: center;
}

/* Client Reviews */

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
}

.client-review {
    border: 1px solid #ccc;
    padding: 20px;
    display: flex;
    align-items: center;
}

.client-info {
    margin-left: 20px;
}

.client-info h2 {
    font-size: 18px;
    margin: 0;
}

.client-info p {
    font-size: 14px;
    margin: 0;
}

.client-review img {
    max-width: 250px;
    height: auto;
}
/* Carousel */

.carousel-item {
    height: 500px; 
    overflow: hidden; 
  }
  
  .carousel-item img {
    height: 500px; 
    width: auto; 
    object-fit: contain; 
    margin: auto;
  }

  .carousel-indicators {
    display: none;
  }
  

  #familyPhotosCarousel .carousel-item {
    height: 500px; /* ... */
  }
  #familyPhotosCarousel .carousel-item img {
    /* ... */
  }

  @media (max-width: 767px) {
    .carousel-item, .carousel-item img {
      height: auto;
      object-fit: contain; 
    }
  }
  


/* Left-aligned text */
.left-align {
    text-align: left;
}

