/* About Page Styles */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Image Section */
.about-hero-image {
  width: 100%;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
}

.breadcrumb-link {
  color: #e74c3c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #c0392b;
  text-decoration: underline;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #999;
}

.breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Who We Are Section */
.who-we-are-section {
  background-color: #fff;
  padding: 60px 0 80px 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-family: "Arial", "Helvetica", sans-serif;
  letter-spacing: -1px;
}

.content-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-block {
  margin-bottom: 0;
}

.content-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  text-align: justify;
}

.section-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 40px 0 20px 0;
  line-height: 1.3;
  font-family: "Arial", "Helvetica", sans-serif;
}

.content-block:first-child .section-heading {
  margin-top: 0;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 120px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px 0;
  text-shadow: 4px 4px 0px #000, 8px 8px 0px rgba(0, 0, 0, 0.3);
  font-family: "Arial Black", "Helvetica", sans-serif;
  letter-spacing: -2px;
  transform: perspective(500px) rotateX(15deg);
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Arial", "Helvetica", sans-serif;
}

/* Why We Started Section */
.why-started-section {
  background-color: #fff;
  padding: 100px 0;
}

.why-started-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.text-content {
  padding-right: 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-family: "Arial", "Helvetica", sans-serif;
  letter-spacing: -0.5px;
}

.text-blocks p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 24px 0;
  font-family: "Arial", "Helvetica", sans-serif;
}

.text-blocks p:last-child {
  margin-bottom: 0;
}

.image-content {
  position: relative;
}

.store-image,
.team-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.store-image:hover,
.team-image:hover {
  transform: translateY(-5px);
}

/* Mission Section */
.mission-section {
  background-color: #f8f8f8;
  padding: 100px 0;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-section .text-content {
  padding-left: 20px;
}

.text-link {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}

.text-link:hover {
  color: #666;
}

/* Thank You Section */
.thank-you-section {
  background-color: #f0f0f0;
  padding: 120px 0;
  text-align: center;
}

.thank-you-title {
  font-size: 72px;
  font-weight: 700;
  color: #e74c3c;
  margin: 0;
  line-height: 1.1;
  font-family: "Brush Script MT", cursive, "Arial", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  display: inline-block;
}

/* Values Section */
.values-section {
  background-color: #fff;
  padding: 100px 0;
}

.values-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}

.values-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.values-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Arial", "Helvetica", sans-serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.value-item {
  padding: 0;
}

.value-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px 0;
  font-family: "Arial", "Helvetica", sans-serif;
}

.value-description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
}

/* Placeholder Images */
.store-image,
.team-image {
  background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
    linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
    linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-image::before {
  content: "Store Interior Image";
}

.team-image::before {
  content: "Team Photo";
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

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

  .page-title {
    font-size: 40px;
  }

  .content-wrapper {
    max-width: 700px;
  }

  .hero-title {
    font-size: 80px;
  }

  .why-started-content,
  .mission-content {
    gap: 60px;
  }

  .section-title {
    font-size: 32px;
  }

  .values-content {
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }

  .values-grid {
    gap: 40px 30px;
  }
}

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

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

  .breadcrumb-nav {
    padding: 15px 0;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .who-we-are-section {
    padding: 40px 0 60px 0;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .page-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .content-blocks {
    gap: 25px;
  }

  .content-block p {
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
  }

  .section-heading {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }

  .about-hero {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 60px;
    transform: none;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .why-started-section,
  .mission-section,
  .values-section {
    padding: 60px 0;
  }

  .thank-you-section {
    padding: 80px 0;
  }

  .why-started-content,
  .mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-content {
    grid-template-areas:
      "text"
      "image";
  }

  .mission-content .text-content {
    grid-area: text;
    padding-left: 0;
  }

  .mission-content .image-content {
    grid-area: image;
  }

  .text-content {
    padding-right: 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .thank-you-title {
    font-size: 48px;
    transform: rotate(-1deg);
  }

  .values-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-sidebar {
    position: static;
  }

  .values-sidebar-title {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    transform: none;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .store-image,
  .team-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero-image {
    height: 35vh;
    min-height: 250px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .breadcrumb-separator {
    margin: 0 6px;
  }

  .who-we-are-section {
    padding: 30px 0 50px 0;
  }

  .page-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .content-blocks {
    gap: 20px;
  }

  .content-block p {
    font-size: 14px;
    line-height: 1.5;
  }

  .section-heading {
    font-size: 18px;
    margin: 25px 0 12px 0;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 24px;
  }

  .thank-you-title {
    font-size: 36px;
  }

  .text-blocks p {
    font-size: 15px;
  }

  .value-description {
    font-size: 13px;
  }

  .store-image,
  .team-image {
    min-height: 250px;
    font-size: 12px;
  }
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-title,
.text-blocks p,
.value-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
  .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }

  .section-title.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .value-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
  }

  .value-item.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .about-hero {
    background: #f0f0f0;
    color: #000;
  }

  .hero-title {
    color: #000;
    text-shadow: none;
    transform: none;
  }

  .store-image,
  .team-image {
    background: #f0f0f0;
    border: 1px solid #ccc;
  }

  .thank-you-title {
    color: #000;
    transform: none;
  }
}
