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

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar{
    background-color: #000;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.menu a{
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    transition: background 0.3s;
}

.menu a:hover{
    background: #444;
    border-radius: 4px;
}

.dropdown{
    position: relative;
}

.dropdown-content{
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    top: 100%;
    left:0%;
    border-radius: 6px;
    z-index: 1000;
}

.dropdown-content a{
    color: black;
    padding: 0.5rem 1rem;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover{
    background-color: lightgray;
}

.dropdown:hover .dropdown-content{
    display: block;
}

.navbar .search{
    text-decoration: none;
    margin-left: 1rem;
    font-size: 18px;
}

.hero{
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fade 9s infinite;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-bottom: 4rem;
}

.slide h1, .slide p{
    margin: 0.5rem 0;
}

.s1{
    background-image: url(chicago.jpg);
    animation-delay: 0s;
}

.s2{
    background-image: url(la.jpg);
    animation-delay: 3s;
}

.s3{
    background-image: url(ny.jpg);
    animation-delay: 6s;
}

@keyframes fade{
    0% {opacity: 0;}
    10% {opacity: 1;}
    30% {opacity: 1;}
    40% {opacity: 0;}
    100% {opacity: 0;}
}

#band{
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: auto;
}

#band h2{
    text-align: center;
    margin-bottom: 1.5rem;
}

.band{
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-top: 1rem;
}

.band1{
    max-width: 700px;
    margin: auto;
    margin-top: 1rem;
}

.members{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 1rem;
    text-align: center;
    margin-top: 30px;
}

.members img{
    width: 200px;
    border-radius: 6px;
}

.members p{
    font-size: 18px;
    margin-bottom: 10px;
}

.container{
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
}

.container h2{
    letter-spacing: 5px;
    margin-top: 20px;
}

.container p{
    color: gray;
}

.tour-list{
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    background-color: white;
    color: black;
}

.tour-list li{
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.sold-out{
    background-color: red;
    color: white;
    padding: 2px 8px;
    margin-left: 10px;
    font-size: 12px;
}

.badge{
    float: right;
    background-color: black;
    color: white;
    border-radius: 50%;
    padding: 4px 10px;
}

.cards{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.card{
    background-color: white;
    color: black;
    width: 300px;
    text-align: left;
}

.card img{
    width: 100%;
    height: auto;
}

.card .content{
    padding: 16px;
}

.card h3{
    margin: 0 0 5px;
}

.date{
    color: gray;
    font-size: 14px;
    margin-bottom: 10px;
}

.card button{
    background-color: black;
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
}

.card button:hover{
    background-color: #444;
}

.contact-section{
    text-align: center;
    padding: 40px 20px;
}

.contact-section h2{
    letter-spacing: 4px;
}

.contact-section p{
    color: gray;
}
.contact-box{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.contact-info{
    text-align: left;
}

.contact-info p{
    margin: 10px 0;
}

.contact-form{
    max-width: 400px;
    text-align: left;
}

.contact-form input, .contact-form textarea{
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    outline: none;
}

.contact-form .row{
    display: flex;
    gap: 10px;
}

.contact-form button{
    background-color: black;
    color: white;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    float: right;
}

.contact-form button:hover{
    background-color: #444;
}

.map-section{
    width: 100%;
    margin:0;
    padding: 0;
}

.map-container{
    width: 100%;
    height: 600px;
    background-image: url(map.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.footer{
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

.footer .social-icons{
    margin-bottom: 15px;
}

.footer .social-icons a{
    color: #555;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .social-icons a:hover{
    color: #000;
}

.footer p{
    color: #555;
    font-size: 14px;
}

.footer p a{
    color:#000;
    text-decoration: none;
}

.footer p a:hover{
    text-decoration: underline;
}

@media(max-width: 1024px){
    .cards{
        justify-content: space-around;
    }
    .members img{
        width: 150px;
    }

    .contact-box{
        gap: 20px;
    }

    .contact-form .row{
        flex-direction: column;
    }
}


@media(max-width: 768px){
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .menu{
        flex-direction: column;
        width: 100%;
    }

    .menu a{
        padding: 0.5 rem 0;
    }

    .her0{
        height: 60vh;
    }

    .slide h1{
        font-size: 24px;
    }

    .slide p{
        font-size: 4px;
    }

    .members img{
        width: 120px;
    }

    .cards{
        flex-direction: column;
        align-items: center;
    }
}


@media (max-width: 480px){
    .slide h1{
        font-size: 20px;
    }

    .slide p{
        font-size: 12px;
        padding: 0 10px;
    }

    .navbar .search{
        font-size: 16px;
    }

    .footer .social-icons a{
        font-size: 20px;
        margin: 0 5px;
    }

    .hero{
        height: 50vh;
    }

    .cards{
        width: 90%;
        margin-bottom: 20px;
    }

    .contact-box{
        flex-direction: column;
        align-items: center;
    }

    .contact-form button{
        float: none;
        width: 100%;
    }

    .tour-list{
        width: 90%;
    }
}