/* bobastyles.css */

/* Global Styles */
* {
    box-sizing: border-box;
  }
  
  body {
    /* font-family: 'Roboto', sans-serif; */
    font-family: "Darumadrop One", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #E4E2CF;
    color: #333;
  }

  .darumadrop-one-regular {
    font-family: "Darumadrop One", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  
  /* Header */
  .header {
    background-color: #6A8E66 !important; 
    color: #fff;
    padding: 2rem 0;
    text-align: center;
  }

  .instagram-icon{
    width: 40px;
    height: 40px;
  }

  .email-icon{
    width: 40px;
    height: 40px;
  }

  .call-icon{
    width: 40px;
    height: 40px;
  }
  
  .container.my-4 p {
    font-size: 1.25rem; /* Adjust the size as needed */
    padding: 1.5rem;
  }

  /* Boba's first image*/
  .welcome-img {
    max-width: 75%;  /* Adjust percentage or use a pixel value as needed */
    height: auto;    /* Maintain aspect ratio */
  }
  
  /* Optional: Adjust image size on smaller devices */
  @media (max-width: 768px) {
    .welcome-img {
      max-width: 70%;
    }
  }

  /* Container Override */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Section Base Styles */
  section {
    padding: 2rem 0;
    margin-bottom: 0rem;
  }

  /* About Us Section */
  .about-us .row {
    background-color: #BFD0C1;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    min-height: 60vh;  /* Adjust this value to set your desired vertical space */
    text-align: center;
    padding: 1.5rem;
  }

  .about-us {
    padding: 0 !important; /* Remove bottom margin */
    margin: 0 !important;
  }

  /* Collage Section */
  .collage {
    background-color: #8FAB98 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .collage h1 {
    margin-bottom: 1.5rem;
  }
  
/*   .collage .row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  } */
  
  .collage img {
    width: 100%;         /* Let the width be as wide as the parent column */
    /* height: 550px;       Fixed height (adjust to your preference) */
    aspect-ratio: 10 / 16; /* or 1 / 1, 16 / 9, etc. */
    object-fit: cover;   /* Crop to fit if aspect ratios differ */
    border-radius: 4px;  /* Optional for slightly rounded corners */
  }
  
  .collage img:hover {
    transform: scale(1.05);
  }
  
  /* Videos Section */
  .videos {
    background-color: #E4E2CF !important; /* Light yellow-green tone */
  }
  
  .videos h1 {
    margin-bottom: 1.5rem;
  }
  
  .videos img {
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .videos img:hover {
    transform: scale(1.05);
  }
  
  /* Workflow Section */
  .workflow {
    background-color: #8FAB98 !important; /* Light plum tone */
  }
  
  .workflow h1 {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .workflow ul {
    list-style-type: none;
    padding: 0;
  }
  
  .workflow li {
    background: #fff;
    margin-bottom: 1rem;
    padding: 1rem;
    border-left: 5px solid #007bff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .workflow li strong {
    display: inline-block;
    width: 120px;
  }
  
  /* Footer */
  footer {
    background-color: #343a40; /* Dark background */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
  }
  
  /* Utility Classes */
  .mt-4 { margin-top: 1.5rem; }
  .mb-4 { margin-bottom: 1.5rem; }
  .pt-4 { padding-top: 1.5rem; }
  .pb-4 { padding-bottom: 1.5rem; }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .header h1 {
      font-size: 2rem;
    }
    .header h2 {
      font-size: 1.25rem;
    }
  }

  #img-thumb {
    max-width: 300px !important;
    height: auto !important;
  }
