.main-header {
  text-align: center; 
	
}
	
	body {
    background-image: url("https://i.ibb.co/qF0vCPYs/stadium.png");
    background-size: cover;
    background-repeat: no-repeat;
		background-attachment: fixed;
    font-size: 14px;

    margin: 0;
    font-family: 'Arial Black', Arial, sans-serif;
    background-color: #111; /* Use background-color instead of background */
		
}

/* NAVBAR */

.navbar {
    background: linear-gradient(90deg,rgba(219, 167, 58, 1) 0%, rgba(134, 65, 21, 1) 100%);
    padding: 0;
    position: relative;
    display: flex;
    width: 1200px;   /* Auto-adjust width */
    margin: 0 auto;       /* Center it */
}
#nav ul {
    display: inline-block;
}

.nav-container {
    max-width: 500px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGO */
.logo {
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 2px; 
}

/* MAIN MENU */
.nav-menu {
    list-style: none;
    display: flex;
	text-wrap: nowrap;
    margin: 0 0 0 0;
    padding: 0; 
	position: relative;
  z-index: 9999;
	
	
}
	
.nav-menu li {
    position: relative;
	margin-left: auto; 
	
	
}	

.nav-menu > li > a {
    display: block;
    padding: 18px 12px;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: bold;
    transition: 0.3s; 
	
}

.nav-menu > li > a:hover {
    background: #ffcc00;
    color: #000;
}

/* DROPDOWN */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #222;
    min-width: 200px;
    list-style: none;
    padding: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.dropdown li a {
    padding: 12px 16px;
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

.dropdown li a:hover {
    background: #ffcc00;
    color: #000;
}

/* SUB-SUB MENU */
.sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #333;
    min-width: 200px;
    list-style: none;
    padding: 0;
}

.dropdown,
.sub-dropdown,
.sub-sub-dropdown {
  position: absolute;
  z-index: 10000;
}

/* SHOW ON HOVER (DESKTOP) */
.nav-menu li:hover > .dropdown {
    display: block;
}

.dropdown li:hover > .sub-dropdown {
    display: block;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin: 4px 0;
}

/* Needed so submenu positions correctly */
.has-submenu {
  position: relative;
}

/* Third level menu */
.sub-sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #111;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
}

/* Show on hover */
.has-submenu:hover > .sub-sub-dropdown {
  display: block;
}

/* Link styling (optional but recommended) */
.sub-sub-dropdown li a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
    .nav-menu {
        flex-direction: column;
        position: relative;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
    }
	
	.nav-menu > li > a {
        color: #000;   /* Mobile text color */
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown,
    .sub-dropdown {
        position: static;
    }

    .nav-menu li:hover > .dropdown,
    .dropdown li:hover > .sub-dropdown {
        display: none;
    }

    .nav-menu li.open > .dropdown,
    .dropdown li.open > .sub-dropdown {
        display: block;
    }

    .hamburger {
        display: flex;
    }
}
	
	/* FOOTER */
	
	.site-footer {
  background: linear-gradient(90deg, rgba(219,167,58,1) 0%, rgba(134,65,21,1) 100%);
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 15px 0px 0px 0px;
  width: 1200px;          /* exact old width on a 1920 screen */
  margin: -14px auto 0;   /* center it */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  text-align: center;
}


.footer-left h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.footer-left p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 0;
  justify-content: center;  /* center links */
  margin: 0;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
	padding: 16px;
	
}

.footer-copy {
  margin: 10px 0 0 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

.footer-links a:hover {
    color: #ff0000;
}

.footer-bottom{
  max-width: 1200px;
  margin: 30px auto 0;      /* centers the block itself */
  text-align: right;        /* right-align the text inside */
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  opacity: 0.8;
}

.site-footer .footer-container{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;   /* center the whole group */
  align-items: center;
  gap: 40px;                 /* space between links and copyright */
}

.site-footer .footer-copy{
  margin: 0 !important;      /* kill margin-left:auto */
  text-align: center !important;
}

.site-footer .footer-links{
  justify-content: center;
}
	

