/* ===== Reset & Fonts ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
    body {
      font-family: 'Roboto', sans-serif;
      background: #fdf8f4;
      color: #2c2c2c;
      overflow-x: hidden;
    }

    h1{ font-family: 'Playfair Display', serif; color: #5a3825; }

    a { text-decoration: none; color: inherit; }
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0a0101; /* You can change to any color */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.logo {
    color: white;
    padding: 20px 10px;
    text-align: center;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo img {
    width: 70px;
    height: 80px;
    margin-bottom: 0px;
    border-radius: 30%;
}

.logo h1 {
        margin: 5px 0;
}

.logo p {
    font-size: 16px;
    margin: 0;
}

h1 {
    color: #6f4e37;
    font-size: 40px;
    text-align: center;
    background-color: #0a0000;
    box-shadow: 0 20px 40px rgba(255, 254, 254, 0.35), 0 0 30px rgba(255, 182, 71, 0.4);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
}

button a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/* ===== Navbar ===== */
nav {
      position: sticky;
      top: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(30, 15, 8, 0.95);
      color: #fff;
      padding: 1rem 2rem;
      z-index: 1000;
      backdrop-filter: blur(8px);
    }

nav h1 {
    font-family: 'Amiri', serif;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-align: right;
}
nav a:hover {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-align: right;
    background-color: #070401;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(255, 254, 254, 0.35), 0 0 30px rgba(255, 182, 71, 0.4);

}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* ===== Hero ===== */


/* ===== HERO SECTION (Responsive Scaled Image) ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* full screen height */
  background: url('love organic coffee16.jpg') no-repeat center center;
  background-size: cover; /* fill entire width (right to left) */
  background-position: center;
  background-attachment: scroll; /* ensures proper scaling on mobile */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: 120px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.45);  dark overlay for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif;
}

.hero-content button {
  background: #036efa;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.hero-content button:hover {
  background: #024db8;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
    background-size: contain;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}

/* Mobile phones */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    background-size: contain; /* always show full image */
    background-position: center;
    padding: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    background-size: contain;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button styling */
.hero-content button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== Responsive for Tablets ===== */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== Responsive for Mobile ===== */
@media (max-width: 480px) {
    .hero {
        height: 80vh;
        /* slightly smaller on mobile */
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}



//------------------------------------------------------------
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(255, 126, 95, 0.2));
    z-index: 0;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: 0.5s;
    animation: float 4s ease-in-out infinite;
}

.hero-content h2:hover {
    color: #ffb347;
    transform: scale(1.05);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Amiri', serif;
}

.hero-content button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-content button:hover {
    transform: scale(1.12) rotateX(1deg) rotateY(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 182, 71, 0.4);
}


/* ===== Steam & Bubbles ===== */
.steam-particles {
    position: absolute;
    bottom: 15%;
    left: 50%;
    width: 200px;
    height: 300px;
    transform: translateX(-50%);
    pointer-events: none;
    overflow: visible;
    z-index: 2;
}

.steam-particles .particle {
    position: absolute;
    bottom: 0;
    width: 6px;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50%;
    opacity: 0;
    filter: blur(2px);
    transform-origin: center bottom;
    animation: rise 4s infinite ease-in-out;
}

@keyframes rise {
    0% {
        transform: translateX(0) translateY(0) scaleX(1);
        opacity: 0;
    }

    30% {
        opacity: 0.5;
    }

    60% {
        transform: translateX(var(--x-move)) translateY(-80px) scaleX(var(--scale));
        opacity: 0.7;
    }

    100% {
        transform: translateX(var(--x-move)) translateY(-180px) scaleX(var(--scale));
        opacity: 0;
    }
}

/* Coffee bubbles */
.coffee-bubbles {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    pointer-events: none;
    z-index: 2;
}

