* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  width: 100%;
  background-color: #3e2723; 
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.logo h1 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f8ede3;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #f8ede3;
  font-size: 1rem;
  transition: 0.3s ease;
  border: 1px solid #3e2723;
  background-color: white;
  border-radius: 20px;
  padding: 10px;
  color: #3e2723;
}

nav a:hover {
  color: black;
  background-color: #a1887f;
  box-shadow: 0 0 10px white;
}

.order-btn {
  background-color: #d7ccc8; 
  color: #3e2723;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
}

.order-btn:hover {
  background-color: #a1887f;
  color: #fff;
}

.hero {
  height: 100vh; 
  background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 80px; 
}

.hero-content {
  position: relative;
  text-align: center;
  color: #f8ede3; 
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-btn {
  text-decoration: none;
  background-color: #d7ccc8; 
  color: #3e2723; 
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background-color: #a1887f;
  color: #fff;
}


.content-section {
  padding: 80px 5%;
  background-color: #f8ede3; 
  color: #3e2723; 
  text-align: center;
}

.content-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}


.card {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  height: 400px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  line-height: 1.4;
}


.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}


.about-section {
  padding: 80px 5%;
  background-color: #f8ede3;
  color: #3e2723;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about-image img {
  width: 500px;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}


.coffee-experience {
  padding: 80px 5%;
  background-color: #f3e5d5; 
  color: #3e2723;
  text-align: center;
}

.coffee-experience h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.coffee-experience p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.coffee-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 40px;
}

.coffee-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  max-width: 250px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coffee-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.coffee-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.coffee-card p {
  font-size: 1rem;
  line-height: 1.4;
}

.coffee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3e2723; 
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #5d4037;
}

.footer {
  background-color: #3e2723; 
  color: #fff;
  padding: 60px 5% 30px;
}

.footer-about img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer h2, .footer h3 {
  margin-bottom: 15px;
}

.footer p, .footer ul {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f3e5d5; 
}

.footer-social a {
  margin-right: 15px;
  display: inline-block;
}

.footer-social img {
  width: 30px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

.footer-bottom a{
    border: 2px solid #a1887f;
    text-decoration: none;
    color: black;
    background-color: #a1887f;
    padding: 5px;
    border-radius: 5px;
}

.footer-bottom a:hover{
    background-color: #a1887f;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.6);
    transition: 0.3s ease;
}

