        /* General Styles */
        body {
            font-family: 'Futura', 'Jost', sans-serif;
            margin: 0;
            color: #fff;
            transition: background-image 0.3s ease-in-out;
        }

        /* Page Background Images */
        .home {
            background-image: url('../img/home_5m.jpg');
            background-size: cover;
            background-position: center;
		    background-repeat: no-repeat;
		    background-attachment: fixed;
        }

        .concept {
            background-image: url('../img/concept_5.jpg');
            background-size: cover;
            background-position: center;
		    background-repeat: no-repeat;
         }

        .menu {
            background-image: url('../img/menu_5.jpg');
            background-size: cover;
            background-position: center;
		    background-repeat: no-repeat;
         }
        .dates {
			position: fixed;
			bottom: 0;
			right: 0;
			padding: 10px;
			line-height: 1;
		    text-align: right;
		    z-index: -1;
         }

        .chapter {
            font-size: 3.1em;
		    font-weight: 300;
 		    z-index: -1;
        }

        .date {
            font-size: 2.1em;
		    font-weight: 300;
		    z-index: -1;
         }

         .artists {
#            background-image: url('../img/artists_vs.jpg');
            background-size: cover;
            background-position: center;
		    background-repeat: no-repeat;
		    background-attachment: fixed;
         }

        .contact {
            background-image: url('../img/contact_5.jpg');
            background-size: cover;
            background-position: center;
		    background-repeat: no-repeat;
		    background-attachment: fixed;
         }

        .content {
            /* background-color: rgba(0, 0, 0, 0.25); Semi-transparent background for text */
            padding: 20px;
            text-align: left;
        }

        .subcontent {
            background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background for text */
            padding: 10px;
            text-align: left;
        }

        h1, p {
            font-family: 'Jost', sans-serif;
            line-weight: 300;
        }

a {
    color: #9D9D9D;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}
        /* Navigation Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: left;
  padding: 5px;
  background-color: #333;
}

.logo {
  color: white;
  font-size: 24px;
}

.menu-icon {
  display: none;
  font-size: 25px;
  color: white;
  cursor: pointer;
  margin: 0px;
}

.nav-links {
  list-style-type: none;
  display: flex;
  font-style: italic;
}

.nav-links li {
  margin: 0 5px;
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-links li:hover {
  background-color: #444;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block; /* Show the dropdown on hover */
}

.dropdown-menu {
  display: none; /* Hide the submenu by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 180px;
  list-style-type: none;
  font-style: italic;
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown-menu li a {
  color: white;
  font-size: 16px;
}

.dropdown-menu li:hover {
  background-color: #444;
}
#social
{
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background for text */
	position: absolute;
	padding: 5px;
	left: 15px;
	bottom: 58px;
	z-index: 5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .menu-icon {
    display: block; /* Show hamburger menu icon on mobile */
  }

  .nav-links {
    display: none; /* Hide menu items on mobile */
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #333;
    width: 100%;
    text-align: center;
    font-style: italic;
  }

  .nav-links.active {
    display: block; /* Show menu when hamburger is clicked */
  }

  .nav-links li {
    margin: 20px 0;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%; /* Ensure the submenu stretches across the full width */
  }

  .nav-links .dropdown:hover .dropdown-menu {
    display: none; /* Disable flyout effect on mobile */
  }

  .dropdown.active .dropdown-menu {
    display: block; /* Show the submenu on mobile when the parent is active */
  }
}
