:root {
  --primary: #333;
  --accent: #b2d8b2;
  --black: #000000;
}

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

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Remove blue box from buttons */
button,
a {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

button:focus,
button:active,
a:focus,
a:active {
  outline: none;
  box-shadow: none;
  background-color: inherit;
}

/* Main Header */
.main-header {
  background-color: #fff;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.menu-icon:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(1.1);
}

.logo img {
  height: 40px;
}

.contact-icon a {
  color: #333;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-icon a:hover {
  color: #000000;
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem 2rem 2rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

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

.nav-menu.animate {
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-menu a:hover {
  background: var(--accent);
  color: var(--black);
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  height: 60vh;
  min-height: 300px;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('/images/cup_coffee.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 54px;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.hero-content p {
  font-size: 20px;
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

/* About Café Blend Section */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/cafe-interior.jpg') center/cover fixed;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #000000;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  text-align: center;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 10px auto 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d4af37;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-content:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(212, 163, 115, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: #D4A373;
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2a2a2a;
}

.value-card p {
  color: #666;
}

/* Founders Section */
.team-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fafafa, #fff);
  text-align: center;
}

.team-section .section-title {
  color: #2a2a2a;
  text-align: center;
}

.team-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.team-media {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.team-media video,
.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); */
}

.team-info {
  padding: 30px;
  text-align: center;
}

.team-info h3 {
  font-size: 26px;
  color: #000000;
  margin-bottom: 10px;
}

.team-info p.position {
  color: #d4af37;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
}

.team-info p.bio {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* Footer */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  font-size: 28px;
  margin: 0;
  letter-spacing: 2px;
}

.footer-brand p {
  margin-top: 5px;
  font-size: 16px;
  font-style: italic;
  color: #ffffff;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}

.footer-links a,
.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  color: #e3e3e3;
  border-top: 1px solid #eaeaea;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-icon {
    font-size: 20px;
  }

  .logo img {
    height: 30px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-content {
    padding: 20px;
  }

  .about-content h3 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 16px;
  }

  .team-media {
    height: 300px;
  }

  .team-info {
    padding: 20px;
  }

  .team-info h3 {
    font-size: 22px;
  }

  .team-info p.position {
    font-size: 16px;
  }

  .team-info p.bio {
    font-size: 15px;
  }

  .footer-container {
    display: none;
  }

  .footer-bottom {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
    font-size: 14px;
    color: #ffffff;
  }
}

@media (max-width: 480px) {
  .menu-icon {
    font-size: 18px;
    padding: 0.4rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}