@scope(.firstsect) {

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.header {
  background: white;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e31e24;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.search-btn:hover {
  color: #e31e24;
}

/* Main Content */
.main-content {
  position: relative;
}

.hero-section {
  padding: 0 80px;
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('dyedyarns_1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.background-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-overlay {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0rem;
  max-width: 1280px;
  margin: 0 auto;
}

.breadcrumb {
  color: white;
  font-size: 1rem;
  font-weight:700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing:2.5px;
}

.hero-description {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
}

.cta-button {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight:500;
}

.cta-button:hover {
  background: white;
  color: #333;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {


  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .hero-section {
    padding:0 20px;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .content-overlay {
    padding: 0 1rem;
    text-align: center;
  }
  
  .hero-title {
  /*  font-size: 2.5rem; */
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .breadcrumb {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    font-size: 0.9rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}
}
