/* About Page Styles */

/* Reset and Base */
.about-page {
  background-color: #f5f5f5;
  font-family: "Cormorant Garamond", serif;
}

/* Hero Section */
.about-hero {
  padding: 80px 0 60px;
  text-align: center;
  background-color: #f5f5f5;
}

.about-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #000;
  margin: 0;
  text-transform: uppercase;
}

/* Main Content Container */
.about-content {
  background-color: #f5f5f5;
  padding: 0 0 100px;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  align-items: start;
}

/* Left Column */
.about-left {
  padding-right: 40px;
}

/* Introduction Wrapper with Curved Border */
.about-intro-wrapper {
  position: relative;
  padding: 100px 60px 50px 60px;
  margin-bottom: 60px;
  margin-left: 30px;
}

/* SVG Border */
.about-border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Left border label */
.border-label-left {
  position: absolute;
  top: 200px;
  left: -25px;
  transform: rotate(-90deg);
  transform-origin: center center;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-intro-content {
  position: relative;
  z-index: 1;
}

.about-intro {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 30px;
  max-width: 100%;
}

.about-intro strong {
  font-weight: 700;
}

.about-text {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
}

.about-text strong {
  font-weight: 700;
}

/* Main Image */
.about-image-wrapper {
  margin: 60px 0;
  width: 100%;
  max-width: 900px;
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Product Image */
.about-product-wrapper {
  margin: 60px 0;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-product-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Press Images */
.about-press-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 80px 0 40px;
  max-width: 900px;
}

.press-image-item {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.press-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Instagram Link */
.about-instagram {
  text-align: center;
  margin: 60px 0;
}

.about-instagram a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #333;
  transition: color 0.3s ease;
}

.about-instagram a:hover {
  color: #666;
}

/* Right Column */
.about-right {
  position: sticky;
  top: 120px;
  width: 380px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 10px;
}

.about-right::-webkit-scrollbar {
  width: 6px;
}

.about-right::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.about-right::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.about-right::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* Collaborations Section */
.collaborations-section {
  margin-bottom: 60px;
}

.collaborations-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: #d0d0d0;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.collaboration-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.collaboration-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.collaborations-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.collaborations-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.collaborations-list li {
  font-size: 13px;
  line-height: 1.8;
  color: #999;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.collaborations-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999;
}

/* Instagram Collage */
.instagram-collage {
  margin-bottom: 40px;
}

.collage-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-bottom: 5px;
}

.collage-row:last-child {
  margin-bottom: 0;
}

.collage-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.collage-row img:hover {
  opacity: 0.8;
}

/* Press Links Section */
.press-links-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
}

.press-links-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 400;
  color: #333;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.press-links-toggle:hover {
  color: #666;
}

.toggle-icon {
  font-size: 24px;
  font-weight: 300;
  display: inline-block;
  width: 20px;
  text-align: center;
}

.press-links-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.press-links-content.active {
  max-height: 1000px;
  margin-top: 20px;
}

.press-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-links-list li {
  margin-bottom: 16px;
}

.press-links-list li:last-child {
  margin-bottom: 0;
}

.press-links-list a {
  font-size: 13px;
  line-height: 1.6;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.press-links-list a:hover {
  color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-container {
    padding: 0 40px;
    gap: 60px;
  }

  .about-main-title {
    font-size: 42px;
    letter-spacing: 6px;
  }
}

@media (max-width: 968px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .about-right {
    position: static;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-left {
    padding-right: 0;
  }

  .about-main-title {
    font-size: 36px;
    letter-spacing: 4px;
  }

  .collaboration-images {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram-collage {
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .about-container {
    padding: 0 20px;
  }

  .about-hero {
    padding: 60px 0 40px;
  }

  .about-main-title {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .about-intro {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-image-wrapper,
  .about-product-wrapper {
    margin: 40px 0;
  }

  .about-press-images {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 60px 0 30px;
  }

  .press-image-item {
    aspect-ratio: 16/9;
  }

  .collaborations-title {
    font-size: 20px;
  }

  .collaboration-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .collage-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-bottom: 3px;
  }

  .press-links-toggle {
    font-size: 18px;
  }

  .toggle-icon {
    font-size: 24px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-intro,
.about-text,
.about-image-wrapper,
.about-product-wrapper {
  animation: fadeIn 0.6s ease-out;
}
