/* ===== 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;
}





/* ============proper final header============ */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-wrapper {
   position: relative;
    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;
}

.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;
    font-size: 13px;


  transition: all 0.3s ease;
}

.dashboard-btn:hover {
  background-color: #B8894F;
  transform: translateY(-2px);
  color: #000;
}

/* =============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: "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);
  }
}


/* ============image======================== */

.about-section {
  position: relative;
  padding: 120px 8%;
  background-color: #000;
 
  overflow: hidden;
}

/* Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

/* Layout */
.about-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */
.about-image {
  position: relative;
  animation: imageFade 1.4s ease forwards;
}

.about-image h2 {
  position: absolute;
  top: -100px;
  left: 0;
  font-size: 64px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 3px;
  animation: titleDrop 1s ease forwards;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* RIGHT CONTENT */
.about-content {
  color: #EDE3D9;
}


/* Intro line */
.intro-line {
  width: 60px;
  height: 2px;
  background: #C89B63;
  display: inline-block;
  margin-bottom: 10px;
}

/* Intro title */
.intro-title {
  color: #C89B63;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 25px;
  animation: fadeIn 1.2s ease forwards;
}

/* Paragraph animation */
.slide-text {
  opacity: 0;
  transform: translateX(60px);
  animation: slideRight 1.2s ease forwards;
}

.slide-text.delay {
  animation-delay: 0.4s;
}

/* Spacing */
.about-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* ANIMATIONS */
@keyframes imageFade {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes titleDrop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-image h2 {
    position: static;
    margin-bottom: 20px;
  }
}


/* ===============founder=================== */

.founder-section {
  position: relative;
  padding: 120px 8%;
  background: url("../img/barista-making-calita-drip-brew-coffee-6YS7MED.jpeg page.jpeg") center/cover no-repeat;
  overflow: hidden;
}

/* Overlay */
.founder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

/* Layout */
.founder-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.founder-content {
  color: #EDE3D9;
}

.line {
  width: 60px;
  height: 2px;
  background: #C89B63;
  display: inline-block;
  margin-bottom: 12px;
}

.founder-subtitle {
  color: #C89B63;
  letter-spacing: 3px;
  font-size: 18px;
  margin-bottom: 25px;
  animation: fadeDown 1.2s ease forwards;
}

/* Paragraph animation */
.founder-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(60px);
  animation: slideRight 1.2s ease forwards;
}

.founder-text.delay {
  animation-delay: 0.4s;
}

/* RIGHT IMAGE */
.founder-image {
  position: relative;
  animation: imageZoom 1.4s ease forwards;
}

.founder-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* Overlay text on image */

.image-title {
  position: absolute;
  bottom: -40px;
  left: 30px;
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* ANIMATIONS */
@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageZoom {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .founder-container {
    grid-template-columns: 1fr;
  }

  .image-title {
    position: static;
    margin-top: 20px;
    font-size: 42px;
  }
}


/* ================menu======================= */

body {
  background: #000;
  font-family: 'Poppins', sans-serif;
}

/* SECTION */
.menus {
  padding: 90px 6%;
}


/* TITLE */
.menus-title {
  color: #c7a36a;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 70px;
}

/* GRID */
.menus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.menu-card {
  position: relative;
  height: 430px;
  overflow: hidden;
}

/* IMAGE */
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* BORDER */
.menu-border {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.8);
  z-index: 2;
}

/* CONTENT (HIDDEN BY DEFAULT) */
.menu-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -100%;
  background: rgba(0,0,0,0.65);
  padding: 30px;
  color: #fff;
  z-index: 3;
  transition: bottom 0.6s ease;
}

.menu-content.center {
  text-align: center;
}


/* /icon//// */

.menu-content i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #fff;
}



/* TEXT */
.menu-content h3 {
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.menu-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* HOVER EFFECT */
.menu-card:hover img {
  transform: scale(1.12);
}

.menu-card:hover .menu-content {
  bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menus-grid {
    grid-template-columns: 1fr;
  }
}

/* =============history================== */

* {
  margin: 0;
  padding: 0;
 
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: 'Poppins', sans-serif;
}

/* SECTION */
.history-section {
  padding: 80px 0;
}

/* CONTAINER */
.history-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.history-content {
  padding: 80px 70px;
  color: #fff;
  animation: slideLeft 1.2s ease forwards;
}

.history-title {
  font-size: 42px;
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.history-text {
  color: #ccc;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 35px;
}

.history-sign {
  font-family: 'Pacifico', cursive;
  font-size: 26px;
  color: #fff;
  opacity: 0.9;
}

/* RIGHT IMAGE */
.history-image {
  position: relative;
  animation: slideRight 1.2s ease forwards;
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.history-badge {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #0b4f5a;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  border: 3px dashed rgba(255,255,255,0.6);
  animation: float 3s ease-in-out infinite;
}

.history-badge .small {
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
}

.history-badge h3 {
  font-size: 42px;
  margin-top: 5px;
}

/* ANIMATIONS */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .history-container {
    grid-template-columns: 1fr;
  }

  .history-badge {
    top: 20px;
  }
}


/* ==============footer======== */

body {
  background: #000;
  font-family: 'Poppins', sans-serif;
}

/* MAIN SECTION */
.footer-info {
  padding: 80px 6% 40px;
  color: #fff;
}

/* BOX */
.footer-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.2);
  animation: fadeUp 1.2s ease;
}

/* ITEM */
.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 35px;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.4s ease;
}

.info-item:last-child {
  border-right: none;
}

/* ICON */
.info-item i {
  font-size: 36px;
  color: #c7a36a;
  transition: transform 0.4s ease, color 0.4s ease;
}

/* TEXT */
.info-text h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-text p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}

/* SOCIAL */
.social {
  justify-content: center;
}

.social a {
  margin: 0 12px;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* HOVER EFFECTS */
.info-item:hover {
  background: rgba(255,255,255,0.03);
}

.info-item:hover i {
  transform: scale(1.2) rotate(-5deg);
  color: #fff;
}

.social a:hover {
  color: #c7a36a;
  transform: translateY(-4px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  letter-spacing: 2px;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 30px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-box {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .info-item:last-child {
    border-bottom: none;
  }
}


/* ===============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-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;
}

/* ========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;
}
