    /* Common style for all titles */
    h1, h2, h3, h4, h5, h6 {
      font-family:'Federo', sans-serif; /* Change font here */
      font-size: 42px; /* Change size here */
      margin: 0.5em 0; /* Spacing above and below */
      font-weight: normal;
      
    }

    /* Optional: responsive scaling */
    @media (max-width: 768px) {
      h1, h2, h3, h4, h5, h6 {
        font-size: 24px; /* Smaller on mobile */
        font-family:'Federo', sans-serif;
      }
    }
    
    
    
    
    
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat;
}

/* ===== TOP BAR ===== */
.top-bar {
  width: 100%;
  color: #ECE0D1;
  font-size: 14px;
  background-color: rgba(60,47,47,0.95);
}

/* 🔥 THIS IS THE KEY FIX */
.top-bar-container {
  max-width: 1200px;   /* keep original width */
  margin: 0 auto;
  padding: 12px 24px;   /* 👈 reduced from 40px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Left side */
.top-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-item i {
  font-size: 14px;
}

.top-item a {
  color: #ECE0D1;
  text-decoration: none;
}

/* Right side */
.top-right i {
  font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .top-bar-container {
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ===== HIDE TOP BAR ON MOBILE ONLY ===== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}





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

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  min-height: 100vh;
}

/* ================= NAVBAR WRAPPER ================= */
.navbar-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.35s ease; /* ✅ smooth move */
  background: none;
  color: #ECE0D1;
  
}

/* ================= NAVBAR ================= */
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 12px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 👈 stop pushing menu far right */
  gap: 100px;                   /* 👈 space between logo & menu */
}

/* ===== Logo ===== */
.logo img {
  height: 70px;
}

/* ===== Menu ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #ECE0D1;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}
.nav-menu a:hover, a.active {
  color: white;
}

/* ===== Underline Animation ===== */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
  }

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

  .nav-menu a {
    font-size: 18px;
  }
}

/* ================= DESKTOP OFFSET ================= */
@media (min-width: 992px) {
  .navbar-wrapper {
    top: 42px;     /* ✅ moves navbar down ONLY desktop/laptop */
  }
}

@media (max-width: 991px) {
  .hamburger {
    order: 1;           /* ensure it's at the end */
    position: fixed;    /* stick to corner */
    top: 42px;          /* adjust vertical position */
    right: 20px;        /* right corner */
    z-index: 1100;      /* above menu */
  }
}








* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}



.footer {
/*    background: radial-gradient(circle at top, #2a1e1a, #000); */
    /* background-color: #100B0F;
    color: rgba(236,224,209,0.6); */
    position: relative;
    background: #100B0F;
    color: #948A83;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 10px;
}

.tagline {
    color: #e89b3a;
    margin-bottom: 20px;
    font-size: 0.87rem;
}

.footer-col h4 {
    color: #f5f5f5;
    margin-bottom: 15px;
    font-size: 1.5rem; 
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
}
.footer-col a{
  text-decoration: none;
}
.footer-col a:visited {
  color: #948A83;
}
.footer-col a:hover{
  color: #f5f5f5;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.phone {
    color: #ECE0D1;
}
.footer-col .highlight {
  color: #ECE0D1;
}

.footer-col i {
    color: #7ac943;
    margin-right: 8px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons i {
    margin-right: 15px;
    font-size: 18px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
}

.footer-bottom .links {
    margin: 8px 0;
}

.footer-bottom .powered span {
    color: #4fc3f7;
}

.coffee-beans img {
    width: 100%;
    display: block;
        margin-top: -80px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        width: 150px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 100px; /* 👈 left & right movement */
    font-size: 0.75rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


.footer-bottom p {
    margin: 0;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.footer-bottom p:first-child {
    margin-left: 120px;
}

.footer-bottom p:last-child {
    margin-right: 150px;
}



/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: center; /* center text in tablet */
    }

    .footer-col {
        justify-content: center; /* center the content in each column */
        align-items: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center; /* center everything in mobile */
    }

    .footer-logo {
        width: 150px;
        margin: auto; /* center logo */
    }

    .footer-col ul {
        padding: 0;
    }
}

/* Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center; /* center bottom links */
        gap: 10px;
    }

    .footer-bottom p:first-child,
    .footer-bottom p:last-child {
        margin: 0; /* remove large left/right margins */
    }
}
/* Footer Bottom - Full width like footer */
/* Footer Bottom - Full width like footer */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    font-size: 0.75rem;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    
    /* Add these lines */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Remove extra margins on footer-bottom paragraphs */
.footer-bottom p:first-child,
.footer-bottom p:last-child {
    margin: 0;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}
/* Coffee Beans Positioning */
.coffee-beans img {
    width: 100%;
    display: block;
    margin-top: -50px; /* reduced negative margin to push image down */
}

/* Mobile adjustments for coffee beans */
@media (max-width: 900px) {
    .coffee-beans img {
        margin-top: -30px; /* push image a bit down on tablet */
    }
}

@media (max-width: 600px) {
    .coffee-beans img {
        margin-top: -20px; /* push image a bit down on mobile */
    }
}
.coffee-beans img {
    pointer-events: none;
}    /* Common style for all titles */
    h1, h2, h3, h4, h5, h6 {
      font-family:'Federo', sans-serif; /* Change font here */
      font-size: 42px; /* Change size here */
      margin: 0.5em 0; /* Spacing above and below */
      
    }

    /* Optional: responsive scaling */
    @media (max-width: 768px) {
      h1, h2, h3, h4, h5, h6 {
        font-size: 24px; /* Smaller on mobile */
        font-family:'Federo', sans-serif;
      }
    }
    
    
    
    
    
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Montserrat;
}

