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

body {
    background-color: #6E463A;
    font-family: 'Caveat', sans-serif;
    color: #F3E5D8;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position:absolute;
    width: 100%;
    top:0;
    left:0;
    z-index: 2;
}

.nav-container {
    margin-left: clamp(25px, 4vw, 50px);
    margin-right: clamp(60px, 12vw, 110px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

  /* Logo */
.logo img {
    width: 110px
}

  /* Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 120px;
}

.nav-links a {
    text-decoration: none;
    color: #e6b89c;
    font-size: 15px;
    position: relative;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #F3E5D8;
}

.nav-links .active::after {
    content: "";
    width: 73px;
    height: 0.2px;
    background: #e6b89c;
    position: absolute;
    bottom:-3px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 60px;
    background: #F3E5D8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: 0.6s ease;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #7c4b3a;  
}

.menu-toggle.hide {
  opacity: 0;
  pointer-events: none;
}
/* ............................ */

/* Contact Hero */
.contact-hero{
    position:relative;
    height:570px;
    background:url("../media/contact hero.jpg");
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

  /* text */
.hero-content{
    position:relative;
    z-index:1;
}

.hero-content h1{
    font-family:"Playfair Display",serif;
    font-size:34px;
    font-weight: 600;
    letter-spacing:4px;
    color:#e3c48e;
    margin-bottom:10px;
}

.hero-content p{
    font-family:"Playfair Display",serif;
    font-size:14px;
    color:#f3e5d8dc;
    letter-spacing:2px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.336);
  z-index: 0;
}
  /* ......................... */

/* Contact Section */
.enquire{
  margin-top: 30px;
  padding:150px 8%;
  text-align:center;
  }
  
  /* Title */
  .enquire-title{
  font-family:"Playfair Display",serif;
  font-size:85px;
  font-weight: 400;
  letter-spacing: 8px;
  color:#E3C48E;
  margin-bottom:10px;
  }
  
  .enquire-sub{
  color:#f3e5d8d8;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom:80px;
  }
  
  /* Box */
  .enquire-box{
    position:relative;
    display:flex;
    justify-content:space-between;
    background:rgba(0, 0, 0, 0.1);
    padding:80px 60px;
    gap:50px;
    min-height:500px;
    }
    
    .enquire-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:35%; 
    height:100%;
    /* background:rgba(0, 0, 0, 0.063); */
    background:linear-gradient(to right, rgba(0, 0, 0, 0.179), transparent);
    z-index:0;
    }
  
  /* Left */
  .enquire-left{
    max-width:350px;
    position:relative;
    padding:50px 40px;
    display:flex;
    flex-direction:column;
    height:100%;
    gap: 20px;
  }
  
  .enquire-left .logo{
    margin-top: -50px;
    width:170px;
    margin-left: 35px;
    margin-bottom: 30px;
  }
  
  .enquire-left h3{
    font-family:"Playfair Display",serif;
    color:#E3C48E;
    font-size:20px;
    letter-spacing:4px;
    line-height:1.8;
    margin-bottom: 10px;
  }
  
  .desc{
    font-size:10px;
    line-height:2;
    letter-spacing:1px;
    margin-bottom:120px;
    color:#f3e5d8da;
    max-width:280px;
  }
  
  .contact{
    margin-top:auto;
    margin-left: 35px;
    color:#f3e5d8d5;
  }
  
  .contact p{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    margin-bottom:12px;
  }
    
    .contact img{
    width:14px;
    height:14px;
    object-fit:contain;
    }
  
  /* Right */
  .enquire-right{
  width:60%;
  margin-top: 70px;
  }

  .enquire-left,
  .enquire-right{
  position:relative;
  z-index:1;
  }
  
  form{
  display:flex;
  flex-direction:column;
  }
  
  /* Inputs */
  input, textarea{
  background:none;
  border:none;
  border-bottom:1px solid #E3C48E;
  padding:10px;
  color:#f3e5d8a9;
  font-family: 'Playfair Display', serif;
  font-size:12px;
  letter-spacing: 2px;
  outline:none;
  }

  input::placeholder,
textarea::placeholder{
color:#f3e5d8c2;
opacity:0.5;
}
  
  textarea{
  height:280px;
  resize:none;
  }
  
  /* Button */
  button{
  margin-top:0px;
  padding:15px;
  background:none;
  border:1px solid #E3C48E;
  color:#f3e5d8da;
  letter-spacing:3px;
  cursor:pointer;
  transition:0.3s;
  }
  
  button:hover{
  background:#E3C48E;
  color: #6E463A;
  }

  .error{
    position: absolute;
    bottom: 30px;
    right: 0;
    font-size: 12px;
    color:#f3c7a6a7;
    letter-spacing: 1px;
  }

  .field{
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 25px;
  }
  /* .......................... */
        /* Footer */
.footer{
    position: relative;
    padding:100px 6%;
    text-align:center;
    margin-top: 150px;
  }
  
  /* overlay */
  .footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.1); 
    z-index:1;
  }
  
  /* content */
  .footer-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;   
    align-items:center;     
    gap: 35px;        
  }
  
  /* logo */
  .footer-logo{
    width:140px;
    opacity:0.9;
  }
  
  /* text */
  .footer-text{
    font-family: 'Michroma', sans-serif;
    font-size:18px;
    color:#E3C48E;
    letter-spacing:1.5px;
  }
  
  /* social */
  .footer-social{
    margin:0;
  }
  
  .footer-social ul{
    list-style: none;     
    display: flex;          
    justify-content: center; 
    gap:12px;             
    padding:0;
    margin:0;
  }
  
  .footer-social li{
    display: inline-block;
  }
  
  .footer-social a{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer-social img{
    width:18px;
    cursor:pointer;
    transition:0.3s;
  }
  
  .footer-social img:hover{
    transform:scale(1.2);
  }
  
  /* copyright */
  .copyright{
    font-size:11px;
    color:#E3C48E;
    opacity:0.7;
    letter-spacing: 1.2px;
  }

/* Responsive */
@media (max-width: 992px) {

.nav-container {
        margin-right: clamp(60px, 12vw, 70px);
    }

.nav-links {
    gap: 65px;
    }

.logo img {
    width: 90px;
    }

    .enquire{
      padding:100px 5%;
    }
  
    .enquire-title{
      font-size:60px;
    }
  
    .enquire-box{
      padding:60px 40px;
      gap:30px;
    }
  
    .enquire-left{
      max-width:300px;
      padding:30px;
    }
  
    .enquire-right{
      width:55%;
      margin-top:40px;
    }
  
    .error{
      margin-left: 0;
    }     

    .footer{
      padding:90px 40px;
      margin-top:120px;
    }
              
    .footer-logo{
      width:120px;
    }
              
    .footer-text{
      font-size:16px;
    }
              
    .footer-content{
      gap:30px;
    }

}  


@media (max-width: 768px) {

.menu-toggle {
    display: flex;
    position: absolute;
        right: clamp(20px, 6vw, 40px); 
        top: 50%;
        transform: translateY(-50%);
    z-index: 5;
    }

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 220px;
    background: #7c4b3a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.4s ease;
    }

.nav-links.active {
    right: 0;
    }

.contact-hero{
    height:620px;
    }

.hero-content h1{
    font-size:20px;
    letter-spacing:4px;
    }

.hero-content p{
    font-size:10px;
    }
    
    .enquire-title{
      font-size:45px;
      letter-spacing:5px;
    }
  
    .enquire-sub{
      margin-bottom:50px;
    }
  
    .enquire-box{
      flex-direction:column;
      padding:50px 30px;
    }
  
    .enquire-box::before{
      display:none;
    }
  
    .enquire-left,
    .enquire-right{
      width:100%;
    }
  
    .enquire-left{
      align-items:center;
      text-align:center;
      max-width:100%;
    }
  
    .enquire-left .logo{
      margin:0;
      width:140px;
    }
  
    .desc{
      margin-bottom:40px;
      max-width:100%;
    }
  
    .contact{
      margin:0;
      color:#f3e5d8d5;
    }
    
    .contact p{
      display:inline-flex;
      gap:8px;
      font-size:8px;
    }
  
    .contact p img{
      width: 7px;
    }
  
    .enquire-right{
      margin-top:20px;
    }
  
    .error{
      margin:0;
      text-align:left;
    }

    .footer{
      padding:80px 30px;
      margin-top:100px;
    }
              
    .footer-logo{
      width:100px;
    }
              
    .footer-text{
      font-size:15px;
      letter-spacing:1.2px;
    }
              
    .footer-social ul{
      gap:8px;
    }
              
    .footer-social img{
      width:16px;
    }
              
    .footer-content{
      gap:26px;
    }     
}


