* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  border-bottom: 1px solid #e5e5e5;
}

.nav-left, .nav-right {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-left a, .nav-right a {
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.nav-left a:hover, .nav-right a:hover {
  opacity: 0.6;
}

.nav-left a.active {
  font-weight: 600;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #111;
  letter-spacing: 3px;
  font-weight: 600;
  z-index: 1001;
}

/* Bag Count Badge */
.bag-link {
  position: relative;
}

.bag-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bag-count.show {
  opacity: 1;
  transform: scale(1);
}

/* Hero Section */
.about-hero {
  margin-top: 70px;
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 8px;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-overlay p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* About Text Section */
.about-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px;
}

.text-block {
  margin-bottom: 80px;
}

.text-block h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 1px;
  color: #111;
}

.text-block p {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
  font-weight: 300;
  margin-bottom: 25px;
}

/* Image Break */
.about-image-break {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  margin: 80px 0;
}

.about-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image-break:hover img {
  transform: scale(1.05);
}

/* The Name Section */
.about-name {
  background-color: #f9f9f9;
  padding: 100px 40px;
}

.name-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.name-content h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: #111;
}

.name-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #333;
  font-weight: 300;
  margin-bottom: 30px;
}

/* Footer Quote */
.about-footer-quote {
  background-color: #111;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.about-footer-quote p {
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-left, .nav-right {
    gap: 15px;
  }

  .nav-left a, .nav-right a {
    font-size: 11px;
  }

  .logo {
    font-size: 14px;
  }

  .about-hero {
    height: 60vh;
  }

  .hero-overlay h1 {
    font-size: 40px;
    letter-spacing: 4px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  .about-text {
    padding: 80px 20px;
  }

  .text-block {
    margin-bottom: 60px;
  }

  .text-block h2 {
    font-size: 24px;
  }

  .text-block p {
    font-size: 16px;
  }

  .about-image-break {
    height: 50vh;
    margin: 60px 0;
  }

  .about-name {
    padding: 80px 20px;
  }

  .name-content h2 {
    font-size: 26px;
  }

  .name-content p {
    font-size: 17px;
  }

  .about-footer-quote {
    padding: 60px 20px;
  }

  .about-footer-quote p {
    font-size: 18px;
  }
}