/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0d0d0d;
  color: #e0e0e0;
  line-height: 1.8;
  overflow-x: hidden;
}

/* HERO HEADER */
header {
  position: relative;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(120deg, #ff416c, #ff4b2b);
  overflow: hidden;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

header .subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-top: 1rem;
}

/* Floating shapes */
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 10s ease-in-out infinite;
}

.shape1 {
  width: 150px; height: 150px; background: #ff416c; top: 10%; left: 5%;
}

.shape2 {
  width: 200px; height: 200px; background: #ff4b2b; top: 50%; left: 80%;
}

.shape3 {
  width: 120px; height: 120px; background: #ff7e5f; top: 70%; left: 30%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg);}
  50% { transform: translateY(-20px) rotate(45deg);}
}

/* Container */
.container {
  width: 90%;
  max-width: 900px;
  margin: 2rem auto;
}

/* Content Card */
.content-card {
  background: #1e1e1e;
  padding: 3rem 2rem;
  border-radius: 15px;
  border-left: 6px solid #ff4b2b;
  box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}

.content-card p {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  color: #ddd;
}

/* Pull quotes */
blockquote {
  font-size: 1.5rem;
  color: #ff4b2b;
  font-weight: 600;
  border-left: 4px solid #ff4b2b;
  padding-left: 1rem;
  margin: 2rem 0;
  background: rgba(255, 75, 43, 0.05);
  border-radius: 6px;
}

/* Image styling */
.image-container {
  text-align: center;
  margin: 1.5rem 0;
}

.image-container img {
  width: 80%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  display: inline-block;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* Footer */
footer {
  background: #121212;
  color: #888;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  .content-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }
  header .subtitle {
    font-size: 1rem;
  }
  .content-card p {
    font-size: 1rem;
  }
  .image-container img {
    width: 90%;
    max-width: 250px;
  }
}
