
.Values-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center; /* Center the cards horizontally */
}

/* --- Card Wrapper (The Thin Border) --- */
.card-wrapper {
    width: 260px;
    height: 380px;
    border: 1px solid #333; /* The thin black border */
    padding: 8px; /* The gap between the border and the colored box */
    border-radius: 6px;
    transition: transform 0.3s ease;
}

/* Stagger effect: Pushes the 2nd and 4th card down */
.card-wrapper.down {
    margin-top: 50px;
}

/* --- Card Inner (The Colored Box) --- */
.card-inner {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes Icon to top, Text to bottom */
    transition: all 0.4s ease; /* Smooth transition for color */
    cursor: pointer;
}

/* --- Typography & Icons --- */
.icon i {
    font-size: 2.5rem;
    color: #000;
}

.content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.content p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
    opacity: 0; /* Hidden by default */
    transform: translateY(10px); /* Slid down slightly */
    transition: all 0.4s ease;
}

/* --- Default Background Colors (From Image 1) --- */
.bg-mauve { background-color: #B5A5A5; }
.bg-light { background-color: #EBEBEB; }
.bg-grey  { background-color: #CFCFCF; }
.bg-white { background-color: #FFFFFF; border: 1px solid #eee; }

/* Special override: Image 1 shows text visible on "About" and "Vision" by default? 
   If you want text ALWAYS visible, remove opacity: 0 in .content p. 
   Below, I keep the "Mission" behavior where text appears on hover. */


/* --- HOVER EFFECTS --- */

/* 1. Change Background Color */
.card-wrapper:hover .card-inner {
    background-color: #F2D5B6; /* The Peach color from Image 2 */
}

/* 2. Reveal Text */
.card-wrapper:hover .content p {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Optional: Change icon rotation on hover for style */
.card-wrapper:hover .icon i {
    transform: scale(1.1);
    transition: transform 0.3s;
}
/* Page-specific styles for About page */
.about-hero {
  /* Use a subtle gradient for the hero. If you want the logo shown
               keep it as a small accent rather than a cover image. */
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  /* Optional logo accent on the right, sized with `contain` so it doesn't scale huge */
  background-image: url("assets/logo/Vrtaj Logo.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 160px auto; /* keep logo small and proportional */
  color: black;
  padding: 80px 0;
  text-align: left;
}
.about-hero .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-title {
  font-size: 42px;
  margin: 0 0 10px;
  font-weight: 700;
}
.hero-subtitle {
  font-size: 18px;
  margin: 0;
  color: #555;
}

/* Established (2014) split section */
.established-section {
  padding: 70px 0;
  background: #faf7f6;
}

.established-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.established-media {
  position: relative;
}

.established-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.established-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.established-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: #0d5a53;
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.established-badge__top {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.9;
}

.established-badge__year {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-top: 6px;
}

.established-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #1f1f1f;
}

.established-text {
  color: #4a4a4a;
  line-height: 1.9;
  margin: 0 0 14px;
}

.established-highlights {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.established-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e8e3e1;
  border-radius: 12px;
  background: #fff;
  color: #333;
}

.established-chip i {
  color: #d33;
  font-size: 16px;
}

@media (max-width: 900px) {
  .established-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .established-photo img {
    height: 380px;
  }
  .established-title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .established-section {
    padding: 50px 0;
  }
  .established-photo img {
    height: 300px;
  }
  .established-badge {
    left: 14px;
    bottom: 14px;
    padding: 14px 14px;
  }
  .established-badge__year {
    font-size: 34px;
  }
  .established-title {
    font-size: 26px;
  }
  .established-highlights {
    grid-template-columns: 1fr;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: -40px auto 40px;
  max-width: 1100px;
  padding: 0 20px;
}
.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.stat-number {
  font-size: 24px;
  color: #d33;
  font-weight: 700;
}
.stat-label {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

.about-hero-content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section {
  padding: 60px 0;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.core-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.value-icon {
  font-size: 22px;
  color: #d33;
  margin-bottom: 10px;
}
.value-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.about-journey {
  background: #faf7f6;
  padding: 60px 0;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #f3dcdc;
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-year {
  font-weight: 700;
  color: #d33;
  margin-bottom: 6px;
  font-size: 16px;
}

.timeline-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.join-cta {
  color: black;
  padding: 50px 0;
  text-align: center;
}
.join-cta .button {
  display: inline-block;
  background: #fff;
  color: #b12020;
  border: 1px solid #b12020;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .core-values {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Timeline: single column layout for tablet */
  .timeline {
    padding: 20px 10px;
  }
  .timeline:before {
    left: 20px;
    transform: none;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 15px 15px 15px 50px;
    margin-bottom: 10px;
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }
  /* Add dot indicator on the timeline */
  .timeline-item::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: #d33;
    border-radius: 50%;
    border: 3px solid #faf7f6;
    z-index: 1;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .core-values {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 28px;
  }
  /* Timeline: more compact on small screens */
  .about-journey {
    padding: 40px 0;
  }
  .timeline {
    padding: 15px 5px;
  }
  .timeline:before {
    left: 15px;
    width: 3px;
  }
  .timeline-item {
    padding: 12px 10px 12px 40px;
    margin-bottom: 8px;
  }
  .timeline-item::before {
    left: 10px;
    top: 16px;
    width: 10px;
    height: 10px;
  }
  .timeline-year {
    font-size: 14px;
  }
  .timeline-desc {
    font-size: 13px;
  }
}

/* Store banner: full-bleed image with centered overlay text */
.store-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.store-banner__bg {
  width: 100%;
  height: 420px;
  /* Path is relative to this CSS file (assets/css). Use ../image/... */
  background-image: url('../image/our_store.webp');
  background-size: cover;
  background-position: center center;
  filter: brightness(0.7);
}
.store-banner__overlay {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-banner__title {
  color: white;
  font-size: 42px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
.store-banner__text {
  color: lightgray;
  font-size: 18px;
  /* max-width: 600px; */
  width: 100%;
  line-height: 1.6;
  text-align: center;
  padding: 0 15vw;
}
.store-banner .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


@media (max-width: 900px) {
  .store-banner__bg { height: 350px; }
  .store-banner__title { font-size: 32px; }
  .store-banner__text {
    padding: 0 8vw;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .store-banner__bg { height: auto; min-height: 320px; }
  .store-banner__title { font-size: 22px; letter-spacing: 1px; }
  .store-banner__text {
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.7;
  }
  .store-banner__overlay {
    padding: 40px 0;
  }
  .store-banner .container {
    padding: 0 15px;
  }
}

/* What We Offer section */
.offer-section {
  padding: 60px 0;
  background: #fff;
}
.offer-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
}
.offer-left .kicker {
  color: #0d5a53;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.offer-left .offer-title {
  font-size: 56px;
  line-height: 1;
  margin: 0;
  color: var(--primary-color);
  font-weight: 700;
}
.offer-right .offer-heading {
  font-size: 32px;
  color: #333;
  margin: 0 0 18px;
}
.offer-right .offer-text {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 14px;
}
.offer-right .muted {
  opacity: 0.85;
  font-size: 14px;
}

@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; gap: 24px; }
  .offer-left .offer-title { font-size: 40px; }
  .offer-right .offer-heading { font-size: 26px; }
}

@media (max-width: 480px) {
  .offer-left .offer-title { font-size: 28px; }
  .offer-right .offer-heading { font-size: 20px; }
}
