@font-face {
  font-family: "Athelas";
  src: url("../fonts/Athelas-Regular.ttf");
}

@font-face {
  font-family: "Athelas-Italic";
  src: url("../fonts/Athelas-Italic.ttf");
}

@font-face {
  font-family: "Gotham-Light";
  src: url("../fonts/Gotham-Light.otf");
}

@font-face {
  font-family: "Sanford";
  src: url("../fonts/Sanford-0103_demo.ttf");
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Athelas";
  background: #fff;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-family: "Athelas";
}

/* Header */

.header_box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #eee;
  z-index: 999;
  position: fixed;
  top: 0;
  background-color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 25px;
  background: white;
  max-width: 1600px;
  margin: 0 auto;
  height: 60px;
  z-index: 999;

}

.logo {
  font-size: 20px;
  font-weight: bold;
  /* color: #000; */
}

.logo a {
  text-decoration: none;
  color: #474646;
  font-family: "sanford";
  font-size: 36px;
}

.hamburger {
  cursor: pointer;
  color: #474646;
  transition: transform 0.3s ease;
  user-select: none;
  position: relative;
  z-index: 1000;
}

.hamburger .line {
  width: 30px;
  height: 2px;
  background: #7a7a7a;
  margin: 5px;
  transition: all 0.5s ease;
}

.hamburger.active .line {
  margin: -2px;

}

.hamburger.active .line:nth-child(2) {
  display: none;
}

.hamburger.active .line:nth-child(1) {
  transform: rotate(-45deg);
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(45deg);
}

/* Menu */
.menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 270px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 110px 25px;
  transition: left 0.3s ease;
  z-index: 99;
  overflow-y: auto;
}

.menu.active {
  left: 0;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  margin-bottom: 15px;
  position: relative;
}

.menu ul li a {
    text-decoration: none;
    color: #474646;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Gotham-Light";
    line-height: 1.3;
}

.menu ul li a:hover {
  color: #9a5c2d;
}

/* Submenu arrow */
.submenu-toggle {
  position: relative;
}

.submenu-toggle::after {
  content: "\f0dd";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  transition: transform 0.3s ease;
  position: absolute;
  top: 26%;
  right: 10px;
  transform: translateY(-50%);
}

.submenu-toggle.open::after {
  transform: rotate(-180deg);
}

.has-submenu ul {
  padding: 12px 10px 10px 10px;
}

.has-submenu ul li {
  margin-bottom: 10px;
}

.has-submenu ul li a {
  font-size: 15px;
  line-height: 1.3;
}

/* Submenu */
.submenu {
  display: none;
  margin-top: 8px;
  margin-left: 15px;
  padding-left: 10px;
}

.submenu.show {
  display: block;
}

.submenu li a {
  font-size: 15px;
  color: #474646;
}

.menu ul li a:hover {
  color: #9a5c2d;
}


.portfolio_banner {
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #a52a2a1a; */
}

.portfolio_banner video {
    width: 100%;
    height: calc(100vh - 60px);
}


.portfolio-title {
  margin-top: 60px;
  text-align: center;
  padding: 100px 30px 0;
}

.portfolio-title h1 {
    font-size: 30px;
    margin-bottom: 0;
    color: #474646;
    line-height: 1.3;
    font-family: 'Gotham-Light';
}
.portfolio-title p {
    font-size: 20px;
    max-width: 889px;
    margin: 15px auto 0 auto;
    line-height: 1.4;
    /* font-family: 'Gotham-Light'; */
}

.portfolio-gallery {

  padding: 30px 50px 100px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.portfolio-gallery a{
text-decoration: none;
}

.single-photo-box {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hover_text {
    position: relative;
    color: #474646;
    text-transform: uppercase;
    font-size: 16px;
    transition: opacity 1s ease;   
    margin-top: 8px;
    font-family: 'Gotham-Light';
}


.single-photo-box.appear {
  opacity: 1;
  transform: translateY(0);
}

/* .single-photo-box::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    inset: 0;
    background-color: #808080a1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.single-photo-box:hover::after {  
    opacity: 1;
} */
.single-photo-box img {
  width: 100%;
  display: block;
}

/* about us  */

.profile-section {
  margin: 60px auto;
  color: #474646;
  padding: 40px 50px 0;
}

.profile-top {
    display: grid;
    align-items: center;
    gap: 30px;
    grid-template-columns: 1.5fr 1fr;
}

.profile-image {
  padding: 40px;
  transition: all 0.3s ease;
}

.profile-image:hover {
  transform: translateY(-10px);
}

.profile-image img {
  width: 100%;
  border: 1px solid #ccc;
}

.profile-quote p {
    font-size: 30px;
    line-height: 1.4;
    color: #474646;
    font-family: "Athelas-italic";
    margin-top: 20px;
    text-align: center;
}

.profile-description {
  padding: 0 30px;
}

.profile-description p {
    margin-top: 25px;
    font-size: 30px;
    text-align: justify;
    font-family: "Athelas";
}


/* contact css */


.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 60px 0;
  gap: 60px;
}

/* LEFT INFO */
.contact-info {
  flex: 1;
}

.contact-info h4 {
    color: #9a5c2d;
    letter-spacing: 2px;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Gotham-Light';
}

.contact-info p {
    font-size: 17px;
    margin: 10px 0;
    color: #474646;
    line-height: 1.7;
    font-family: 'Gotham-Light';
}

/* RIGHT FORM */
.contact-form {
  flex: 1;
}

.contact-form h4 {
    color: #9a5c2d;
    letter-spacing: 2px;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Gotham-Light';
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #aaa;
    padding: 10px 5px;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #474646;
    font-family: 'Gotham-Light';
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #9a5c2d;
}

.submit-btn {
    align-self: flex-start;
    padding: 8px 40px;
    border: 1px solid #aaa;
    background: transparent;
    color: #474646;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
  background: #9a5c2d;
  border-color: #9a5c2d;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}



@media(max-width:1600px) {

/* .profile-quote p {
    font-size: 38px; 
} */
}
@media(max-width:1366px) {
  .profile-quote p {
    font-size: 25px;
  }

  .profile-description p {
    font-size: 25px;
  }
   .profile-top {
    grid-template-columns: 1.2fr 1fr;
}

  .logo a {
    font-size: 34px;
  }
}

@media(max-width:1024px) {
  .profile-quote p {
    font-size: 27px;
  }

  .profile-description p {
    font-size: 25px;
  }
  .profile-top {
    grid-template-columns: 1fr 1fr;
}
}

@media(max-width:991px) {
  .portfolio-gallery {
    grid-template-columns: 1fr 1fr;
    padding: 30px 30px 100px 30px;
    gap: 25px;
  }
  .profile-section {
    padding: 40px 35px 0;
}
.profile-quote p {
    font-size: 20px;
}
}

@media(max-width:767px) {
  .profile-image {
    padding: 0px;
  }
  .portfolio-title h1 {
    font-size: 24px; 
}

  .profile-description {
    padding: 0 0px;
  }

  .profile-quote p {
    font-size: 16px;
  }

  .profile-description p {
    font-size: 16px;
  }
}

@media(max-width:575px) {
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }
  .profile-top {
    gap: 0;
    grid-template-columns: 1fr;
}
.logo a {
    font-size: 19px;
}
.contact-section {
    padding: 80px 30px;
}
.contact-form {
    width: 100%;
}
.contact-info p {
    font-size: 15px;
}

}