/* style.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;
    color: #4e54c8;
    
  }
  
  body {
    height: 100%;
    color:#4e54c8;
    background: #FAF8EE !important;
  }
  
  /* Navbar styles */
  .navbar{
   width: 100%;
  max-width: 100%;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .navbar-brand{
    color: #fff;
  }
  .navbar a{
    color: #4e54c8;
  }

 .navbar a:hover{
    text-decoration: underline #4e54c8 !important;
    color: #4e54c8;
    transition: all 0.3s ease;

  }
 
  /* Hero Section */
  .hero {
    padding: 100px 20px;
     /* full height of viewport */
    color:#4e54c8;
    display: flex;
    align-items: start;
    justify-content: center;
  }
  .hero-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 100px;
    margin-top: 100px;
    font-size: 20px;
    
  }
  
  .hero-text h1{
    font-family: "Qwigley", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
  }
  .hero-text a{
    color: #4e54c8;
    border-color: #4e54c8;
  }
  .hero-img img{
    border: 1px solid black ;
    height: 500px;
    border-radius: 20px;
    box-shadow:
    0.3em 0.3em 1em rgba(19, 19, 19, 1);
  }
  /* Button style */
  .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: white ;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow:
    0.3em 0.3em 1em rgba(19, 19, 19, 0.6);
  }

/* Footer section */
  .footer {
    width: 100%;
    max-width: 100%;
    background-color:#fff;
    color: #8f94fb;
    padding: 20px 0;
    text-align: center;

    
  }
  
  .footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-content p {
    margin: 0 0 10px;
    font-size: 0.95em;
  }
  
  .footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .footer-icons a {
    color:#8f94fb;
    font-size: 1.3em;
    transition: color 0.3s ease;
  }
  
  .footer-icons i:hover {
    color: #ffd700 !important;
    font-size: 1.4em;
  }
  

  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
      align-items: center;

    }

    .hero-text{
      font-size: 30px;
      padding-top: 40px;
      margin: 0 auto;
    }

    .hero-text h1{
      font-size: 60px;
    }
  
    .hero-img{
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-img img{
      height: 250px;
      width: 250px;
      max-width: 100%;
      border-radius: 50%;
    }

}



  
  

  