/* ======================
   HERO SECTION - RAMI STYLE
   ====================== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 650px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  padding: 3.5rem 4rem;
  border-radius: 0;
  max-width: 900px;
  width: 85%;
}

.hero-overlay h1 {
  font-size: 3rem;
  letter-spacing: 0;
  margin: 0 0 1.5rem 0;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

.hero-overlay p {
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
  color: #333;
  max-width: 750px;
  margin: 0 auto;
  text-align: justify;
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero {
    height: 55vh;
    min-height: 450px;
    max-height: 500px;
  }
  
  .hero-overlay {
    padding: 2rem 1.8rem;
    width: 85%;
  }
  
  .hero-overlay h1 {
    font-size: 1.9rem;
  }
  
  .hero-overlay p {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
    min-height: 400px;
    max-height: 450px;
  }
  
  .hero-overlay {
    padding: 1.5rem 1.3rem;
    width: 80%;
  }
  
  .hero-overlay h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .hero-overlay p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ======================
   STORY SECTION - MINIMAL
   ====================== */
.story {
  padding: 5rem 2rem;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0;
  line-height: 1.3;
}

.story-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

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

.story-image {
  width: 100%;
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive Story */
@media (max-width: 900px) {
  .story {
    padding: 4rem 2rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .story-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .story {
    padding: 3rem 1.5rem;
  }
  
  .story-text h2 {
    font-size: 1.75rem;
  }
  
  .story-text p {
    font-size: 1rem;
  }
}

/* ======================
   FULL WIDTH TEXT SECTION
   ====================== */
.full-text {
  padding: 4rem 2rem;
  background-color: #fafafa;
}

.full-text-content {
  max-width: 900px;
  margin: 0 auto;
}

.full-text-content p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

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

/* Responsive Full Text */
@media (max-width: 768px) {
  .full-text {
    padding: 3rem 2rem;
  }
  
  .full-text-content p {
    font-size: 1rem;
  }
}

/* ======================
   SPACE SECTION (like Rami)
   ====================== */
.space-section {
  padding: 5rem 2rem;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.space-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.space-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.space-text h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0;
  line-height: 1.3;
}

.space-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

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

/* Responsive Space Section */
@media (max-width: 900px) {
  .space-section {
    padding: 4rem 2rem;
  }
  
  .space-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .space-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .space-section {
    padding: 3rem 1.5rem;
  }
  
  .space-text h2 {
    font-size: 1.75rem;
  }
  
  .space-text p {
    font-size: 1rem;
  }
}

/* ======================
   VALUES SECTION - MINIMAL
   ====================== */
.values {
  padding: 6rem 2rem;
  margin-top: 5rem;
  background-color: #fafafa;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 3rem;
  color: #000;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.value-item h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 1rem;
  letter-spacing: 0;
}

.value-item p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
  font-weight: 300;
}

/* Responsive Values */
@media (max-width: 768px) {
  .values {
    padding: 4rem 2rem;
  }
  
  .values h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .value-item h3 {
    font-size: 1.2rem;
  }
  
  .value-item p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .values {
    padding: 3rem 1.5rem;
  }
  
  .values h2 {
    font-size: 1.75rem;
  }
}

