/* About Page Styles\r\n   Tasks:\r\n   1) Brand story and mission sections\r\n   2) Founder highlight and quote block\r\n   3) Special-features cards and gallery grid\r\n   4) CTA and responsive layout adjustments\r\n*/

/* Styles for: .about-header */
.about-header {
  --about-header-image: url('../images/ourcafeground.jpeg');
  margin-top: 70px;
  background-image: var(--about-header-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Styles for: .about-header::before */
.about-header::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.08;
  background: #ffffff;
  top: -50px;
  right: -50px;
  z-index: 1;
}

.about-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.about-header > * {
  position: relative;
  z-index: 2;
}

/* Styles for: .header-content h1 */
.header-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s;
}

/* Styles for: .tagline */
.tagline {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s;
}

/* Styles for: .subtitle */
.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  animation: fadeIn 1.5s;
}

/* Story section: 2-column text + visual placeholder */
/* Styles for: .our-story-section */
.our-story-section {
  padding: 80px 20px;
  background: var(--white);
}

/* Styles for: .story-content */
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Styles for: .story-text */
.story-text {
  animation: fadeInLeft 1s;
}

/* Styles for: .story-text p */
.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Styles for: .story-text strong */
.story-text strong {
  color: var(--primary-green);
  font-weight: 600;
}

/* Styles for: .story-image */
.story-image {
  animation: fadeInRight 1s;
}

/* Styles for: .image-placeholder */
.image-placeholder {
  background: linear-gradient(135deg, var(--light-green), var(--primary-green));
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow);
  transition: transform 0.3s;
}

/* Styles for: .image-placeholder:hover */
.image-placeholder:hover {
  transform: scale(1.05);
}

/* Styles for: .placeholder-icon */
.placeholder-icon {
  font-size: 8rem;
  display: block;
  margin-bottom: 20px;
}

/* Styles for: .image-placeholder p */
.image-placeholder p {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

/* Mission/vision/value card grid */
/* Styles for: .mission-section */
.mission-section {
  padding: 80px 20px;
  background: var(--cream);
}

/* Styles for: .mission-grid */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Styles for: .mission-card */
.mission-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 30px var(--shadow);
  transition: all 0.3s;
  animation: fadeInUp 0.8s;
}

/* Styles for: .mission-card:hover */
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px var(--shadow);
}

/* Styles for: .mission-icon */
.mission-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* Styles for: .mission-card h3 */
.mission-card h3 {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Styles for: .mission-card p */
.mission-card p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Styles for: .mission-card ul */
.mission-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

/* Styles for: .mission-card ul li */
.mission-card ul li {
  color: #666;
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

/* Styles for: .mission-card ul li::before */
.mission-card ul li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Founder profile section */
/* Styles for: .owner-section */
.owner-section {
  padding: 80px 20px;
  background: var(--white);
}

/* Styles for: .owner-content */
.owner-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Styles for: .owner-image .image-placeholder */
.owner-image .image-placeholder {
  background: linear-gradient(135deg, var(--wood-brown), var(--light-wood));
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styles for: .owner-info */
.owner-info {
  animation: fadeInRight 1s;
}

/* Styles for: .owner-info h3 */
.owner-info h3 {
  color: var(--primary-green);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Styles for: .owner-title */
.owner-title {
  color: var(--wood-brown);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Styles for: .owner-bio */
.owner-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Styles for: .owner-quote */
.owner-quote {
  background: var(--cream);
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid var(--primary-green);
  margin-top: 30px;
  position: relative;
}

/* Styles for: .quote-icon */
.quote-icon {
  font-size: 2rem;
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--white);
  padding: 5px;
  border-radius: 50%;
}

/* Styles for: .owner-quote p */
.owner-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary-green);
  font-weight: 600;
  margin: 0;
  padding-top: 10px;
}

/* "What makes us special" card grid */
/* Styles for: .special-section */
.special-section {
  padding: 80px 20px;
  background: var(--cream);
}

/* Styles for: .special-grid */
.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Styles for: .special-card */
.special-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s;
  animation: fadeInUp 0.6s;
}

/* Styles for: .special-card:hover */
.special-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px var(--shadow);
  border: 2px solid var(--primary-green);
}

/* Styles for: .special-icon */
.special-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

/* Styles for: .special-card h3 */
.special-card h3 {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Styles for: .special-card p */
.special-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Gallery placeholders and hover interactions */
/* Styles for: .gallery-section */
.gallery-section {
  padding: 80px 20px;
  background: var(--white);
}

/* Styles for: .gallery-subtitle */
.gallery-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

/* Styles for: .gallery-grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Styles for: .gallery-item */
.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s;
  animation: fadeIn 0.8s;
}

/* Styles for: .gallery-item:hover */
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px var(--shadow);
}

