/* === Base Reset and Typography === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* === Header === */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px 0;
  margin-bottom: 40px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  height: 90px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

/* === Footer === */
.site-footer {
  background: #f9f7f7;
  color: #010000;
  padding: 0px 0;
  text-align: center;
  font-size: 0.9rem;
  width: 100%;
}

.site-footer .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #0e0d0d;
  margin: 0 10px;
  text-decoration: none;
}

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

/* === Responsive Layout === */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
}


.about-section {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3498db;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
  margin-bottom: 15px;
}

.fade-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  /**box-shadow: 0 4px 20px rgba(0,0,0,0.08);**/
}

.fade-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.fade-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fade-slide.active {
  opacity: 1;
  z-index: 1;
}

.fade-track {
  aspect-ratio: 4 / 3;
}

.fade-slide {
  object-fit: contain;
}
  
