@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@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 {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-image: url("Images/bg_white.jpg")
}
/* 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;
}


@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;
    }
}

/* Page  Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.title {
  text-align: center;
}
.title h1 {
	font-family: "PPEditorialOldUltraBold";
	font-size: 50px;
	padding: 50px 0px 30px;
	color: #53533B;
}
.title .p1 {
	font-family: "PPEditorialNewItalic";
	font-size: 22px;
	padding: 0px 0px 10px;
	color: #53533B;
}
.title .p2 {
    font-family: "Mulish";
    font-style: italic;
    font-size: 15px;
    padding: 15px 0px;
    color: #53533B;
    text-align: center;
    width: 50vw;
    margin: auto; /* Center the element horizontally */
}


*{
  box-sizing: border-box;
  margin:0;
  padding:0;
}


.modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: rgba(0,0,0,0.9);
  z-index:-1;
  display:flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.modal.active{
  opacity:1;
  z-index:100;
}
.modal .btn{
  position: absolute;
  top:20px;
  right:20px;
  color:#fff;
  background-color: transparent;
  border:0;
  font-size: 25px;
  cursor: pointer;
}
.main{
  margin-top:30px;
}
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto; /* Center the grid horizontally */
  max-width: 900px; /* Optional: Set a maximum width for the grid */
}


.grid img{
    width: 300px;
    height: 300px; /* Set the same width and height for a uniform square */
    object-fit: cover; /* Maintain aspect ratio and crop if necessary */
    cursor: pointer;
    border-radius: 15px;
    transition: opacity 0.5s ease-in-out;
    -webkit-box-shadow: 10px 10px 8px 5px rgba(30,30,30,0.51);
    box-shadow: 5px 5px 5px 3px rgba(30,30,30,0.51);
}


.grid img:hover{
  opacity:0.8;
  transform: scale(1.02); /* Increase the size on hover */
}

.instagram-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.insta .p3 {
	font-family: "PPEditorialNewItalic";
	font-size: 12px;
	padding: 0px 0px 10px;
	color: #53533B;	
}
.insta img {
	height: 50px;
	width: auto;
}
.insta {
    text-align: center;
	display: flex;
	margin: 30px 0px 10px 0px;
    justify-content: center;
    margin-top: 20px;
}
.instamessage {
    text-align: center;
    display: flex;
    margin: 0px 0px 20px 0px;
    justify-content: center;
    margin-top: 10px;
    height: 50px;
    width: auto;
    font-family: "PPEditorialNewItalic";
    font-size: 15px;
    color: #53533B;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 10px; /* Adjust padding for smaller screens */
  }
  
  .title h1 {
    font-size: 40px; /* Reduce font size for smaller screens */
    padding: 130px 0px 0px; /* Adjust padding for smaller screens */
  }
  
  .title .p1 {
    font-size: 18px; /* Reduce font size for smaller screens */
    padding: 15px 0px 10px; /* Adjust padding for smaller screens */
  }
  
  .title .p2 {
    width: 70vw; /* Adjust width for smaller screens */
  }
  
  .grid {
    grid-template-columns: repeat(3, 1fr); /* Keep the 3 by 3 grid */
    gap: 10px; /* Adjust gap for smaller screens */
    max-width: 600px; /* Adjust max-width for smaller screens */
	padding-left: 5px;
	padding-right: 5px;
  }
  
  .grid img {
    width: 100%; /* Set width to 100% */
    height: 100%; /* Set height to 100% */
    object-fit: cover; /* Ensure images fill their containers without distortion */
  }
}

/* Footer Styles */
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;
  }
}
