@charset "UTF-8";

/* =========================
   VARIABLES (easy theming)
========================= */
:root {
  --bg: #ffffff;
  --text: #222;
  --text-light: #444;
  --accent: #111;
  --fade-bg: #fdfbf8;

  --radius: 10px;
  --transition: 0.3s ease;
}

/* =========================
   FASHION HIGHLIGHT
========================= */
.fashion-highlight {
	
  padding: 80px 20px;
  text-align: center;
  background: var(--bg);
}

.fashion-highlight .center {
  max-width: 700px;
  margin: auto;
}

.fashion-highlight .section-title {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* =========================
   TOGGLE SYSTEM
========================= */
.fashion-highlight #toggle {
  display: none;
}

.fashion-highlight .content-wrapper {
  position: relative;
  max-height: 400px; /* unified value */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.fashion-highlight #toggle:checked ~ .content-wrapper {
  max-height: 1000px;
}

/* =========================
   TEXT
========================= */
.fashion-highlight .text-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

/* =========================
   FADE OVERLAY
========================= */
.fashion-highlight .fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--fade-bg));
  pointer-events: none;
  transition: opacity var(--transition);
}

.fashion-highlight #toggle:checked ~ .content-wrapper .fade-overlay {
  opacity: 0;
}

/* =========================
   BUTTON
========================= */
.fashion-highlight .read-more-btn {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 10px 25px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
}

.fashion-highlight .read-more-btn::after {
  content: "READ MORE";
}

.fashion-highlight #toggle:checked ~ .read-more-btn::after {
  content: "READ LESS";
}

.fashion-highlight .read-more-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* =========================
   CARD / ZOOM
========================= */
.fashion-highlight .zoom {
  border-radius: var(--radius);
  background: #E7E7E7;
  padding: 60px 20px 20px;
  transition: transform var(--transition);
}

.fashion-highlight .zoom:hover {
  transform: scale(1.02); /* slightly smoother */
}

/* =========================
   LANGUAGE SWITCHER
========================= */


	
}
.language-switcher {
  font-size: 13px;
  letter-spacing: 1px;
	align-self: center
	
}

.language-switcher a {
  color: var(--accent);
  text-decoration: none;
  opacity: 0.7;
  margin: 0 6px;
  transition: opacity var(--transition);
}

.language-switcher a:hover {
  opacity: 1;
	color: #e6007e
}

.language-switcher a[aria-current="page"] {
  opacity: 1;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 6px;
}

.language-switcher .separator {
  color: #888;
}

/* =========================
   HERO / COVER
========================= */
.cover {
  position: relative;
  height: 72vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.cover-logo {
  width: 360px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.cover-title {
  font-family: "Didot", serif;
  font-size: clamp(40px, 6vw, 100px); /* responsive improvement */
  letter-spacing: -1px;
  margin-top: 200px; /* reduced from 400px */
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

.cover-tagline {
  margin-top: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.6s;
}

/* =========================
   TYPOGRAPHY
========================= */
main {
  max-width: 900px;
  margin: 90px auto;
  padding: 0 24px;
  text-align: center;
}

h1.section-title {
  font-family: "Didot", serif;
  font-size: clamp(32px, 4vw, 48px);
}

h2.section-subtitle {
  font-size: 28px;
  margin: 80px 0 24px;
  font-family: "Didot", serif;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .fashion-highlight .content-wrapper {
    max-height: 150px;
  }

  .fashion-highlight .text-content {
    font-size: 14px;
  }

  .cover-title {
    margin-top: 120px;
  }
}

