/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.7;
}
header {
  background: #ffffff;
  color: #1a1a1a;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid #f0f0f0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-img {
  height: 100px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
}
.logo-text {
  font-size: 1.1em;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
}
.nav-links a:hover, .nav-links a:focus {
  background: #f8f8f8;
  color: #000000;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #000000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover::after {
  width: 80%;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('image.jpg') center/cover no-repeat;
  color: #1a1a1a;
  min-height: 70vh;
  padding: 4rem 1rem 3rem 1rem;
}
.hero-img {
  display: none;
}
.hero-content {
  background: rgba(20, 20, 20, 0.78);
  padding: 2rem 2.2rem;
  border-radius: 18px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  position: static;
  top: unset;
  left: unset;
  transform: none;
  z-index: unset;
}
.hero-content h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 0.7rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-content p {
  color: #f3f3f3;
  font-size: 1.18rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
}
.cta-btn {
  background: #000000;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border: 2px solid #000000;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
main {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 4rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  padding: 3rem 2rem;
  border: 1px solid #f0f0f0;
}
section h2 {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.shop-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.shop-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 48%;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.shop-card h3 {
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 600;
  font-size: 1.3rem;
}
.shop-card p {
  margin-bottom: 1.5rem;
  color: #666666;
  line-height: 1.6;
}
.shop-btn {
  background: #000000;
  color: #ffffff;
  padding: 0.8rem 1.8rem;
  border: 2px solid #000000;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.shop-btn:hover, .shop-btn:focus {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}
.map-container {
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2.2rem 0 1.2rem 0;
  margin-top: 3rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 18px 18px 0 0;
  border-top: 1.5px solid #222;
  box-shadow: 0 -2px 18px rgba(0,0,0,0.10);
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
footer .footer-note {
  font-size: 0.98rem;
  color: #bbb;
  margin-top: 0.7rem;
  letter-spacing: 0.2px;
}
footer a {
  color: #f7b267;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
footer a:hover {
  color: #4f8cff;
}
.about-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.about-img {
  width: 300px;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  flex-shrink: 0;
  object-fit: cover;
  background: #fff;
}
.about-text {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* Card Grid System */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Section Container */
.section-container {
  max-width: min(90%, 1200px);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Responsive Media Queries */
@media screen and (max-width: 1024px) {
  .hero-content {
    max-width: 90%;
  }
  
  main {
    max-width: 95%;
  }
  
  .section {
    padding: 2rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  /* Navigation */
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem;
  }

  .logo-container {
    justify-content: center;
    padding: 0.5rem;
  }

  /* Hero Section */
  .hero {
    min-height: 60vh;
    padding: 2rem 1rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 1.8rem !important;
  }

  .hero-content p {
    font-size: 1rem !important;
    padding: 0 1rem;
  }

  /* Shop Items */
  .shop-items {
    flex-direction: column;
  }

  .shop-card {
    max-width: 100%;
  }

  /* About Section */
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    width: 100%;
    max-width: 350px;
  }
}

@media screen and (max-width: 480px) {
  /* Text Scaling */
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.3rem !important; }
  h3 { font-size: 1.1rem !important; }
  p { font-size: 0.95rem !important; }

  /* Layout Adjustments */
  .hero {
    min-height: 50vh;
  }

  .hero-content {
    padding: 1rem;
  }

  section {
    padding: 1.5rem 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  /* Button Adjustments */
  .cta-btn, .shop-btn {
    padding: 0.7em 1.4em;
    font-size: 0.9rem;
  }

  /* Navigation */
  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    height: 80px;
  }
}

@media screen and (max-width: 360px) {
  /* Very Small Screen Adjustments */
  .section-container {
    padding: 1rem 0.5rem;
  }

  .card {
    padding: 1rem;
  }

  .hero-content {
    padding: 0.8rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
  }

  footer {
    padding: 1.5rem 0.5rem;
  }
}

/* General Responsive Improvements */
img {
  max-width: 100%;
  height: auto;
}

/* Improved Button Responsiveness */
.cta-btn, .shop-btn {
  display: inline-block;
  padding: 0.8em 1.6em;
  margin: 0.5rem;
  white-space: nowrap;
  text-align: center;
} 