/* Homepage-specific styles */

/* Header Overlay for Hero */
.header-overlay {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-overlay .brand,
.header-overlay .nav-link {
  color: #fff;
}

.header-overlay .nav-link:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 32px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
  font-size: 80px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  opacity: 0.95;
}

.hero-cta {
  display: inline-block;
  padding: 18px 48px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  transition: all 0.3s;
  border: 1px solid #fff;
}

.hero-cta:hover {
  background-color: transparent;
  color: #fff;
}

/* Collections Section */
.collections-section {
  padding: 120px 0;
}

.section-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 32px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.collection-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  animation: fadeInUp 0.8s ease both;
}

.collection-card:nth-child(1) {
  animation-delay: 0.1s;
}

.collection-card:nth-child(2) {
  animation-delay: 0.2s;
}

.collection-card:nth-child(3) {
  animation-delay: 0.3s;
}

.collection-card:nth-child(4) {
  animation-delay: 0.4s;
}

.collection-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: #e7e5e4;
  margin-bottom: 24px;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.collection-info {
  padding: 0 8px;
}

.collection-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.collection-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.collection-link-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.collection-card:hover .collection-link-text {
  opacity: 1;
}

/* Editorial Section */
.editorial-section {
  padding: 60px 0 120px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1800px;
  margin: 0 auto;
  align-items: center;
}

.editorial-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #e7e5e4;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 1s ease both;
}

.editorial-content {
  padding: 0 120px;
  animation: fadeInUp 1s ease 0.3s both;
}

.editorial-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.editorial-title {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 32px;
}

.editorial-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
}

.editorial-link {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  transition: opacity 0.3s;
}

.editorial-link:hover {
  opacity: 0.6;
}

/* Featured Section */
.featured-section {
  padding: 60px 0 120px;
  background-color: #f5f5f4;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1800px;
  margin: 0 auto;
  align-items: center;
}

.featured-content {
  padding: 0 120px;
  animation: fadeInUp 1s ease 0.3s both;
}

.featured-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.featured-title {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.featured-description {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
}

.featured-price {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.featured-cta {
  display: inline-block;
  padding: 16px 48px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  transition: all 0.3s;
}

.featured-cta:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.featured-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #e7e5e4;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeIn 1s ease both;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.values-grid {
  display: grid;
  /*grid-template-columns: repeat(3, 1fr);*/
  gap: 80px;
}

.value-item {
  animation: fadeInUp 0.8s ease both;
}

.value-item:nth-child(1) {
  animation-delay: 0.1s;
}

.value-item:nth-child(2) {
  animation-delay: 0.2s;
}

.value-item:nth-child(3) {
  animation-delay: 0.3s;
}

.value-number {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 24px;
}

.value-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.value-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}

/* Newsletter Section */
.newsletter-section {
  padding: 120px 0;
  background-color: #f5f5f4;
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
  animation: fadeInUp 1s ease both;
}

.newsletter-title {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.newsletter-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 18px 24px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: border-color 0.3s;
}

.newsletter-input:focus {
  outline: none;
  border-color: #000;
}

.newsletter-btn {
  padding: 18px 40px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-btn:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Footer */
.footer {
  background-color: #1c1917;
  color: #fff;
  padding: 80px 0 40px;
}

.footer-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  font-size: 24px;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.footer-heading {
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .editorial-grid,
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .editorial-content,
  .featured-content {
    padding: 60px 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 40px;
  }

/* Language Switcher Tight Spacing */
.lang-link,
.lang-separator {
  display: inline;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
.lang-separator {
  letter-spacing: 0;
}

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    padding: 14px 32px;
  }

  .section-container {
    padding: 0 16px;
  }

  .collections-section,
  .editorial-section,
  .featured-section,
  .values-section,
  .newsletter-section {
    padding: 80px 0;
  }

  .editorial-title {
    font-size: 36px;
  }

  .featured-title {
    font-size: 32px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav {
    display: none;
  }
}
