/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1  20px;
}

h1 {
  font-family: 'Inter', sans-serif;
  font-size: 50px;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Playfair Display', serif; 
  font-size: 2.5em;
  margin-bottom: 1rem;
}

h3 {
  font-family: 'Playfair Display', serif; 
  font-size: 1.5em;
  margin-bottom: 1rem;
}
/* hero-section Styles */
#hero-section {
	background-image: url("/assets/images/hero.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 100px 0; /* Adjust padding as needed */
	background-color: rgba(0, 0, 0, 0.5);
	min-height: 300px;
}

#hero-section .container {
	max-width: 400px;
	margin: 0 auto;
	opacity: 1;
	font-size:32px;
	font-weight:bold;
}

@media (max-width: 420px) {
	  h1 {
		font-size: 44px; 
	  }
  
	#hero-section .container {
	  max-width: 380px;
	  padding: 0 20px; /* 20px left and right padding */
	  box-sizing: border-box; /* Include padding and border in the element's total width and height */  
	}  

}

@media (min-width: 600px) {
	  h1 {
		font-size: 80px; 
	  }
  
  	#hero-section .container {
	  max-width: 700px;
	  padding: 0 20px; /* 20px left and right padding */
	  box-sizing: border-box; /* Include padding and border in the element's total width and height */  
	  fontt-size:40px;
	}  

}

        /* Styles for the section */
        .styles-section {
            width: 100%;
        }

        .styles-container {
            max-width: 1100px;
            margin: 0 auto; /* Center the container */
            padding: 20px;
        }

        .styles-heading {
            text-align: center;
            margin-bottom: 20px;
        }

        .styles-row {
            display: flex;
            justify-content: space-around; /* Distribute space around columns */
        }

        .styles-column {
            flex-basis: 30%; /* Slightly reduce column width to create space */
            text-align: center;
        }

        .styles-image {
            max-width: 100%;
            height: auto;
        }

        /* Responsive design for smaller screens */
        @media (max-width: 768px) {
            .styles-row {
                flex-direction: column; /* Stack columns vertically */
            }

            .styles-column {
                flex-basis: 100%; /* Each column takes full width */
                margin-bottom: 20px;
            }
        }
		
    .how-section {
      background-color: #EFEFEF;
      padding: 50px 0;
    }

    .content-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .top-row {
      text-align: center;
    }

    .steps {
      max-width: 600px; 
      margin: 20px auto;
      padding: 30px;
      border-radius: 5px;
    }

    .step {
      display: flex; 
      align-items: center;
      background-color: white;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .icon-container {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 110px; 
      aspect-ratio: 1 / 1; 
      border-radius: 50%;
      background-color: #520d23;
      margin-right: 20px; 
    }

    .icon-container i {
      color: white;
      font-size: 2.2em;
    }

    /* Fixed width for content column */
    .step > div:nth-child(2) { /* Selects the second div within each step */
      width: 450px; /* Adjust this value as needed */
    }

    /* Bootstrap Breakpoints */
    @media (max-width: 576px) { 
      .step {
        flex-direction: column; 
        text-align: center;
      }

      .icon-container {
        margin: 0 auto 10px auto; 
      }

      .step > div:nth-child(2) { /* Remove fixed width on smaller screens */
        width: auto; 
      }
    }

  .footer-section {
    background-color: #666; 
    color: white;
    padding: 0px 0px 0px 0px; 
    font-family: 'Inter', sans-serif !important;
  }

  .footer-container {
    width: 1000px;
    margin: 0 auto; 
    text-align: center; 
	padding:20px 0px 30px 0px;
  }


  .footer-row { 
    background-color: #333;
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
  }

  .footer-row p {
    margin: 0; 
    font-size: 14px; 
  }

  /* Responsive design for smaller screens */
  @media screen and (max-width: 1024px) {
    .footer-container {
      width: 90%; 
      padding: 20px; 
    }
  }	