/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */

/* Paragraphs, links, buttons, UI text */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: inherit;
  
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* Buttons & CTAs */
button,
input[type="button"],
input[type="submit"],
a.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}





/* ===============home2================= */

/* General Reset */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: Arial, sans-serif;
   

}

.hero-wrapper {
    position: relative;
    background-color: #000;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

/* Background Video Styling */
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%); /* Darkens video for text readability */
}

/* Navbar Styling */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.95);
    margin: 20px 5%;
    border-radius: 12px;
    z-index: 10;
}

.logo-img{
  width:150px;
align-items: center;
}


.logo { font-size: 24px; font-weight: 800; color: #333; }
.logo span { color: #b08d57; }

.menu { list-style: none; display: flex; gap: 25px; }
.menu li a { 
    text-decoration: none; 
    color: #333; 
    font-family: 'Poppins', sans-serif;
  font-weight: 600;
    font-size: 13px;


    letter-spacing: 0.5px;
}

.nav-right { display: flex; align-items: center; gap: 20px; }
.icon-btn { background: none; border: none; cursor: pointer; font-size: 18px; }

.signup-btn {
    background: #b08d57;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
/* ============proper final header============ */

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

/* Dropdown parent */
.menu li {
  position: relative;
}

/* Dropdown box */
.dropdown {
  position: absolute;
  top: 130%;
   list-style: none;
  left: 0;
  background: #12110F;
  min-width: 180px;
  border-radius: 8px;
  opacity: 0;
  visibility: visible;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 999;
}

/* Dropdown links */
.dropdown li a {
  display: block;
  padding: 12px 18px;
  color: #EDE3D9;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
    font-size: 13px;


  text-decoration: none;
}

.dropdown li a:hover {
  background: #C89B63;
  color: #1C1A17;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* ===============underline menu============== */

.menu > li > a {
  position: relative;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #C89B63;
  transition: width 0.3s ease;
}

.menu > li > a:hover::after {
  width: 100%;
}

/* =============dashboard=============== */

.dashboard-btn {
  background-color: #C89B63;
  color: #FFF;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
    font-size: 13px;


  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background-color: #B8894F;
  transform: translateY(-2px);
  color: #000;
}




/* ===================home2 banner========================= */

.about-banner {
  position: relative;
  height: 70vh;
  background: url("../img/About\ page.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay */
.about-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content */
.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Script subtitle */
.subtitle {
   font-family: Arial, sans-serif;
  color: #C89B63;
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

/* Main title */
.banner-content h1 {
   font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 80px;
  letter-spacing: 4px;
  margin: 0;
}

/* Since text */
.since {
  display: inline-block;
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 3px;
  color: #EDE3D9;
}

/* ============animation======================= */

.banner-content {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ====================contact form====================== */

.contact-section {
    padding: 80px 10%;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-desc {
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Form Styling */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    background-color: #f9f7f2; /* Beige tint from screenshot */
    font-style: italic;
    outline: none;
}

.send-btn {
    background-color: #c59d5f; /* Theme gold color */
    color: white;
    padding: 15px 45px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #a6834d;
}

/* Info Grid Styling */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-item .icon {
    color: #c59d5f;
    font-size: 1.2rem;
}

.details h4 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: bold;
}

.details p {
    color: #777;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* ================Map============== */

.map-section {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    background: #e5e3df;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Grayscale Live Map */
.google-map {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(10%) contrast(90%);
    transition: filter 0.5s ease;
    border: none;
}

/* "Wake up" color on hover */
.map-container:hover .google-map {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Transparent overlay for the animation */
.map-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none; /* Allows user to still click the map below */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated Pulse Marker */
.map-marker {
    position: relative;
    width: 40px;
    height: 40px;
}

.pin-head {
    width: 14px;
    height: 14px;
    background: #333; /* Dark theme color */
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 4px solid #c59d5f; /* Gold accent color from your theme */
    border-radius: 50%;
    animation: mapPulse 2s ease-out infinite;
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* ===============footer=================== */

.main-footer {
   background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/footer-img.jpeg');
   
    color: #fff;
    padding: 80px 0 0 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px 60px 20px;
}

.footer-col h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Opening Hours List */
.hours-list { list-style: none; padding: 0; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #888;
}
.hours-list li .closed { color: #c59d5f; }

/* Posts & Links */
.footer-post { margin-bottom: 20px; }
.footer-post a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
}
.post-date { color: #c59d5f; font-size: 0.75rem; }

.contact-link { color: #c59d5f; margin-bottom: 10px; }

/* Newsletter Input */
.footer-newsletter {
    display: flex;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 15px;
}
.footer-newsletter input {
    background: transparent;
    border: none;
    padding: 12px;
    color: #fff;
    width: 100%;
}
.footer-newsletter button {
    background: #c59d5f;
    border: none;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #000;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    transition: 0.3s;
}

.social-icons a:hover { color: #c59d5f; }

/* ========dropdownb dashboard============ */

.dashboard-menu {
  position: relative;
  display: inline-block;
}

.dashboard-btn {
  background: #d4a373;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  min-width: 160px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: none;
  overflow: hidden;
}

.dashboard-dropdown a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.dashboard-dropdown a:hover {
  background: #d4a373;
}

/* SHOW DROPDOWN */
.dashboard-menu:hover .dashboard-dropdown {
  display: block;
}














/* =====================
   MOBILE HEADER FIX
   ===================== */
@media (max-width: 992px) {

  .top-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }

  .logo img {
    max-width: 120px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background-color: #000;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
  }

  /* Hide desktop menu */
  .menu,
  .nav-right {
    display: none;
  }

  /* Mobile Menu */
  .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    border-radius: 0 0 15px 15px;
  }

  .menu li a {
    padding: 14px;
    text-align: center;
  }

  /* Dropdown inside mobile */
  .dropdown {
    position: static;
    background: rgba(0,0,0,0.8);
  }
}



