/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
/*  background: linear-gradient(135deg, #708090, #2f4f4f);  */
/*  background: linear-gradient(135deg, #708090, #5f7f7f);  */
  background: #000000;


  color: #0b1e4f;
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

a {
  text-decoration: none;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero-logo {
  width: 400px;
  max-width: 100%;
  height: auto;
  margin-bottom: 35px;
  transform: scale(1.8);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
}

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

  .nav-bar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
.page-title{
	text-align: 	center;
	font-size:	30px;
	margin-bottom:	30px;
	color:		#ffffff;
}

/****************************************************************
*/

/* ===== NAVIGATION ===== */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 33, 71, 0.95);
  padding: 10px 40px;
  border-bottom: 3px solid #ffc107;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-logo img {
  height: 105px;
  margin-right: 12px;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-item {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #ffc107;
}

.nav-item svg {
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
  fill: currentColor;
}

/* ===== TICKETS BUTTON ===== */
.nav-ticket {
/*  background-color: #ffc107;  */
  background-color: #ffffff;
  color: #002147;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-ticket svg {
  width: 26px;
  height: 26px;
  margin-bottom: 4px;
  fill: currentColor;
}

.nav-ticket:hover {
  background-color: #ffda4d;
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero-logo {
  width: 220px;
  max-width: 85%;
  height: auto;
  margin-bottom: 35px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

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

  .nav-bar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

