/* About Page Specific Styles */

/* Hero Section */
.about-hero {
  margin-top: 70px;
  padding: 2rem 0rem;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-gold);
  opacity: 0.1;
  border-radius: 50%;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--primary-brown);
  opacity: 0.08;
  border-radius: 50%;
}

.hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
  padding: 6rem 2rem 6rem 2rem;
}

.about-hero h1 {
  font-size: clamp(3rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #5a5e3a;
  line-height: 1.2;
}

.about-hero p {
  font-size: 1.4rem;
  color: #4a4d30;
  line-height: 1.8;
  font-style: italic;
}

.hero-image {
  position: relative;
  height: 350px;
  border: 5px solid white;
  border-radius: 10px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Main Content */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
}

.content-section {
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.content-section h2 {
  font-size: 2.5rem;
  color: var(--primary-brown);
  margin-bottom: 2rem;
  font-weight: 700;
}

.content-section p {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.content-section .highlight {
  font-style: italic;
  color: var(--primary-brown);
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  padding: 2.5rem;
  background: var(--bg-light);
  border-radius: 20px;
  margin: 3rem 0;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.column {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.column::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
}

.column:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.column h3 {
  font-size: 1.8rem;
  color: var(--primary-brown);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.column p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
}

.column ul li:before {
  content: "✓";
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
}

/* Quote Section - About specific */
.quote-section {
  background: var(--gradient-1);
  padding: 3.5rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  margin: 4rem 0;
  box-shadow: 0 15px 50px rgba(123, 90, 62, 0.2);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.quote-section p {
  font-size: 1.3rem;
  font-style: italic;
  color: white;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* Founding Story */
.founding-story {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  margin: 3rem 0;
  position: relative;
  border-left: 6px solid var(--primary-gold);
}

.founding-story h3 {
  font-size: 1.8rem;
  color: var(--primary-brown);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.founding-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Footer Quote */
.footer-quote {
  background: var(--bg-light);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-quote::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--primary-gold);
  opacity: 0.08;
  border-radius: 50%;
}

.footer-quote::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: var(--accent-terracotta);
  opacity: 0.08;
  border-radius: 50%;
}

.footer-quote p {
  font-size: 1.6rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  color: var(--primary-brown);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-text {
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero-image {
    height: 350px;
    min-height: 350px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    padding: 3rem 1.5rem;
  }

  .content-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1.2rem;
  }

  .hero-image {
    height: 300px;
    min-height: 300px;
  }

  .column {
    padding: 2rem;
  }

  .column h3 {
    font-size: 1.5rem;
  }

  .founding-story {
    padding: 2rem;
  }

  .founding-story h3 {
    font-size: 1.5rem;
  }

  .quote-section {
    padding: 2.5rem 2rem;
    margin: 3rem 0;
  }

  .quote-section p {
    font-size: 1.1rem;
  }

  .footer-quote {
    padding: 3rem 1.5rem;
  }

  .footer-quote p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 1.5rem 0;
  }

  .hero-text {
    padding: 2rem 1rem;
  }

  .about-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .hero-image {
    height: 250px;
    min-height: 250px;
    margin: 0 1rem;
  }

  .about-content {
    padding: 2rem 1rem;
  }

  .content-section {
    margin-bottom: 2.5rem;
  }

  .content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .content-section p {
    font-size: 1rem;
  }

  .content-section .highlight {
    font-size: 1.1rem;
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .column {
    padding: 1.5rem;
  }

  .column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .column p,
  .column ul li {
    font-size: 1rem;
  }

  .founding-story {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .founding-story h3 {
    font-size: 1.3rem;
  }

  .founding-story p {
    font-size: 1rem;
  }

  .quote-section {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    border-radius: 20px;
  }

  .quote-section p {
    font-size: 1rem;
  }

  .footer-quote {
    padding: 2.5rem 1rem;
  }

  .footer-quote p {
    font-size: 1.1rem;
  }
}
