@charset "UTF-8";
/* ---------- Reset & Base Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body, html {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  background: #FDECEF;
  color: #ff83c1;            
  line-height: 1.6;
  text-align: center;
  opacity: 0;                   /* start invisible */
  animation: fadeIn 1.5s ease forwards; 
}

/* ---------- Headings & Paragraphs ---------- */
h1 { font-size: 3rem; margin-bottom: 10px; color: #ff83c1; }
h2 { font-size: 2.5rem; margin: 20px 0 10px; }
h3 { font-size: 2rem; margin: 15px 0; }
p  { font-size: 1rem; margin-bottom: 15px; }

/* ---------- Links ---------- */
a {
  color: #0077cc;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* ---------- Containers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Hero Section ---------- */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero-logo, .hero-animation {
  width: 250px;  /* adjust size */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

/* ---------- Hero Video (if used) ---------- */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* ---------- Grid / Social Section ---------- */
.social-grid, .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 600px;
  margin: 40px auto;
  justify-items: center;
}

.social-grid img {
  width: 80px;
  height: auto;
  transition: transform 0.3s;
}

.social-grid img:hover {
  transform: scale(1.5);
  cursor: pointer;
}

/* ---------- Images ---------- */
img {
  max-width: 100%;
  height: auto;
}

/* ---------- Footer ---------- */
footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #555;
}

/* ---------- Media Queries ---------- */

/* Tablets / medium screens */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

 .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 15px; }

/* Small devices / phones */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  p  { font-size: 0.9rem; }

  .grid-3 { grid-template-columns: 1fr; gap: 10px; }
  .hero { padding: 40px 15px; }
  .hero-logo, .hero-animation { width: 120px; }
}

/* Extra small devices / very small phones */
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }
  p  { font-size: 0.8rem; }

  .container { padding: 0 10px; }
  .hero-logo, .hero-animation { width: 100px; }
  .social-grid, .grid-3 { gap: 10px; }
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 15px;                  /* reduce spacing for smaller screen */
  }
  .hero-animation {
    width: 200px;  /* bigger on phones */
  }
  .social-grid img {
    width: 60px; /* smaller logos for phones */
  }
}



@media (max-width: 480px) {
  .hero-animation {
    width: 220px;  /* extra big on very small phones */
  }
}