/* Styles for: .gallery-placeholder */
.gallery-placeholder {
  background: linear-gradient(135deg, var(--light-green), var(--primary-green));
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Styles for: .gallery-icon */
.gallery-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

/* Styles for: .gallery-placeholder p */
.gallery-placeholder p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* Bottom call-to-action banner */
/* Styles for: .cta-section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(120deg, #ffffff 0%, var(--primary-green) 52%, #ffffff 100%);
  color: var(--white);
  text-align: center;
}

/* Styles for: .cta-content h2 */
.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Styles for: .cta-content p */
.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Styles for: .cta-buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About page-only keyframes */
/* At-rule block: @keyframes float */
@keyframes float {
/* Rule block: 0%, 100% */
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
/* Rule block: 50% */
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* At-rule block: @keyframes fadeInLeft */
@keyframes fadeInLeft {
/* Styles for: from */
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
/* Styles for: to */
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* At-rule block: @keyframes fadeInRight */
@keyframes fadeInRight {
/* Styles for: from */
  from {
    opacity: 0;
    transform: translateX(50px);
  }
/* Styles for: to */
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* About page responsive behavior */
/* Large tablet and small laptop (<= 1200px). */
/* At-rule block: @media (max-width: 1200px) */
@media (max-width: 1200px) {
  .story-content,
  .owner-content,
  .mission-grid,
  .special-grid,
/* Styles for: .gallery-grid */
  .gallery-grid {
    max-width: 1000px;
  }

/* Styles for: .header-content h1 */
  .header-content h1 {
    font-size: 3rem;
  }
}

/* Tablet adjustments (<= 992px): reduce spacing while preserving hierarchy. */
/* At-rule block: @media (max-width: 992px) */
@media (max-width: 992px) {
/* Styles for: .about-header */
  .about-header {
    padding: 72px 16px;
  }

  .our-story-section,
  .mission-section,
  .owner-section,
  .special-section,
  .gallery-section,
/* Styles for: .cta-section */
  .cta-section {
    padding: 52px 16px;
  }

/* Styles for: .story-content */
  .story-content {
    gap: 30px;
  }

/* Styles for: .owner-content */
  .owner-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

/* Styles for: .owner-image .image-placeholder */
  .owner-image .image-placeholder {
    max-width: 320px;
    margin: 0 auto;
  }

  .mission-grid,
/* Styles for: .special-grid */
  .special-grid {
    gap: 20px;
  }
}

/* Existing mobile breakpoint (<= 768px). */
/* At-rule block: @media (max-width: 768px) */
@media (max-width: 768px) {
/* Styles for: .about-header */
  .about-header {
    padding: 60px 20px;
  }

/* Styles for: .header-content h1 */
  .header-content h1 {
    font-size: 2.5rem;
  }

/* Styles for: .tagline */
  .tagline {
    font-size: 1.3rem;
  }

/* Styles for: .subtitle */
  .subtitle {
    font-size: 1rem;
  }

/* Styles for: .story-content */
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

/* Styles for: .owner-content */
  .owner-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-grid,
/* Styles for: .special-grid */
  .special-grid {
    grid-template-columns: 1fr;
  }

/* Styles for: .gallery-grid */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

/* Styles for: .cta-content h2 */
  .cta-content h2 {
    font-size: 2rem;
  }

/* Styles for: .cta-buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

/* Styles for: .cta-buttons .btn */
  .cta-buttons .btn {
    width: 80%;
  }
}

/* Small mobile (<= 576px): compact cards, text, and placeholders. */
/* At-rule block: @media (max-width: 576px) */
@media (max-width: 576px) {
/* Styles for: .about-header */
  .about-header {
    margin-top: 64px;
    padding: 44px 12px;
  }

/* Styles for: .about-header::before */
  .about-header::before {
    width: 110px;
    height: 110px;
    top: -30px;
    right: -30px;
  }

/* Styles for: .header-content h1 */
  .header-content h1 {
    font-size: 1.9rem;
  }

/* Styles for: .tagline */
  .tagline {
    font-size: 1rem;
  }

/* Styles for: .subtitle */
  .subtitle {
    font-size: 0.95rem;
  }

  .our-story-section,
  .mission-section,
  .owner-section,
  .special-section,
  .gallery-section,
/* Styles for: .cta-section */
  .cta-section {
    padding: 28px 10px;
  }

  .story-text p,
  .owner-bio,
/* Styles for: .special-card p */
  .special-card p {
    font-size: 0.95rem;
  }

/* Styles for: .image-placeholder */
  .image-placeholder {
    padding: 28px 14px;
  }

/* Styles for: .placeholder-icon */
  .placeholder-icon {
    font-size: 4rem;
  }

  .mission-card,
  .special-card,
/* Styles for: .info-card */
  .info-card {
    padding: 18px 14px;
  }

  .mission-card h3,
/* Styles for: .special-card h3 */
  .special-card h3 {
    font-size: 1.25rem;
  }

/* Styles for: .gallery-grid */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

/* Styles for: .gallery-icon */
  .gallery-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

/* Styles for: .gallery-placeholder p */
  .gallery-placeholder p {
    font-size: 0.9rem;
  }

/* Styles for: .cta-content h2 */
  .cta-content h2 {
    font-size: 1.5rem;
  }

/* Styles for: .cta-content p */
  .cta-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

/* Styles for: .cta-buttons .btn */
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Extra-small phones (<= 420px): one-column gallery and tighter text scales. */
/* At-rule block: @media (max-width: 420px) */
@media (max-width: 420px) {
/* Styles for: .gallery-grid */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

/* Styles for: .owner-info h3 */
  .owner-info h3 {
    font-size: 1.8rem;
  }
}




