/* CSS Style */
body {
    background-image: url("img/concert.JPG");
    background-size: cover;
    color: white; /* Set text color to white */
    display: flex;
    flex-direction: column; /* Arrange items in a column */
    align-items: center; /* Center items horizontally */
    
    height: 100vh;
    margin: 0;
}
img {
    width: 150px;
    height: 150px;
}
h1, h2, h3, p, nav ul li a {
    color: white; /* Set text color to white */
}
h3 {
    font-size: 40px;
}



/* Home */

header {
    position: relative;
}

nav {
    background-color: #4e7cd7;
    color: rgb(255, 255, 255);
    padding: 50px;
    text-align: center;
}

.logo {
    font-size: 50px;
    font-weight: bold;
}

.hero {
    background-image: url("hero-image.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px; /* Adjust padding as needed */
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 30px;
}

.band {
    background-color: #528fea;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
}

.band img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

h2, h3 {
    color: #ffffff;
}


/* index.html */


/* Global styles */

.container {
    width: 100%; /* Set the width of the container */
    margin: 0 auto; /* Center the container horizontally */
    max-width: 1200px; /* Set a maximum width for the container */
}

/* Header styles */
header {
    background-color: #7554c9; /* Dark background color for the header */
    color: white; /* White text color */
    padding: 20px 0; /* Add padding to the top and bottom of the header */
}

.logo {
    font-size: 24px; /* Larger font size for the logo */
    font-weight: bold; /* Bold font weight for the logo */

}

.nav-item {
    display: inline-block; /* Display navigation items inline */
    margin-right: 20px; /* Add space between navigation items */
}

.nav-item a {
    color: white; /* White text color for navigation links */
    text-decoration: none; /* Remove underline from navigation links */
    padding: 5px 10px; /* Add padding to the navigation links */
    border: 1px solid #fff; /* Add border to the navigation links */
    border-radius: 5px; /* Rounded corners for the navigation links */
    transition: background-color 0.3s ease; /* Smooth transition for background color change */
}

.nav-item a:hover {
    background-color: rgba(39, 233, 17, 0.5); /* Semi-transparent yellow background color on hover */
}

/* Hero area styles */
.hero {
    background-image: url("hero-background.jpg"); /* Background image for the hero area */
    background-size: cover; /* Cover the entire area with the background image */
    background-position: center; /* Center the background image */
    text-align: center; /* Center text horizontally */
    padding: 100px 0; /* Add padding to the top and bottom of the hero area */
}

.hero h1 {
    font-size: 36px; /* Larger font size for the main heading */
    margin-bottom: 20px; /* Add space below the main heading */
}

.hero p {
    font-size: 18px; /* Larger font size for paragraph text */
}

/* Main content styles */
#intro {
    margin-top: 50px; /* Add space at the top of the intro section */
}

#intro h2 {
    margin-bottom: 20px; /* Add space below the section heading */
}

#intro p {
    color: #fcfcfc; /* Dark gray text color for paragraph text */
    font-size: 16px; /* Font size for paragraph text */
    line-height: 1.5; /* Set line height for better readability */
}

/* Footer styles */
footer {
    background-color: #32a7f0; /* Dark background color for the footer */
    color: white; /* White text color */
    text-align: center; /* Center text horizontally */
    padding: 20px 0; /* Add padding to the top and bottom of the footer */
}

/* style.css */
.location-link {
    color: white; /* Sets the text color to white */
}