.coffee-bubbles span {
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: bubbleRise 3s infinite;
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.coffee-bubbles span:nth-child(1) {
    animation-delay: 0s;
}

.coffee-bubbles span:nth-child(2) {
    animation-delay: 0.3s;
}

.coffee-bubbles span:nth-child(3) {
    animation-delay: 0.6s;
}

.coffee-bubbles span:nth-child(4) {
    animation-delay: 0.9s;
}

.coffee-bubbles span:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes bubbleRise {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(10px, -40px) scale(1.3);
        opacity: 0.8;
    }

    100% {
        transform: translate(-5px, -100px) scale(1);
        opacity: 0;
    }
}

/* ===== Features ===== */
.features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3rem 1rem;
    background: #fff;
}

.feature-card {
    text-align: center;
    flex: 1;
    max-width: 500px;
  
    background: #fdf5ef;
    padding: 0rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-card img {
    width: 250px;
    height:250px;
    margin-bottom: 1rem;
}




/* ===== Menu ===== */
.menu {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    background: #f7f2ef;
    justify-content: center;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-card:hover {
    transform: scale(1.05);
}

.menu-card img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    text-align: center;
    padding: 1rem;
}


/* ===== Online Ordering ===== */
.order {
    padding: 5rem 3rem;
    background: #fff;
}

.order h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.order-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.order-item {
    background: #f7f0e7;
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.order-item:hover {
    transform: rotateY(7deg) rotateX(7deg) scale(1.08);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.order-item img {
    width: 300px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.order-item h3 {
    margin-bottom: 0.5rem;
}

.order-item p {
    margin-bottom: 0.5rem;
}

.order-item div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.order-item button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.order-item button:hover {
    transform: scale(1.12) rotateX(1deg) rotateY(1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 182, 71, 0.4);
}

.checkout {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* ===== Subscription ===== */
.subscribe {
    padding: 5rem 3rem;
    text-align: center;
    color: #fff;
    background: linear-gradient(-45deg, #ff7e5f, #feb47b, #ffb347, #ff7e5f);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
}

.subscribe h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subscribe p {
    font-family: 'Amiri', serif;
    margin-bottom: 2rem;
}

.subscribe input {
    padding: 1rem;
    width: 250px;
    border: none;
    border-radius: 50px;
    margin-right: 1rem;
}

.subscribe button {
    margin: 20px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #fff;
    color: #ff7e5f;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
}

.subscribe button:hover {
    background: #ffd7b2;
    transform: scale(1.05) rotateX(1deg) rotateY(1deg);
}


/* ===== Testimonials ===== */
.testimonials {
    padding: 4rem 2rem;
    text-align: center;
    background: #fdf5ef;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: slide 30s linear infinite;
}

.testimonial {
    flex: 0 0 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
  
    100% {
        transform: translateX(-1500px);
    }
}

 /* ================= FOOTER ================= */
    footer {
      text-align: center;
      background: #1f1f1f;
      color: #fff;
      padding: 2rem 1rem;
    }
    .phone-list {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .phone-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #ffb347;
      font-size: 1rem;
    }

.social{
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Brand Colors */
.social-icons .facebook {
    background: #5aa2ff;
}

.social-icons .instagram {
    background: #f49eae;
}

.social-icons .telegram {
    background: #0088cc;
}

.social-icons .whatsapp {
    background: #0bb94a;
}

.social-icons .youtube {
    background: #FF0000;
}

.social-icons .tiktok {
    background: #000000;
}

/* Hover Effects */
.social-icons a:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
  
/* ================= RESPONSIVE ================= */
    @media(max-width:768px){
      nav ul { display: none; flex-direction: column; background: rgba(9, 120, 35, 0.9); position: absolute; top: 80px; right: 0; padding: 1rem; border-radius: 10px; }
      nav ul.active { display: flex; }
      .hamburger { display: flex; }
      .hero h2 { font-size: 2rem; }
      .hero p { font-size: 1rem; }
    }
#location h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
#location p {
  font-family: 'Roboto', sans-serif;
  color: #555;
  margin-bottom: 1rem;
}