@charset "utf-8";
/* CSS Document */
@font-face {
	font-family: "PPEditorialOldUltraBold";
	src: url("Typefaces/PPEditorialOld-Ultrabold.otf")
}
@font-face {
	font-family: "PPEditorialNewItalic";
	src: url("Typefaces/PPEditorialNew-Italic.otf")
}
@font-face {
	font-family: "PPEditorialNewRegular";
	src: url("Typefaces/PPEditorialNew-Regular.otf")
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 16px;
}

/* Header Styles */
.header {
    background-color: #F9F8F3;
    color: #412A1A;
    padding: 10px 140px 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 110px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: #412A1A;
    text-decoration: none;
    padding: 10px;
	font-family: "PPEditorialNewItalic"
}

.nav-links a:hover {
    color: #9C5738;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.line {
    width: 30px;
    height: 4px;
    background-color: #412A1A;
    margin: 5px;
}

/* Menu Styles */
.menu {
    background-color: #F9F8F3;
    color: #412A1A;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding-top: 90px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.menu ul {
    list-style-type: none;
    padding: 0;
}

.menu ul li {
    padding: 20px 0;
    margin: 60px auto;
    text-align: center;
}

.menu ul li a {
    color: #412A1A;
    text-decoration: none;
    font-size: 24px;
}

.menu.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 54px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    color: #412A1A;
}
.brands-section h2 {
	text-align: center;
    font-family: "PPEditorialNewRegular";
    font-size: 1.8rem;
    color: #000000;
    font-weight: lighter;
}


@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .header {
        padding: 10px 20px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* Center vertically */
        position: fixed;
        top: 50%; /* Adjusted to center vertically */
        transform: translateY(-50%); /* Center vertically */
        background-color: #F9F8F3;
        width: 100%;
        height: 100vh;
        left: 0;
        padding: 20px 0; /* Adjusted padding */
        box-sizing: border-box;
        z-index: 998;
        overflow-y: auto;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        top: 25px;
        right: 60px;
    }
}


.hero-section {
  position: relative;
  height: 87.6vh; /* Adjust as needed */
  background-image: url("Images/homepage1.png"); /* Replace 'background-image.jpg' with your actual image path */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align headline to the right */
  padding: 0 20px; /* Adjust as needed */
}

.headline {
  max-width: 50%; /* Adjust as needed */
  text-align: left;
  color: #fff;
}

.headline h1 {
  font-family: "PPEditorialOldUltraBold";
  color: #1F1F1F;
  font-size: 3.5rem;
  padding-left: 80px;
  padding-right: 80px;
}

.headline p {
  font-family: "PPEditorialNewItalic";
  font-size: 1.3rem;
  color: #515151;
  line-height: 2.3rem;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 30px;
  font-weight: lighter;
  letter-spacing: 0.2px;
}


.aboutme-section {
    background-image: url("Images/bg_yellow.jpg");/* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    padding: 50px 0; /* Adjust as needed */
	height: 40vh;
}

.aboutme-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.aboutme-text {
    width: 30%; /* Adjust as needed */
    color: #9C5738;
	margin-left: 200px;
}

.aboutme-text h2 {
    font-family: "PPEditorialNewRegular";
    font-weight: lighter;
    font-size: 1.8rem;
}

.aboutme-text p {
    font-family: "Helvetica";
    font-style: italic;
    line-height: 1.5rem;
}

.aboutme-image {
    width: 45%; /* Adjust as needed */
    text-align: left;
}

.aboutme-image img {
    max-height: 35vh;
    width: auto;
    margin-left: 50px;
    -webkit-box-shadow: 3px 3px 5px 3px #8F8F8F;
    box-shadow: 3px 3px 5px 3px #8F8F8F;
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
}

.aboutme-image:hover img {
    transform: scale(1.05); /* Increase the size on hover */
}

.portfolio-section {
  background-color: #F9F8F3;
  background-size: cover;
  background-position: center;
  padding: 50px 0; /* Adjust as needed */
  height: 67vh;
}

.portfolio-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto; 
}

.portfolio-carousel {
  width: 30%;
  position: relative;
  overflow: hidden;
  margin-left: 90px;
  padding-bottom: 50px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden; /* Hide overflowing slides */
}

.slide {
  flex: 0 0 100%; /* Each slide takes 100% of the container */
  max-width: 100%; /* Ensure the image doesn't exceed the container */
}

.carousel img {
  width: 100%; /* Make the images fill the slide container */
}

.portfolio-text {
    width: 40%; /* Adjust as needed */
    color: #3B4234;
    margin-top: -20px;
}

.portfolio-text p {
  font-family: "Helvetica";
  font-style: italic;
  line-height: 1.5rem;
}


.nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-30%);
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
}

.portfolio-text h2 {
  font-family: "PPEditorialNewRegular";
  font-weight: lighter;
  font-size: 1.8rem;
}

.prev-btn {
  left: 5px; /* Adjusted from 10px */
}
.buttons {
    text-align: center;
    margin-top: 10px;
}
.buttons .btn {
    margin-left: 20px;
    margin-right: 20px;
}



.next-btn {
  right: 5px; /* Adjusted from 10px */
}

.flutter-icons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.flutter-icon {
  width: 10px;
  height: 10px;
  background-color: #C0C0C0;
  border-radius: 50%;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}

.flutter-icon.active {
  background-color: #fff; /* Adjust as needed */
}

