/* ===================================
   GLOBAL STYLES
=================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
  padding-top: 100px;      /* space for fixed navbar */
  padding-bottom: 130px;   /* space for fixed footer */
}


/* ===================================
   FIXED NAVBAR
=================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 25px;
  background: linear-gradient(90deg, #ffccd5, #ffffff);
  color: #222;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5em;
  font-weight: 700;
  color: #2c3e50;
}

.logo img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links ul li a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  padding: 6px;
}

.nav-links ul li a:hover {
  border-bottom: 2px solid #222;
}


/* ===================================
   GALLERY SECTION
=================================== */
.gallery {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-style: italic;
  color: #2c3e50;
  text-decoration: underline;
}

.gallery-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}

.gallery-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.media-wrapper {
  width: 100%;
  height: 240px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-wrapper img,
.media-wrapper video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-item p {
  padding: 12px;
}


/* ===================================
   FIXED FOOTER
=================================== */
.site-footer {
    bottom: 0;
    width: 100%;
    background: #f9f9f9;
    color: #444;
    padding: 0px 0px;
    text-align: center;
    border: none;
    font-weight: 500;
    z-index: 9999;

}

   
  


.footer-wrapper {
  max-width: 900px;
  margin: auto;
}

.footer-heading {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.footer-contacts .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fa-solid, .fas {
  color: #5c6bc0;
}

.fa-brands, .fab{

  color: #5c6bc0;

}

.footer-contacts a {
  color: #333;

  text-decoration: none;
}

.footer-contacts a:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 10px;
}


/* ===================================
   RESPONSIVE NAVIGATION
=================================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 12px;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 12px;
  }

  .logo img {
    width: 65px;
  }
}

/* ===================================
   MOBILE RESPONSIVE
=================================== */
@media (max-width: 480px) {

  body {
    padding-top: 130px;    /* bigger space for stacked navbar */
    padding-bottom: 170px; /* bigger space for footer */
  }

  .gallery-items {
    grid-template-columns: 1fr;
  }

  .media-wrapper {
    height: 200px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 12px;
  }

  .footer-heading {
    font-size: 1.2rem;
  }
}
