/* ====== Google Fonts ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* ====== General Styles ====== */
body {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background: #f2f4f8;
  color: #333;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

p {
  font-weight: 400;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ====== Logo Section ====== */
.logo {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.logo img {
  max-width: 220px;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.logo img:hover {
  transform: scale(1.08);
  opacity: 0.95;
}

/* ====== Hero Section ====== */
#hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-weight: 600;
  background: #e63946;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230,57,70,0.4);
}

.hero-btn:hover {
  background: #d62828;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.5);
}

/* ====== Grid Layout ====== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* ====== Card ====== */
.card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: block;
}

/* ====== Story Section ====== */
#story .story-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#story .story-text {
  flex: 1;
}

#story .story-text blockquote {
  margin-top: 1rem;
  font-style: italic;
  color: #444;
  border-left: 4px solid #e63946;
  padding-left: 1rem;
  background: #fff7f7;
  border-radius: 5px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ====== Footer ====== */
footer {
  background: #1a1a1a;
  color: #eee;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

footer a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e63946;
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* ====== Responsive Fix ====== */
@media (max-width: 768px) {
  #story .story-grid {
    flex-direction: column;
    text-align: center;
  }
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}