/* ===== TOP BAR ===== */
.top-bar {
  width: 100%;
  color: #ECE0D1;
  font-size: 14px;
  background-color: rgba(60,47,47,0.95);
}

/* 🔥 THIS IS THE KEY FIX */
.top-bar-container {
  max-width: 1200px;   /* keep original width */
  margin: 0 auto;
  padding: 12px 24px;   /* 👈 reduced from 40px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Left side */
.top-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.top-item i {
  font-size: 14px;
}

.top-item a {
  color: #ECE0D1;
  text-decoration: none;
}

/* Right side */
.top-right i {
  font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .top-bar-container {
    padding: 8px 20px;
  }
}

@media (max-width: 768px) {
  .top-bar-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ===== HIDE TOP BAR ON MOBILE ONLY ===== */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}





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

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  min-height: 100vh;
}

/* ================= NAVBAR WRAPPER ================= */
.navbar-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.35s ease; /* ✅ smooth move */
  background: none;
  color: #ECE0D1;
  
}

/* ================= NAVBAR ================= */
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 12px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 👈 stop pushing menu far right */
  gap: 100px;                   /* 👈 space between logo & menu */
}

/* ===== Logo ===== */
.logo img {
  height: 70px;
}

/* ===== Menu ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #ECE0D1;
  font-size: 16px;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}
.nav-menu a:hover, a.active {
  color: white;
}

/* ===== Underline Animation ===== */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

/* X animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s ease;
  }

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

  .nav-menu a {
    font-size: 18px;
  }
}

/* ================= DESKTOP OFFSET ================= */
@media (min-width: 992px) {
  .navbar-wrapper {
    top: 42px;     /* ✅ moves navbar down ONLY desktop/laptop */
  }
}

@media (max-width: 991px) {
  .hamburger {
    order: 1;           /* ensure it's at the end */
    position: fixed;    /* stick to corner */
    top: 42px;          /* adjust vertical position */
    right: 20px;        /* right corner */
    z-index: 1100;      /* above menu */
  }
}





.btn{
    padding:10px 25px;
    background:#c49b63;
    color:#120a07;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
    border-color: #000;
}

.btn:hover{
    background:#f5e9dd;
    border-color: #000;
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}



.footer {
/*    background: radial-gradient(circle at top, #2a1e1a, #000); */
    /* background-color: #100B0F;
    color: rgba(236,224,209,0.6); */
    position: relative;
    background: #100B0F;
    color: #948A83;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 10px;
}

.tagline {
    color: #e89b3a;
    margin-bottom: 20px;
    font-size: 0.87rem;
}

.footer-col h4 {
    color: #f5f5f5;
    margin-bottom: 15px;
    font-size: 1.5rem; 
    font-weight: normal;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
}


.footer-col ul li a {
    text-decoration: none;     /* Remove underline */
    color: inherit;            /* Keep same text color */
    font-family: inherit;      /* Keep same font */
    font-size: inherit;        /* Keep same size */
}

.footer-col ul li a:hover {
    color: inherit;            /* No color change on hover */
    color: #f4e7d9;
}



.footer-col a{
  text-decoration: none;
}
.footer-col a:visited {
  color: #948A83;
}
.footer-col a:hover{
  color: #f5f5f5;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.phone {
    color: #ECE0D1;
}
.footer-col .highlight {
  color: #ECE0D1;
}

.footer-col i {
    color: #7ac943;
    margin-right: 8px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons i {
    margin-right: 15px;
    font-size: 18px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    text-align: center;
    font-size: 0.75rem;
}

.footer-bottom .links {
    margin: 8px 0;
}

.footer-bottom .powered span {
    color: #4fc3f7;
}

.coffee-beans img {
    width: 100%;
    display: block;
        margin-top: -80px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        width: 150px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 100px; /* 👈 left & right movement */
    font-size: 0.75rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}


.footer-bottom p {
    margin: 0;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.footer-bottom p:first-child {
    margin-left: 120px;
}

.footer-bottom p:last-child {
    margin-right: 150px;
}



/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        text-align: center; /* center text in tablet */
    }

    .footer-col {
        justify-content: center; /* center the content in each column */
        align-items: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center; /* center everything in mobile */
    }

    .footer-logo {
        width: 150px;
        margin: auto; /* center logo */
    }

    .footer-col ul {
        padding: 0;
    }
}

/* Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center; /* center bottom links */
        gap: 10px;
    }

    .footer-bottom p:first-child,
    .footer-bottom p:last-child {
        margin: 0; /* remove large left/right margins */
    }
}
/* Footer Bottom - Full width like footer */
/* Footer Bottom - Full width like footer */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    font-size: 0.75rem;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    
    /* Add these lines */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Remove extra margins on footer-bottom paragraphs */
.footer-bottom p:first-child,
.footer-bottom p:last-child {
    margin: 0;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}
/* Coffee Beans Positioning */
.coffee-beans img {
    width: 100%;
    display: block;
    margin-top: -50px; /* reduced negative margin to push image down */
}

/* Mobile adjustments for coffee beans */
@media (max-width: 900px) {
    .coffee-beans img {
        margin-top: -30px; /* push image a bit down on tablet */
    }
}

@media (max-width: 600px) {
    .coffee-beans img {
        margin-top: -20px; /* push image a bit down on mobile */
    }
}
.coffee-beans img {
    pointer-events: none;
}