/* Layout styles */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--pf-orange-light) 0%, var(--pf-orange) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='%234A148C' opacity='0.1'/%3E%3C/svg%3E") repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content {
  margin-bottom: 120px;
}

.hero-title {
  font-size: var(--font-6xl);
  font-weight: 900;
  color: var(--neutral-white-pure);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: var(--font-xl);
  color: var(--neutral-white-pure);
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--neutral-white-pure);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--neutral-white-pure);
  border-bottom: 2px solid var(--neutral-white-pure);
  transform: rotate(45deg);
  margin-top: 10px;
  animation: bounce 2s infinite;
}

.collections-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.collections-grid {
  gap: 40px;
}

.collection-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(74, 20, 140, 0.2);
}

.collection-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Square aspect ratio */
  overflow: hidden;
}

.collection-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-image {
  transform: scale(1.05);
}

.collection-info {
  padding: 24px;
  text-align: center;
  background: var(--bg-secondary);
}

.collection-info h3 {
  font-size: var(--font-xl);
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.collection-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: var(--font-sm);
}

.products-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}

.products-grid {
  gap: 32px;
}

.craftsmanship-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.craftsmanship-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.craftsmanship-text {
  padding-right: 2rem;
}

.craftsmanship-text p {
  margin-bottom: 1.5rem;
  font-size: var(--font-lg);
  line-height: 1.8;
}

.craftsmanship-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.craftsmanship-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.craftsmanship-image:hover img {
  transform: scale(1.05);
}

.testimonials-section {
  padding: 8rem 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  gap: 30px;
}

.newsletter-section {
  padding: 6rem 0;
  background: linear-gradient(to right, var(--pf-purple), var(--pf-purple-dark));
  color: var(--neutral-white-pure);
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter-content h2 {
  color: var(--neutral-white-pure);
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: var(--font-lg);
}

.newsletter-form {
  display: flex;
  gap: 16px;
  margin-bottom: 1rem;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 30px;
  border: none;
  font-size: var(--font-base);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
}

.newsletter-form input::placeholder {
  color: var(--text-secondary);
}

.privacy-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-sm);
}

.footer {
  background: var(--neutral-black);
  color: var(--neutral-white-pure);
  padding: 5rem 0 2rem;
}

.footer-grid {
  gap: 40px;
  margin-bottom: 3rem;
}

.footer-brand svg {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-sm);
}

.footer-links h3 {
  margin-bottom: 1.5rem;
  font-size: var(--font-lg);
  color: var(--neutral-white-pure);
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: var(--font-sm);
}

.footer-links ul li a:hover {
  color: var(--accent-secondary);
}

.footer-contact ul li {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-sm);
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 1.5rem;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  font-size: var(--font-sm);
}

.social-icons a:hover {
  color: var(--accent-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-sm);
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-sm);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-secondary);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
  40% { transform: translateY(-10px) rotate(45deg); }
  60% { transform: translateY(-5px) rotate(45deg); }
}

/* Responsive adjustments */
@media (max-width: 1023px) {
  .hero-title {
    font-size: var(--font-5xl);
  }
  
  .craftsmanship-content {
    grid-template-columns: 1fr;
  }
  
  .craftsmanship-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: var(--font-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-lg);
  }
  
  .collections-section,
  .products-section,
  .craftsmanship-section,
  .testimonials-section {
    padding: 4rem 0;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--font-3xl);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}