* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:Arial;
}

body {
  background: #0f0f0f;
  color: #ffffff;
}

/* NAVIGATION */
nav {
  background: rgba(0, 0, 0, 0.85);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 15px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ef4135;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* HERO */
.culture-hero {
  height: 85vh;
  background: url("https://thumbs.dreamstime.com/b/everyday-life-local-people-tourists-marseille-france-november-old-sea-port-sunset-ferris-wheel-docks-128444031.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 64px;
  letter-spacing: 4px;
  animation: fadeDown 1.2s ease;
}

.hero-content p {
  font-size: 20px;
  opacity: 0.9;
  animation: fadeUp 1.2s ease;
}

/* INTRO */
.intro {
  max-width: 900px;
  margin: 80px auto;
  text-align: center;
}

.intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #dddddd;
}

/* FLEX SECTIONS */
.flex-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 40px;
}

.flex-section.reverse {
  flex-direction: row-reverse;
}

.flex-text {
  flex: 1;
  padding: 80px;
  background: #1b1b1b;
}

.flex-text.dark {
  background: #141414;
}

.flex-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.flex-text p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.flex-img {
  width: 400px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.flex-img:hover {
  transform: scale(1.05);
}


.img-life {
  background-image: url("https://www.parisperfect.com/blog/wp-content/uploads/2019/05/11-of-the-Best-Food-Streets-in-Paris-by-Paris-Perfect9.jpg");
}

.img-cafe {
  background-image: url("https://guidingstars.com/wp-content/uploads/2024/08/restaurant-menu-street-1024x683.jpg");
}

/* CARDS */
.cards-section {
  padding: 100px 60px;
  text-align: center;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  width: 250px;
  background: #222;
  padding: 30px;
  border-radius: 14px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card h4 {
  margin-bottom: 10px;
  color: #ef4135;
}

/* IMAGE STRIP */
.image-strip {
  display: flex;
  height: 350px;
}

.image-strip div {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 0.5s;
}

.image-strip div:hover {
  flex: 2;
}

.strip-1 {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
}
.strip-2 {
  background-image: url("https://images.unsplash.com/photo-1471623432079-b009d30b6729");
}
.strip-3 {
  background-image: url("https://media.istockphoto.com/id/1695647173/photo/cityscape-of-paris.jpg?s=612x612&w=0&k=20&c=Mx5ynWUAmLtM9Xnxe28adkc75L453BFv_y7BO-fl7dM=");
}

/* QUOTE */
.quote {
  padding: 100px 20px;
  background: #ca655e;
  text-align: center;
}

.quote p {
  font-size: 32px;
  font-style: italic;
  height:100;
}

/* FOOTER */
footer {
  background: #000;
  padding: 50px 20px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-content h4 {
  margin-bottom: 10px;
  color: #ef4135;
}

.footer-content a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-content a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* ANIMATIONS */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .flex-section {
    flex-direction: column;
  }

  .flex-text {
    padding: 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}
