/* ===== 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: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
}


.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-size: 14px;
  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;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background-color: #B8894F;
  transform: translateY(-2px);
  color: #000;
}




/* ===================home2 banner========================= */

/* =============banner================== */

.about-banner {
  position: relative;
  height: 90vh;
  background: url("../img/home2\ banner3.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: "Pacifico", cursive;
  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);
  }
}


/* ===============blog==================== */

/* GALLERY */
.gallery-section {
  padding: 60px;
  background: #000;
}

.gallery-grid {
  display: grid;
grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

/* Masonry sizes */
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  letter-spacing: 3px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.5s;
}

.gallery-item:hover h3 {
  transform: translateY(0);
  opacity: 1;
}

/* Scroll Reveal Active */
.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* POPUP */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.popup .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* ===================== */

.auto-gallery {
  background: #EAE7DE;
  padding: 60px 0;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.auto-gallery:hover .slider-track {
  animation-play-state: paused;
}

.slide {
  position: relative;
  min-width: 320px;
  height: 420px;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Hover zoom */
.slide:hover img {
  transform: scale(1.12);
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
}

.slide:hover .slide-overlay {
  opacity: 1;
}

.slide-overlay h3 {
  color: #fff;
  letter-spacing: 3px;
  font-size: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.5s;
}

.slide:hover h3 {
  transform: translateY(0);
  opacity: 1;
}

/* Auto scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    min-width: 260px;
    height: 340px;
  }
}

/* ==============section222============ */

.menu-section {
  background: #000;
  color: #fff;
  padding: 100px 8%;
  text-align: center;
}

.menu-subtitle {
  letter-spacing: 4px;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
}

.menu-title {
  font-size: 48px;
  margin-bottom: 70px;
  font-weight: 500;
}

/* Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: left;
}

/* Menu Items */
.menu-item {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.menu-item h4 {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.menu-item h4 span {
  color: #999;
}

.menu-item p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

/* Hover Effect */
.menu-item:hover h4 {
  color: #cfa670;
}

/* Reveal Animation */
.menu-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-title {
    font-size: 36px;
  }
}

/* blog after banner================ */
.about-section {
  background: #000;
  padding: 100px 8%;
  color: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.about-tag {
  letter-spacing: 4px;
  font-size: 12px;
  color: #aaa;
  display: inline-block;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 500;
}

.about-content p {
  color: #bbb;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.4s ease;
}

.about-btn:hover {
  background: #fff;
  color: #000;
}

/* IMAGE */
.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  transform: scale(1.1);
  transition: 1s ease;
}

.about-image.show img {
  transform: scale(1);
}

/* ANIMATIONS (INITIAL STATE) */
.animate-left,
.animate-right {
  opacity: 0;
  transition: 0.8s ease;
}

.animate-left {
  transform: translateX(-50px);
}

.animate-right {
  transform: translateX(50px);
}

/* REVEAL */
.animate-left.show,
.animate-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin: 0 auto 40px;
  }
}


/* ============product blog================ */

.coffee-section {
  background: #000;
  padding: 120px 8%;
  color: #fff;
  text-align: center;
}

.coffee-title {
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 80px;
}

/* GRID */
.coffee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* CARD */
.coffee-card {
  background: linear-gradient(180deg, #151515, #0e0e0e);
  padding: 60px 40px 50px;
  border-radius: 8px;
  transition: 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* IMAGE */
.coffee-img {
  overflow: hidden;
}

.coffee-img img {
  max-width: 100%;
  height: 340px;
  object-fit: contain;
  transition: 1s ease;
}

/* TEXT */
.coffee-card h4 {
  margin-top: 30px;
  letter-spacing: 2px;
  font-size: 14px;
}

.price {
  margin: 10px 0 20px;
  font-size: 14px;
  color: #bbb;
}

/* ACTION */
.action {
  font-size: 12px;
  letter-spacing: 3px;
  color: #cfa670;
  opacity: 0;
  transition: 0.5s ease;
}

/* HOVER EFFECT */
.coffee-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.coffee-card:hover img {
  transform: scale(1.08);
}

.coffee-card:hover .action {
  opacity: 1;
}

/* REVEAL */
.coffee-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .coffee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .coffee-grid {
    grid-template-columns: 1fr;
  }

  .coffee-title {
    font-size: 34px;
  }
}


/* ===========blog button============ */



/* ===============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: 'Segoe UI', 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-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;

  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;
}
