 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

        }

        body {
            font-family: Arial,  sans-serif;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding:  15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.main-header {
  background-color:#d18c53;
  padding: 22px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 25px;
  color: black;
  text-decoration: none;
  font-weight: bolder;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  font-size: larger;
}

.nav-links a:hover {
  color: #fffacd;
}

/* Toggle Hamburger */
.toggle-checkbox {
  display: none;
}

.toggle-label {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}
.home{
  background-image: url('f530d4d2d863970a18bfb1bb76375b7e.jpg'); /* replace with your coffee beans image path */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 20px;
  text-align: center;
  position: relative;
}

.home-content {
  padding: 40px 20px;
  border-radius: 10px;
  display: inline-block;
}

.home h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.home p {
  font-size: 18px;
  margin-bottom: 20px;
}

.home-buttons button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s ease;
}

.home-buttons button:first-child {
  background-color: #ffffff;
  color: #333;
}

.home-buttons button:last-child {
  background-color: #f4a261;
  color: white;
}

.home-buttons button:hover {
  opacity: 0.9;
}

.home-message {
  margin-top: 20px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 8px;
  display: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}  

.coffee{
padding: 60px 20px;
background-color: #fff5e1;
}
 .coffee h2 {
  font-size: 30px;
text-align: center; 
margin-bottom: 40px;
 }
 .coffee-item h5{
color: #494747;
 }
 .coffee-list p{
  background-color: #efefef;
   display: inline-block;
   padding: 2px 6px;
   border-radius: 4px;

  
 }

.coffee-list {
     display: flex;
      justify-content:space-around;
  flex-wrap: wrap;
gap: 20px;
}

.coffee-item {
flex: 1 1 200px;
 text-align: center;
}
.coffee-item img {
width: 100px; 
height: 150px;
 border-radius: 10px;
 object-fit:cover;
border-radius: 10px;
transition: transform 0.3s ease;
 }
.coffee-item :hover{
     transform:scale(1.05);
}


.about{
   background:url(c9cd6de9da5dad507b5c666f80f1c131.jpg);
  height: 400px;
  margin-top: auto 30px;
  padding-bottom: 30px;
  margin-bottom: 3px;
}
.row-flex img{
width: 180px; 
height: 350px;
 border-radius: 10px;
 object-fit:cover;
border-radius: 10px;
transition: transform 0.3s ease;
}

.row-flex img:hover{
     transform:scale(1.05);
}

    .row-flex {
  width: 90%;
  margin-bottom: 3px;
    gap: 40px;
  max-width: 95%;
  padding: 50px;
  margin: 80px auto;
  margin-top: 3px;
   height: 400px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-sizing: border-box;
  overflow-x: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.column right img{
  width: 100px; 
height: 200px;
 border-radius: 10px;
 object-fit:cover;
border-radius: 10px;
transition: transform 0.3s ease;
}
.column {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
  margin-top: 50px;
}

.left {
  border-right: 1px solid #ccc;
  padding-right: 20px;
}

.right {
  padding-left: 20px;
}

.contact-link,
.offer-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  text-decoration: none;
  color: #007BFF;
}

.contact-link:hover,
.offer-link:hover {
  text-decoration: underline;
}

/* Remove media query to force side-by-side even on mobile */

        .morning-happy{
            text-align: center;
            padding: 60px 20px;
            background-color: #fff8dc;
        }
        .morning-happy h2 {
          background-color: #efefef;
   display: inline-block;
   padding: 2px 6px;
   border-radius: 4px;
        }
        .morning-happy p{
          font-size: 18px;
          color: #2a2727;
        }
      

        .visit-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .visit-gallery img {
            width: 200px;
            height: 80px;
            border-radius: 10px;
             object-fit:cover;
border-radius: 10px;
transition: transform 0.3s ease;
            max-width: 700px;
            display: block;
        }
 
.visit-gallery :hover {
    transform:scale(1.05);
}

@media(max-width: 600px){
  .visit-gallery img{
    max-width: 200px;
  }
}


 .morning{
            text-align: center;
            padding: 60px 20px;
            background-color: #191616;
        }
        .morning h2 {
          background-color: #efefef;
   display: inline-block;
   padding: 2px 6px;
   border-radius: 4px;
        }
        .morning p{
color: rgb(155, 152, 152) ;
 font-size: 18px;
        }

        .visit-gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .visit-gallery img {
            width: 250px;
            height: 500px;
            border-radius: 10px;
             object-fit:cover;
border-radius: 10px;
transition: transform 0.3s ease;
        }
 
.visit-gallery :hover {
    transform:scale(1.05);
}


.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.close-btn{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
.close {
  position: absolute;
  top: 20px; right: 25px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.testimonial-section {
  padding: 60px 10%;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color:  #afaca4;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 300px;
  text-align: left;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-profile h4 {
  margin: 0;
  font-size: 1rem;
  color: #342f2f;
}

.stars {
  color: orange;
  font-size: 1rem;
}
.login{
  font-size: large;
  padding: 50px 10px;
background-color: #999283;
text-align: center; 
}
input, textarea ,button{
color: black;
width: 300px;
height: 40px;
font-size: 16px;
padding: 8px;
margin-block: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

.typing-text{
    min-width: 300px;
    font-size: x-large;
}

.typing-text span{
    position: relative;
    font-size: x-large;
}

.typing-text span::before{
    color: #b74b4b;
    animation: words 20s infinite;
}

.typing-text span::after{
    content: "message";
    background-color: black;
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid black;
    right: -8;
    animation: cursor 0.6s infinite;
}
        footer {
            background-color: #3b2f2f;
            color: white;
            padding: 30px 20px;
            margin-bottom: 10px;
        }



.Location , .Location-section h3{
  background-color:#3b2f2f;
  padding: 2px;
  color: black;
}

.Location , .Location-section  p{
  color: rgb(241, 233, 233) ;
 font-size: 15px;
}
.Location , .Location-hours h3{
  background-color:#3b2f2f;
  padding: 2px;
  color: black;

}
.Location , .Location-hours p{
  color: rgb(241, 233, 233) ;
 font-size: 14px;
}

.Location , .Location-new h3{
  background-color:#3b2f2f;
  padding: 2px;
  font-size: 15px;
  color: black;
}
.Location , .Location-new p{
  color: rgb(241, 233, 233) ;
 font-size: 14px;
}
  .footer-section, .footer-social {
            text-align: center;
            margin: 10px 0;
        }
        

        .footer-social img {
 border-radius: 10px;
 object-fit:cover;
border-radius: 10px;
transition: transform 0.3s ease;
          height: 30px;
          width: 30px;
          gap: 5px;
            color: white;
            margin: 5px;
            text-decoration: black;
          }
.footer-social img :hover{
     transform:scale(1.05);
}





        @media (max-width: 768px) {
            .toggle-label {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #d2691e;
    padding: 15px;
    border-radius: 10px;
  }

  .toggle-checkbox:checked + .toggle-label + .nav-links {
    display: flex;
  }
         .visit-gallery img {
                width: 200px;
            }  
            /* For small screen - force horizontal scroll instead of stacking */
.testimonial-cards {
    flex-direction: column;
    align-items: center;
  }

@media (max-width: 768px){
  .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .column {
    flex: 0 0 80%; /* fixed width columns inside scroll */
    min-width: 300px;
  }
}         
 }