@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&display=swap');



/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body, html {
  height: 100%;
  scroll-behavior: smooth;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('Assets/hero\ bg.jpg') no-repeat center center/cover ;
  height: 100vh;
  color: white;

}

.overlay {
  background-color: rgba(33, 15, 4, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 5.5rem;
  margin-bottom: 1rem;
  font-family: "Alegreya Sans SC", sans-serif;
  font-weight: bolder;
}

.hero p {
  font-size: 1.8rem;
  opacity: 0.85;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.5rem 0;
  background-color: transparent;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  border-radius: 0;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}

.navbar.scrolled .navbar-container {
  background-color: rgba(33, 15, 4, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  font-family: "Poppins", sans-serif;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: white;
  transition: 0.3s ease-in-out;
}

.navbar ul li a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background-color: #210F04;
  color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 10px;
  overflow: hidden;
  z-index: 100;
  text-align: center;
}

.dropdown-content a {
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #210F04;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.animated-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.animated-text:nth-child(1) {
  animation-delay: 0s;
}
.animated-text:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0.8;
  animation: fadeIn 1.5s ease 1s forwards;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 12px;
  margin: 0 auto;
  position: relative;
  margin-top: 6px;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 4px;
  animation: scrollMouse 1.2s infinite ease-in-out;
}

@keyframes scrollMouse {
  0% { top: 6px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.8; }
}



/* Responsive */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background-color: rgba(33, 15, 4, 0.95);
    width: 200px;
    padding: 1rem;
    border-radius: 15px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .navbar ul.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar ul li a::after {
    background: white;
  }

  .navbar-toggle {
    display: block;
    cursor: pointer;
    color: white;
    font-size: 1.8rem;
    z-index: 101;
    user-select: none;
    transition: transform 0.3s ease;
  }

  .navbar-toggle.open {
    transform: rotate(90deg);
  }

  /* Mobile dropdown override */
  .dropdown .dropdown-content {
    position: static;
    background-color: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown .dropdown-content a {
    color: white;
    padding: 8px 0;
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
}

.hero-content h1 {
    font-size: 3.8rem; /* or adjust to your taste */
  }

  .hero-content p {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }



  .scroll-indicator span {
    font-size: 0.75rem;
  }

  .scroll-indicator .mouse {
    width: 18px;
    height: 30px;

  }

  .scroll-indicator .mouse::before {
    width: 3px;
    height: 6px;
  }

  .scroll-indicator {
    bottom: 100px; 
  }


@media screen and (min-width: 769px) {
  .navbar-toggle {
    display: none;
  }
}

/*ABOUT US */
.about {
  background-color: #210F04;
  background-image: url('Assets/Coffee\ bg.jpg');
  background-size: cover;
  background-repeat: repeat;
  background-blend-mode: overlay;
  color: #fff;
  padding: 80px 20px;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 85px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  font-family: "Alegreya Sans SC", sans-serif;
}

.about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin-top: 12px;
  opacity: 0.2;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
}

.section-2 {
  flex-direction: row-reverse;
}

/* Scroll fade-in animation */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  will-change: transform, opacity;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .about-row,
  .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    
  }

  .about-text {
    margin-top: 0;
    padding: 0 10px;
  }

  .about-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
  }
}


/* MENU */
.menu {
  background-color: #210F04;
  color: white;
  padding: 80px 20px;

}

.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.menu h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Alegreya Sans SC", sans-serif;
}

.menu-intro {
  font-size: 1.1rem;
  color: #d6d6d6;
  margin-bottom: 3rem;
  font-family: "Poppins", sans-serif;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-item {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  transition: all 0.1s ease;
  transform: scale(1);
  cursor: pointer;
}

.menu-item.visible:hover {
  transform: scale(1.03);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(243, 192, 123, 0.3), 0 10px 30px rgba(0, 0, 0, 0.4);
  border-color: #f3c07b;
  
}




.menu-item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;  
  margin-bottom: 0.8rem;
  cursor: pointer;
  padding: 8px;
}



.menu-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #fff;
  font-family: "Alegreya Sans SC", sans-serif;
}

.price {
  float: right;
  color: #f3c07b;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

.menu-item p {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 0.5rem;
  font-family: "Poppins", sans-serif;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .menu h2 {
    font-size: 2rem;
  }

  .menu-item {
    text-align: center;
  }

  .price {
    float: none;
    display: block;
    margin-top: 0.2rem;
  }
}

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* GALLERY SECTION */
.gallery {
  background-image: url(Assets/gallery\ bg.jpg);
  background-size: contain;
  position: relative;
  padding: 80px 20px;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);  /* Subtle dark overlay */
  backdrop-filter: blur(8px);           /* Glass effect */
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  background: #00000020;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Scroll Animation (reused) */
.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* LOCATION SECTION */
.location {
  position: relative;
  padding: 80px 20px;
  background-color: #210F04;
  color: #fff;
  overflow: hidden;
}

.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);  /* Subtle overlay */
  backdrop-filter: blur(8px);           /* Glass effect */
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
  justify-content: center;
}

.location-info,
.location-map {
  flex: 1 1 400px;
  max-width: 550px;
  text-align: left;
}

.location-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: "Alegreya Sans SC", sans-serif;
}
 h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-family: "Alegreya Sans SC", sans-serif;
}
p{
  font-family: "Poppins", sans-serif;
}

.location-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  font-family: "Poppins", sans-serif;
}

/* Button */
.direction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.direction-btn:hover {
  background-color: #fff;
  color: #210F04;
  transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .location-info,
  .location-map {
    text-align: center;
  }

  .location-map iframe {
    height: 250px;
  }
}


/* FOOTER */
.footer-modern {
  background-color: #210F04;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 60px 20px 30px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #fff;
}

.brand-column {
  text-align: center;
}

.coffee-icon {
  width: 50px;
  margin-top: 10px;
  filter: brightness(90%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
}

.footer-bottom i {
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
