@font-face {
  font-family: 'MyCustomFont';
  src: url('FontAwesome.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'MyCustomFont', Arial, sans-serif;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: white;
  z-index: 1000;
  transition: background 0.3s ease;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.85);
}
.logo, .menu-btn {
  font-size: 24px;
}
.menu-btn {
  cursor: pointer;
}

/* Side menu */
#sideMenu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  transition: right 0.3s ease;
  z-index: 999;
  padding-top: 60px;
  color: white;
}
#sideMenu.open {
  right: 0;
}
#sideMenu .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
#sideMenu a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#sideMenu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Slideshow */
.slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
}
.hero-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.hero-text .subtitle {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero-text .subtitle span {
  font-weight: bold;
  color: white;
}
.hero-text hr {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 10px auto;
}
.hero-text .main-title {
  font-size: 3em;
  font-weight: 300;
  margin-top: 10px;
}

/* Bubbles */
.bubbles {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
.bubble {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.bubble.active {
  background-color: white;
}

/* Text Boxes */
.content {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 15px;        /* Reduced padding */
  gap: 15px;                 /* Smaller gap between boxes */
  background: #f4f4f4;
}

.box {
  flex: 1 1 250px;           /* Reduced from 300px */
  background: white;
  padding: 10px;             /* Reduced from 15px */
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);  /* Slightly lighter shadow */
  text-align: center;
  font-size: 1.5rem;         /* Slightly smaller text */
}
.box img {
  max-width: 90%;            /* Slightly smaller image width */
  border-radius: 6px;        /* Match with reduced scale */
}
.featured-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.featured-text {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 40px;
  max-width: 800px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.featured-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.featured-text p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

