/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(to bottom, #f0fdf4, #ffffff);
}

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

/* Header */
.header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #dcfce7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  width: 2.5rem;
  height: 2.5rem;
  background: #bbf7d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #15803d;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #15803d;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  background: none;
  border: none;
  color: #15803d;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #166534;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(to right, #dcfce7, #f0fdf4);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #14532d;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #15803d;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ef4444;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #16a34a;
  color: white;
}

.btn-primary:hover {
  background: #15803d;
}

.btn-outline {
  background: transparent;
  color: #16a34a;
  border: 1px solid #16a34a;
}

.btn-outline:hover {
  background: #f0fdf4;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-instagram {
  background: #e91e63;
  color: white;
}

.btn-instagram:hover {
  background: #c2185b;
}

.btn-tiktok {
  background: #000000;
  color: white;
}

.btn-tiktok:hover {
  background: #374151;
}

.btn-telegram {
  background: #3b82f6;
  color: white;
}

.btn-telegram:hover {
  background: #2563eb;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #14532d;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #15803d;
  max-width: 48rem;
  margin: 0 auto;
}

/* Coffee Section */
.coffee-section {
  padding: 5rem 0;
  background: white;
}

.coffee-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.coffee-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #14532d;
  margin-bottom: 1.5rem;
}

.coffee-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge {
  background: #dcfce7;
  color: #15803d;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
}

.coffee-description {
  color: #15803d;
}

.coffee-img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.review-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 2rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.review-text {
  font-size: 1.125rem;
  color: #15803d;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.review-author {
  color: #16a34a;
  font-weight: 500;
}

@media (max-width: 768px) {
  .coffee-content {
    grid-template-columns: 1fr;
  }
}

/* Locations Section */
.locations-section {
  padding: 5rem 0;
  background: #f0fdf4;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.location-card {
  background: white;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s;
}

.location-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.location-header {
  margin-bottom: 1rem;
}

.location-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #14532d;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.location-title svg {
  color: #16a34a;
}

.location-branches {
  color: #15803d;
}

.location-address {
  color: #15803d;
  margin-bottom: 1rem;
}

.location-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #15803d;
  margin-bottom: 1rem;
}

.location-hours svg {
  color: #16a34a;
}

.map-card {
  background: white;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.map-header {
  padding: 1.5rem;
  border-bottom: 1px solid #bbf7d0;
}

.map-title {
  color: #14532d;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.map-subtitle {
  color: #15803d;
}

.map-content {
  padding: 1.5rem;
}

.map {
  width: 100%;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.map-note {
  text-align: center;
  margin-top: 1rem;
}

.map-note p {
  color: #15803d;
  font-size: 0.875rem;
}

/* Leaflet Controls Z-Index Fix */
.leaflet-control-zoom {
  z-index: 500 !important;
}

.leaflet-control-container {
  z-index: 500 !important;
}

.leaflet-control {
  z-index: 500 !important;
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card-item {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Section */
.social-section {
  padding: 5rem 0;
  background: #f0fdf4;
}

.social-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #16a34a;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #14532d;
  margin-bottom: 0.5rem;
}

.contact-info {
  font-size: 1.125rem;
  color: #15803d;
}

.contact-note {
  font-size: 0.875rem;
  color: #16a34a;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: #14532d;
  color: white;
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .logo {
  background: #bbf7d0;
  color: #15803d;
}

.footer-description {
  color: #bbf7d0;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #bbf7d0;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #166534;
  padding-top: 2rem;
}

.faq {
  margin-bottom: 2rem;
}

.faq-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.faq-toggle:hover {
  color: #bbf7d0;
}

.faq-content {
  display: none;
  margin-top: 1rem;
}

.faq-content.active {
  display: block;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item h5 {
  color: white;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: #bbf7d0;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #bbf7d0;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
  }
}
