@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1d3b58;
  background-color: #ffffff;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  border-bottom: 2px solid #1d3b58;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

.logo img {
  height: 80px;
}

.brand-name {
  display: flex;
  gap: 6px;
  font-family: 'Bebas Neue', sans-serif;
  color: #1d3b58;
  font-weight: bold;
  align-items: baseline;
}

.brand-top {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 1px;
}

.brand-bottom {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #1d3b58;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  margin: 0;
}

nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: #1d3b58;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: #C9B037;
  transition: width 0.3s ease;
  width: 0%;
}

nav a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
   .logo {
    justify-content: flex-end;
    width: 100%;
  }

  .brand-name {
    display: none;
  }

  .logo img {
    height: 60px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav#mobileMenu {
    display: none;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  nav#mobileMenu.show {
    display: block;
  }

  .hamburger {
    display: block;
  }
}

/* Sections */
.section {
  height: 100vh;
  padding: 5rem 2rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section:nth-child(even) {
  background-color: #f4f4f4;
}

.carousel {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  height: 60vh;
  background: #e7e7e7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  display: none;
  font-family: 'Bebas Neue', sans-serif;
  color: #1d3b58;
}

.slide.active {
  display: block;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  width: 250px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.card img {
  max-width: 100%;
  height: auto;
}

.card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.card p {
  font-size: 0.95rem;
  color: #444;
}

/* Stats */
.stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 2rem 0;
}

.stat span {
  font-size: 2rem;
  font-weight: bold;
  color: #C9B037;
}

.stat p {
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* Footer */
footer {
  background: #2a2a2a;
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-left,
.footer-center,
.footer-right {
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid #BEBEBE;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  color: #BEBEBE;
}
