@charset "UTF-8";
/* CSS Document */


.container {
    overflow-y: auto;
    height: 100vh; /* Ajusta según lo necesario */
    -webkit-overflow-scrolling: touch;
}




/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
	font-family: "Montserrat", sans-serif;
	background-color: #eee;
}


.montserrat-p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}


p {
    font-family: "Montserrat", sans-serif;
	font-size: .7em;
    color: #343434;
	padding-left: 10%;
}


#equipo { margin-top: -1%;}
#calendario { margin-top: -1%;}
#juegos { margin-top: -1%;}
#store { z-index: 1001;}
:target {
  scroll-margin-top: 80px;
}



/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #3D7856; /* Green */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1080px;
    padding: 0 10px;
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 10px;
}

.nav-list li {
    display: inline-block;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #f4f4f4;
}

/* Logo Center */
.logo {
    position: absolute;
    left: 95%;
    transform: translateX(-50%);
}

.logo img {
	margin-top: 70%;
    width: 150px;
    height: 150px;
}

/* Responsive Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    height: 4px;
    width: 30px;
    background-color: white;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
		margin-left: 3%;
		padding-left: 3%;
        background-color: #3D7856;
		opacity: .8;
        width: 50%;
        text-align: left;
        z-index: 1000;
    }
	
	.nav-list a {
		font-size: 15px;
	}

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

    .nav-list li {
        margin: 5px 0;
    }

    .menu-toggle {
        display: flex;
    }
	
	.logo {
    left: 85%;
}
	
	.logo img {
		margin-top: 40%;
    	width: 100px;
    	height: 100px;			
	}


}