@media (max-width:480px){
  .enquire{
    padding:80px 20px;
  }

  .enquire-title{
    font-size:32px;
    letter-spacing:3px;
  }

  .enquire-sub{
    font-size:11px;
  }

  .enquire-box{
    padding:40px 20px;
  }

  .enquire-left h3{
    font-size:16px;
  }

  .desc{
    font-size:11px;
    line-height:1.8;
  }

  .contact{
    color:#f3e5d8d5;
  }
  
  .contact p{
    display:inline-flex;
    gap:8px;
    font-size:8px;
  }

  .contact p img{
    width: 7px;
  }

  input, textarea{
    font-size:11px;
  }

  textarea{
    height:180px;
  }

  button{
    padding:12px;
    font-size:12px;
  }


  .footer{
    padding:70px 20px;
    margin-top:80px;
  }
              
  .footer-logo{
    width:85px;
  }
              
  .footer-text{
    font-size:13px;
    letter-spacing:1px;
  }
              
  .footer-social ul{
    gap:8px;
  }
              
  .footer-social img{
    width:14px;
  }
              
  .footer-content{
    gap:22px;
  }
              
  .copyright{
    font-size:10px;
  }
}

/* Mobile Full Screen Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.953), #6e463a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
  transition: 
      opacity 0.4s ease,
      transform 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 30px;
  font-size: 45px;
  color: #e6b89cdb;
  cursor: pointer;
}

.menu-titlee,
.menu-image,
.mobile-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.menu-titlee {
  color: #DAA07E;
  font-family: 'Michroma', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 40px;
}

.imge-frame {
  width: 180px;
  border: none;
  padding: 0;
  border-radius: 100px 100px 0 0;
  position: relative; 
  overflow: hidden; 
  margin-bottom: 30px;
}

.imge-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit; 
  display: block;
}

.imge-frame::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  right:8px;
  bottom: 8px;
  border: 1px solid #c89a7b; 
  border-radius: 100px 100px 0 0; 
  z-index: 1;
}

.mobile-links {
  list-style: none;
  text-align: center;
}

.mobile-links li {
  margin: 15px 0;
}

.mobile-links a {
  text-decoration: none;
  color: #e6b89c;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.mobile-links a:hover {
  color: #F3E5D8;
}
    
.mobile-menu.active .menu-titlee {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.mobile-menu.active .menu-image {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.mobile-menu.active .mobile-links li:nth-child(1) {
  transition-delay: 0.6s;
}
.mobile-menu.active .mobile-links li:nth-child(2) {
  transition-delay: 0.7s;
}
.mobile-menu.active .mobile-links li:nth-child(3) {
  transition-delay: 0.8s;
}

.mobile-menu.active .mobile-links li {
  opacity: 1;
  transform: translateY(0);
}
  /* ......................... */