@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,800;1,800&display=swap');

/*.faculty-glyphic-regular {
    font-family: "Faculty Glyphic", sans-serif;
    font-weight: 400;
    font-style: normal;
  }


font-family: "Playfair Display", serif;
font-optical-sizing: auto;
font-weight: 800;
font-style: normal;


  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;*/


*{
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Faculty Glyphic", sans-serif;
    font-weight: 400;
}

#carone{
    height: 90vh;
    object-fit: cover;
    float: left;
}

#carone:hover{
    opacity: 0.9;
}
  /* About Me Section */
.about{
    background-image: url('./images/aboutbg.jpg');
    padding: 40px 20px;
}

.abouttex{
  background-color: rgba(255, 255, 255, 0.28);
  border: 2px solid white;
  border-radius: 10px;
  box-shadow: 0 4px 10px black;
  margin: 30px auto;
  padding: 40px 20px;
}
  
.about-me .quote {
    font-style: italic;
    color: #007bff;
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin: 20px 0;
    font-size: 1.3rem;
}
  
.social-links a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
  
.social-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/*Blog Section*/

.blog1 h2{
  padding: 25px;
  
}

.blog1 h3{
  padding-bottom: 30px;
  
}

.blog2 .image1{
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative; 
}

.blog2 .image1::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/couple7.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.blog2 .image1:hover::before{
  transform: scale(1.2);
  opacity: 0.8;
}

.text-con{
  margin-top: 20px;
  font-size: 16px;
  color: black;
}



.blog2 .image2{
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative; 
}

.blog2 .image2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/men3.jpeg');
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.blog2 .image2:hover::before{
  transform: scale(1.2);
  opacity: 0.8;
}

.blog2 .image3{
  height: 300px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative; 
}

.blog2 .image3::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/fam3.jpeg');
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.blog2 .image3:hover::before{
  transform: scale(1.2);
  opacity: 0.8;
}

/* Section */

#sec1{
  background-color: aquamarine;
}

#par3 h2{
  color: black;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.bt{
  border: none;
  background-color: black;
  color: white;
  border-radius: 10px;
  height: auto;
  width: 200px;
}

.bt:hover{
  background-color: white;
  color: black;
  box-shadow: 0 0 10px black;
}
  
  
/* Testimonials Section */
.testimonials blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
}
  
.testimonials footer {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}
  
  /* Call to Action */
  .cta {
    background-color: black;
    color: white;
    padding: 40px 20px;
  }
  
  .cta .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .skills, .gallery, .testimonials, .cta {
      padding: 20px;
    }
  
    h2, h3 {
      font-size: 1.8rem;
    }
  
    .quote {
      font-size: 1.1rem;
    }
  }
  