/*
 * Custom Homepage Blocks Styles - The Creations
 * Extracted from duplicate Figma file 5x47wT9xwty1bW5wb6eg9P
 */

/* =============================================================================
   1. BLOCK: HOMEPAGE HERO
   ============================================================================= */
.tc-homepage-hero {
  position: relative;
  width: 100%;
  height: 950px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tc-homepage-hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle, rgba(112,112,112,0.4) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}
.tc-homepage-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width-container, 1440px);
  margin: 0 auto;
  text-align: center;
}
.tc-homepage-hero__scroller-container {
  overflow: hidden;
  white-space: nowrap;
}
.tc-homepage-hero__title {
  display: inline-block;
  font-family: 'Praetorian 3D', sans-serif;
  font-size: 165px;
  line-height: 175px;
  color: var(--text-primary, #ffffff);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.tc-homepage-hero__star {
  color: #ffffff;
  margin: 0 40px;
  font-size: 100px;
  vertical-align: middle;
}

/* =============================================================================
   2. BLOCK: BRAND STATEMENT
   ============================================================================= */
.tc-brand-statement {
  max-width: 891px;
  margin: 120px auto;
  text-align: center;
  padding: 0 20px;
}
.tc-brand-statement__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 100px;
  line-height: 110px;
  color: #344857;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.tc-brand-statement__body {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 34px;
  color: #868686;
}

/* =============================================================================
   3. BLOCK: SPLIT BANNER
   ============================================================================= */
.tc-split-banner {
  background: linear-gradient(145deg, #B2CDE4 0%, #032C50 100%);
  padding: 120px 60px;
  width: 100%;
}
.tc-split-banner__inner {
  max-width: var(--max-width-container, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tc-split-banner__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tc-split-banner__gallery-item img {
  width: 100%;
  height: 339px;
  object-fit: cover;
  border-radius: 20px;
}
.tc-split-banner__right-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tc-split-banner__title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 100px;
  line-height: 110px;
  color: #ffffff;
  text-transform: uppercase;
}
.tc-split-banner__body {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
}

/* =============================================================================
   4. BLOCK: FEATURED ARTICLES GRID
   ============================================================================= */
.tc-featured-articles {
  padding: 120px 60px;
  background-color: #ffffff;
}
.tc-featured-articles__inner {
  max-width: var(--max-width-container, 1440px);
  margin: 0 auto;
}
.tc-featured-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}
.tc-featured-articles__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tc-featured-articles__image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
}
.tc-featured-articles__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tc-featured-articles__image-wrapper img:hover {
  transform: scale(1.03);
}
.tc-featured-articles__card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}
.tc-featured-articles__card-prices {
  display: flex;
  gap: 12px;
}
.tc-featured-articles__card-price-sale {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}
.tc-featured-articles__card-price-reg {
  font-family: 'Inter', sans-serif;
  text-decoration: line-through;
  font-size: 18px;
  color: #868686;
}

/* =============================================================================
   5. BLOCK: PROMOTIONAL GALLERY
   ============================================================================= */
.tc-promotional-gallery {
  background: #f6f6f6;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}
.tc-promotional-gallery__inner {
  max-width: var(--max-width-container, 1440px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.tc-promotional-gallery__big-text {
  font-family: 'Praetorian 3D', sans-serif;
  font-size: 200px;
  line-height: 200px;
  color: #344857;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
.tc-promotional-gallery__featured-image {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
}
.tc-promotional-gallery__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tc-promotional-gallery__circle-button {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.tc-promotional-gallery__circle-text {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-align: center;
}
.tc-promotional-gallery__desc-block {
  max-width: 600px;
  text-align: center;
  margin-top: 40px;
}
.tc-promotional-gallery__desc-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 32px;
  color: #344857;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.tc-promotional-gallery__desc-body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #868686;
}

/* =============================================================================
   6. BLOCK: PARTNER STATEMENT
   ============================================================================= */
.tc-partner-statement {
  padding: 120px 60px;
  background-color: #ffffff;
}
.tc-partner-statement__inner {
  max-width: var(--max-width-container, 1440px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.tc-partner-statement__text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 38px;
  color: #868686;
  max-width: 1000px;
  margin: 0 auto;
}
.tc-partner-statement__logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.tc-partner-statement__logo-item img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.tc-partner-statement__logo-item img:hover {
  opacity: 1;
}