.btn {
  display: inline-block;
  padding: 10px 20px; /* Adjust padding as needed */
  border: 2px solid #412A1A; /* Brown outline */
  border-radius: 8px; /* Slightly rounded corners */
  background-color: #F9F8F3; /* White background */
  color: #412A1A; /* Brown text color */
  font-size: 16px; /* Adjust font size as needed */
  cursor: pointer;
  font-family: "Helvetica";
  transition: background-color 0.3s, color 0.3s; /* Smooth transition on hover */
}

.btn:hover {
  background-color: #412A1A; /* Brown background on hover */
  color: #F9F8F3; /* White text color on hover */	
}

.testimonial-section {
  background-image: url("Images/bg_green.jpg");
    background-size: cover;
    background-position: center;
    padding: 50px 0; /* Adjust as needed */
	height: 35vh;
}
.testimonial-section .testimonial-title h2 {
    text-align: center;
    font-family: "PPEditorialNewRegular";
    font-size: 1.8rem;
    color: #F0EADE;
    font-weight: lighter;
}
.slide .testimonial p {
    color: #F0EADE;
    text-align: center;
    font-family: "Helvetica";
    font-style: italic;
    font-weight: normal;
	font-size: 1.1rem;
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-carousel .carousel {
  display: flex;
  overflow: hidden;
}

.testimonial-carousel .slide {
  display: none;
  flex-shrink: 0;
}

.testimonial-carousel .testimonial {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.author {
    padding-top: 50px;
    font-family: "PPEditorialNewItalic";
    color: #F0EADE;
    font-weight: lighter;
    font-size: 1.1rem;
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.bottom-section {
  align-items: center;
}

#back-to-top a img {
    width: 45px;
    opacity: 0.7;
}

.brands-section {
  text-align: center; /* Align the content in the center */
  padding-top: 50px; /* Adjust spacing from the previous section */
  padding-bottom: 50px;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.brandtop,
.brandbottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.brand-logo {
  width: 130px; /* Adjust according to your design */
  height: auto; /* Adjust according to your design */
  margin: 10px 40px; /* Adjust margin spacing */
}
.brands-section {
    background-image: url(Images/bg_white.jpg);
}


@media screen and (max-width: 768px) {
  /* Adjustments for smaller screens */
 .headline h1,
 .headline p,
 .aboutme-content,
 .portfolio-content,
  .testimonial-carousel {
    text-align: center;
 }
.hero-section {
  position: relative;
  height: 87.6vh; /* Adjust as needed */
  background-image: url("Images/homepage1.png"); /* Replace 'background-image.jpg' with your actual image path */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Align headline to the right */
  padding: 0 0px; /* Adjust as needed */
}
 .headline {
    max-width: 100vw;
    justify-content: center;
	height: 87.6vh;
	background-color: rgba(255, 255, 255, 0.7);
 }

  .headline h1 {
    padding: 0;
	margin-top: 145px;
	font-size: 3rem;
  }
	
  .headline p {
    padding: 0;
	font-size: 1rem;
  }
	

  .aboutme-section,
  .portfolio-section,
  .testimonial-section {
    height: auto;
    padding: 30px 0; /* Adjust padding as needed */
  }

  .aboutme-content,
  .portfolio-content {
    flex-direction: column;
    align-items: center;
  }

  .aboutme-text,
  .aboutme-image,
  .portfolio-text,
  .portfolio-carousel,
  .testimonial-carousel {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .aboutme-text {
    margin: 0;
  }

  .aboutme-image img {
    margin: 20px auto; /* Adjust margin as needed */
  }

  .portfolio-carousel,
  .testimonial-carousel {
    margin-top: 20px; /* Adjust margin as needed */
  }

  .nav-btn {
    top: 30%;
  }
}
footer {
  background-color: #1F1F1F;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.middle-section,
.bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 300px;
}

.footer-links-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 300px;
}

.footer-links-left a,
.footer-links-right a {
  color: #B0B2AD;
  font-family: "PPEditorialNewRegular";
  text-decoration: none;
  margin-bottom: 15px;
  text-align: center;
}

.footer-links-left a:hover,
.footer-links-right a:hover {
  color: #FFFFFF;
  text-decoration: none;
  margin-bottom: 15px;
  text-align: center;
}

.footer-logo img {
  display: block;
  margin: 0 auto;
  flex: 0 0 auto;
  width: 120px;
}

.social-media {
  text-align: center;
  flex-grow: 1; /* Ensure the social media section grows to fill available space */
  display: flex;
  justify-content: center; /* Center social media icons horizontally */
}

.social-media img {
  width: 60px;
  margin: 40px 20px 0px;
}


.ig-icon:hover img {
  content: url("Images/icons-03.png"); /* Change image source on hover */
}

.tt-icon:hover img {
  content: url("Images/icons-02.png"); /* Change image source on hover */
}

.fb-icon:hover img {
  content: url("Images/icons-04.png"); /* Change image source on hover */
}


.copyright {
  text-align: center;
  margin-top: 20px;
  flex-grow: 1; /* Ensure the social media section grows to fill available space */
  display: flex;
  justify-content: center; /* Center social media icons horizontally */
  font-family: "Helvetica Light";
  color: #B0B2AD;
  font-size: 13px;
}

.social-media a {
  margin-right: 10px;
}

.back-to-topp {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.bottom-section {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-section  .middle-section,
  .bottom-section {
    flex-direction: row;
    align-items: center;
  }
	
  .middle-section,
  .bottom-section {
    flex-direction: column;
    align-items: center;
  }

  .footer-links-left,
  .footer-links-right {
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-links-left,
  .footer-links-right,
  .footer-logo {
    margin-bottom: 15px;
  }
}