/* ========================================
   ABOUT.CSS - Updated from source
   Generated from source/style.css
   ======================================== */

/* ===== ABOUT DETAILED ===== */

.about-detailed {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.02) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.about-detailed__container {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-detailed__content {
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem;
  border-radius: 25px;
  border: 3px solid rgba(212, 165, 116, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(15px);
  position: relative;
}

.about-detailed__content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(212, 165, 116, 0.1));
  border-radius: 27px;
  z-index: -1;
}

.about-detailed__text {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-image-placeholder {
  height: 450px;
  background: linear-gradient(135deg, var(--primary-color), var(--brand-primary-light));
  border-radius: 20px;
  border: 2px solid rgba(212, 165, 116, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem;
  transition: var(--transition);
}

.about-image-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* About photo styles */
.about-detailed__image {
  position: relative;
  padding: .15rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  border: 3px solid rgba(212, 165, 116, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(15px);
  height: fit-content;
  width: fit-content;
  max-width: 100%;
  align-self: center;
  justify-self: center;
}

.about-detailed__image::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(212, 165, 116, 0.1));
  border-radius: 25px;
  z-index: -1;
}

.about-detailed__photo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 800px;
  min-height: 400px;
  object-fit: contain;
  border-radius: 25px;
  border: 2px solid rgba(212, 165, 116, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: block;
}

.about-detailed__photo:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 165, 116, 0.7);
}



/* ===== VALUES SECTION ===== */

.values {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.03) 0%, rgba(255, 255, 255, 0.97) 100%);
  padding: 4rem 0;
}

.values .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.value-item {
  text-align: center;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  border: 3px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  position: relative;
}

.value-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(212, 165, 116, 0.05));
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 165, 116, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-item:hover::before {
  opacity: 1;
}

.value-item__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--brand-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
  transition: all 0.3s ease;
}

.value-item:hover .value-item__icon {
  transform: scale(1.1) rotateY(360deg);
  box-shadow: 0 12px 25px rgba(212, 165, 116, 0.4);
}

.value-item__title {
  margin-bottom: 1rem;
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE STYLES ===== */

/* About Detailed Section Mobile Improvements */
@media screen and (max-width: 1024px) {
  .about-detailed__container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  
  .about-detailed__image {
    max-width: 100%;
    width: 100%;
  }
  
  .about-detailed__photo {
    max-height: 600px;
    min-height: 350px;
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 768px) {
  /* Page Header */
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .page-header__title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  
  .page-header__subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  /* About Detailed Section */
  .about-detailed {
    padding: 3rem 0;
  }
  
  .about-detailed__container {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .about-detailed__content {
    padding: 2rem;
    border-radius: 20px;
    border-width: 2px;
  }
  
  .about-detailed__content::before {
    border-radius: 22px;
  }
  
  .about-detailed__text {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  
  .about-detailed__image {
    padding: 0.5rem;
    border-radius: 20px;
    border-width: 2px;
    max-width: 100%;
    width: 100%;
  }
  
  .about-detailed__image::before {
    border-radius: 22px;
  }
  
  .about-detailed__photo {
    max-height: 500px;
    min-height: 300px;
    border-radius: 20px;
  }
  
  /* Values Section */
  .values {
    padding: 3rem 0;
  }
  
  .values .container {
    padding: 0 1rem;
  }
  
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .value-item {
    padding: 2rem;
    border-radius: 20px;
    border-width: 2px;
  }
  
  .value-item::before {
    border-radius: 22px;
  }
  
  .value-item__icon {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
  }
  
  .value-item__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .value-item__description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  /* Page Header */
  .page-header {
    padding: 5rem 0 2.5rem;
  }
  
  .page-header__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .page-header__subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  
  /* About Detailed Section */
  .about-detailed {
    padding: 2.5rem 0;
  }
  
  .about-detailed__container {
    gap: 1.5rem;
    padding: 0 0.75rem;
  }
  
  .about-detailed__content {
    padding: 1.5rem;
    border-radius: 18px;
  }
  
  .about-detailed__content::before {
    border-radius: 20px;
  }
  
  .about-detailed__text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .about-detailed__image {
    padding: 0.4rem;
    border-radius: 18px;
  }
  
  .about-detailed__image::before {
    border-radius: 20px;
  }
  
  .about-detailed__photo {
    max-height: 400px;
    min-height: 250px;
    border-radius: 18px;
  }
  
  /* Values Section */
  .values {
    padding: 2.5rem 0;
  }
  
  .values .container {
    padding: 0 0.75rem;
  }
  
  .values__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .value-item {
    padding: 2rem;
    border-radius: 18px;
  }
  
  .value-item::before {
    border-radius: 20px;
  }
  
  .value-item__icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .value-item__title {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }
  
  .value-item__description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
