/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

:root {
  --primary-brown: #ab8965;
  --light-brown: #A68B5B;
  --dark-text: #181818;
  --beige: #F5F1EB;
  --white: #FFFFFF;
  --boder-color: #FFFFFF40;
  --dark-meta: #606060;
}

/* Import header styles from new.css */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  color: #fff;
  transition: all 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #000000 0%, #00000000 100%);
  z-index: -1;
}

.site-header.header-solid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #181818;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.site-header.header-solid .top-bar {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

/* Top Bar */
.site-header .top-bar {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid var(--boder-color);
  padding: 10px 0;
  background: transparent;
  transition: all 0.8s ease;
  height: 55px;
  display: flex;
  justify-content: space-between;
}

.site-header .top-left {
  margin-left: 55px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header .top-left span {
  font-size: 16px;
}

.site-header .top-left i {
  color: var(--white);
  font-size: 16px;
  position: relative;
  margin-right: 10px;
}

.site-header .top-right {
  display: flex;
  align-items: center;
  margin-right: 55px;
  gap: 20px;
}

.site-header .top-right a {
  color: #fff;
  font-size: 15px;
  transition: color 0.3s ease;
}

/* Navigation */
.navbar {
  background-color: transparent;
  padding: 0 15px;
  position: relative;
  z-index: 5;
  height: 75px;
  display: flex;
  justify-content: center;
}

.container-fluid {
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  padding: 0 45px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  flex-direction: row;
}

.navbar .nav-link {
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar .nav-link.active {
  color: var(--primary-brown);
}

.navbar .nav-link:hover {
  color: var(--primary-brown);
}

.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.logo-header {
  display: flex;
  margin-top: 5px;
}

.logo-header img {
  width: 35px;
  height: 35px;
  margin-top: 5px;
}

.logo-header span {
  font-size: 30px;
  font-weight: 400;
  margin-left: 12px;
}

.btn-reservation {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
}

.btn-reservation:hover {
  text-decoration: none;
  background-color: var(--primary-brown);
  border-color: var(--primary-brown);
  color: var(--white);
}

.menu-toggle,
.close-menu {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-item i {
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.6;
  transition: transform 0.3s ease;
}

.nav-item:hover i {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-item .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #181a1b;
  border: none;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: all 0.25s ease;
  min-width: 180px;
  z-index: 1000;
}

.nav-item:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(18px);
  transition: opacity 0.3s, transform 0.3s ease;
}

.dropdown-menu .dropdown-item {
  color: #e0e0e0;
  padding: 10px 18px;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #2c2f30;
  color: #fff;
}

/* Dine Dropdown */
.dine-dropdown {
  position: static;
}

.dine-menu {
  display: flex;
  justify-content: center;
  gap: 30px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #16181a;
  border: none;
  border-radius: 0;
  padding: 25px 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dine-dropdown:hover .dine-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dine-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dine-item img {
  width: 100%;
  max-width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dine-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.dine-item span {
  margin-top: 10px;
  color: var(--white);
  font-weight: 500;
  font-size: 24px;
}

/* ============================================
   CONTACT HERO SECTION
   ============================================ */

.contact-hero-section {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
}

.contact-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--white);
}

.contact-breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-breadcrumbs a:hover {
  color: var(--primary-brown);
}

.breadcrumb-separator {
  margin: 0 5px;
  opacity: 0.7;
}

.breadcrumb-current {
  opacity: 0.8;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
  background: #fff;
  padding: 100px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.contact-form-col {

  display: flex;
  align-items: center;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.contact-title-line {
  display: block;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  margin-bottom: 20px;
}

.form-group-half {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-control-contact {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  color: var(--dark-text);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control-contact:focus {
  outline: none;
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 2px rgba(171, 137, 101, 0.1);
}

.form-control-contact::placeholder {
  color: #999;
}

.textarea-contact {
  resize: vertical;
  min-height: 150px;
  font-family: 'Inter', sans-serif;
}

.btn-submit-contact {
  width: 100%;
  padding: 18px 30px;
  background-color: var(--primary-brown);
  color: var(--white);
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-top: 10px;
}

.btn-submit-contact:hover {
  background-color: var(--light-brown);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(171, 137, 101, 0.3);
}

.contact-image-col {
  padding: 0;
  display: flex;
  width:100%;
  height:100%;
}

.contact-image-wrapper {
  width:100%;
  height:100%;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   MAP SECTION
   ============================================ */
/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-brown);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--light-brown);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .site-header .top-bar {
    justify-content: center;
  }

  .site-header .top-left {
    display: none;
  }

  .site-header .top-right {
    justify-content: center;
    margin-right: 0;
    gap: 15px;
  }

  .site-header .top-bar {
    height: auto;
    padding: 8px 0;
  }

  .navbar {
    height: 65px;
  }

  .menu-toggle,
  .close-menu {
    display: block;
  }

  .menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 10;
    overflow-y: auto;
  }

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

  .navbar-nav .nav-item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--dark-text);
    font-size: 24px;
    cursor: pointer;
  }

  .navbar .nav-link {
    color: var(--dark-text);
  }

  .contact-hero-title {
    font-size: 48px;
  }

  .contact-form-title {
    font-size: 36px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    height: 50vh;
    min-height: 400px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-form-section {
    padding: 60px 0;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-form-col {
    padding: 40px 20px;
  }

  .contact-image-col {
    order: -1;
  }

  .contact-image-wrapper {
    min-height: 400px;
  }

  .contact-form-title {
    font-size: 28px;
  }



  .contact-map-section {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 28px;
  }

  .contact-form-title {
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   CONTACT FORM ANIMATIONS & EFFECTS
   ============================================ */

/* Form wrapper fade in animation */
.contact-form-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Title animation */
.contact-form-title {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-title-line {
  display: inline-block;
  animation: slideInWord 0.6s ease-out both;
}

.contact-title-line:nth-child(1) {
  animation-delay: 0.3s;
}

.contact-title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-title-line:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes slideInWord {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input field effects */
.contact-input {
  position: relative;
  margin-bottom: 20px;
}

.contact-input .form-control {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  color: var(--dark-text);
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
}

.contact-input .form-control:hover {
  border-color: var(--primary-brown);
  box-shadow: 0 2px 8px rgba(171, 137, 101, 0.1);
}

.contact-input .form-control:focus {
  outline: none;
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 3px rgba(171, 137, 101, 0.15);
  transform: translateY(-2px);
}

.contact-input .form-control::placeholder {
  color: #999;
  transition: color 0.3s ease;
}

.contact-input .form-control:focus::placeholder {
  color: #bbb;
}

/* Floating label effect */
.contact-input {
  position: relative;
}

.contact-input .form-control:focus + label,
.contact-input .form-control:not(:placeholder-shown) + label {
  transform: translateY(-25px) scale(0.85);
  color: var(--primary-brown);
}

/* Input animation on load */
.contact-input {
  animation: fadeInUp 0.6s ease-out both;
}

.contact-input:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-input:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-input:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-input:nth-child(4) {
  animation-delay: 0.4s;
}

.contact-input:nth-child(5) {
  animation-delay: 0.5s;
}

.contact-input:nth-child(6) {
  animation-delay: 0.6s;
}

/* Textarea specific effects */
.contact-input textarea.form-control {
  resize: vertical;
  min-height: 150px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.contact-input textarea.form-control:focus {
  min-height: 180px;
}

/* Button effects */
.contact-form .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.contact-form .btn-primary {
  background-color: var(--primary-brown);
  border-color: var(--primary-brown);
  color: var(--white);
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.contact-form .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(171, 137, 101, 0.4);
  background-color: var(--light-brown);
}

.contact-form .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(171, 137, 101, 0.3);
}

.contact-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-form .btn-secondary {
  background-color: transparent;
  border: 2px solid #e0e0e0;
  color: var(--dark-text);
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-secondary:hover {
  border-color: var(--primary-brown);
  color: var(--primary-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Image wrapper effects */
.contact-image-wrapper {
  position: relative;
  overflow: hidden;
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(171, 137, 101, 0.1) 0%, rgba(171, 137, 101, 0) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.contact-image-wrapper:hover::before {
  opacity: 0;
}

.contact-image-wrapper img {
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(1);
}

.contact-image-wrapper:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Invalid feedback animation */
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 8px;
  font-size: 14px;
  color: #dc3545;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

.form-control.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-control.is-invalid {
  border-color: #dc3545;
  animation: shake 0.5s ease;
}

/* Success state */
.form-control.is-valid {
  border-color: #28a745;
}

/* Loading state for submit button */
.contact-form .btn-primary.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.contact-form .btn-primary.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form row stagger animation */
.form-row {
  animation: fadeInUp 0.6s ease-out both;
}

.form-row:nth-child(1) {
  animation-delay: 0.1s;
}

.form-row:nth-child(2) {
  animation-delay: 0.2s;
}

.form-row:nth-child(3) {
  animation-delay: 0.3s;
}

/* Hero section effects */
.hero-section {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-content-title {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
  position: relative;
  display: inline-block;
}


@keyframes expandLine {
  to {
    width: 100%;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-form-title,
  .contact-image-wrapper {
    animation-duration: 0.5s;
  }
  
  .contact-image-wrapper:hover img {
    transform: scale(1.05);
  }
}

