/* ==================== GLOBAL ==================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==================== HEADER ==================== */
.header {
  background-color: #000;
  color: white;
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #ffd700;
  transform: scale(1.05);
}



/* ==================== HERO SECTION ==================== */
#home{
  text-align: center;
  font-size: 32px;
  margin: 40px 0 20px 0;
  color: #000;
}
.hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  margin: 40px 0;
}

.hero-section .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-section h2 {
  color: #ffd700;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-section p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.btn {
  display: inline-block;
  background-color: #ffd700;
  color: #2E2E2E;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn:hover {
  background-color: #e6c200;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-img {
  width: 100%;
  max-width: 800px;
  height: 450px;
  object-fit: cover;
  margin: 30px auto 0 auto;
  transform: rotate(5deg) translateX(10px);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ==================== SECTION TITLE ==================== */
#home {
  text-align: center;
  font-size: 32px;
  margin: 50px 0 20px;
  color: #000;
}

/* ==================== HIGHLIGHTS ==================== */
.highlights .container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 60px;
}

.highlight-box {
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 20px;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.highlight-box:hover { 
  transform: translateY(-8px);
}

.highlight-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.highlight-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
}

.highlight-box p {
  color: #555;
}
/* ==================== FOOTER ==================== */
.footer {
  background-color: #000000; 
  color: white;
  padding: 40px 0;
  margin-top: 40px;
  box-shadow: 0 -4px 8px rgba(0,0,0,0.3);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box {
  flex: 1;
  min-width: 220px;
  margin: 10px;
}

.footer-box h3 {
  margin-bottom: 15px;
  color: #ffd700;
  font-size: 18px;
  font-weight: bold;
}

.footer-box a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.3s, transform 0.2s;
}

.footer-box a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #ccc;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .highlights {
    flex-direction: column;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-box {
    margin: 15px 0;
  }

  .hero-img {
    transform: rotate(0deg);
    width: 100%;
    height: auto;
  }

  .hero-section h2 {
    font-size: 32px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 16px;
  }
  .header-container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .logo {
    text-align: left;
    flex: 0 0 auto;
  }

  .navbar {
    text-align: right;
    margin-top: 0;
    flex: 0 0 auto;
  }
}


