
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background: #0a192f;
            color: #ffffff;
            line-height: 1.6;
        }

        header {
        
            /*background: linear-gradient(135deg, #0f3057, #00587a);*/
            background-image: url('../images/tonopolsw.jpeg');
            /*background-size: cover;*/ 
            background-position: center;
            /* height: 300px;*/
            color: #00bcd4;
            padding: 80px 20px;
            text-align: center;
        }

        header h1 {
            font-size: 3rem;
            font-weight: 800;
        }

        header p {
            margin-top: 15px;
            font-size: 1.2rem;
            color: #00bcd4;/*#cfd8dc;*/
        }

        nav {
            background: #021a2b;
            padding: 15px;
            text-align: center;
            position: sticky;
            top: 0;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 20px;
            font-weight: 600;
            transition: 0.3s;
        }
       
       a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 20px;
            font-weight: 600;
            transition: 0.3s;
        }        
        
        nav a:hover {
            color: #DDDDDD;//   #00bcd4;
        }

        section {
            padding: 80px 20px;
            max-width: 1100px;
            margin: auto;
        }

        h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: #00bcd4;
        }

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

        .member {
            background: #112240;
            padding-left: 1px;
            padding-top: 20px;
            padding-right: 35px;
            border-radius: 10px;
            transition: 0.3s;
        }

        .member:hover {
            transform: translateY(-5px);
            background: #1b3358;
        }

        .member h3 {
            margin-bottom: 10px;
            color: #00bcd4;
        }

        .tour-dates {
            background: #112240;
            padding: 30px;
            border-radius: 10px;
        }

        .tour-dates ul {
            list-style: none;
        }

        .tour-dates li {
            padding: 15px;
            border-bottom: 1px solid #1f4068;
            display: flex;
            justify-content: space-between;
        }

        .tour-dates li:last-child {
            border-bottom: none;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery img {
            width: 100%;
            border-radius: 10px;
            transition: 0.3s;
        }

        .gallery img:hover {
            transform: scale(1.05);
        }

        footer {
            background: #021a2b;
            text-align: center;
            padding: 30px;
            margin-top: 50px;
            color: #cfd8dc;
        }

        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: #00bcd4;
            color: #0a192f;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: 0.3s;
        }

        .btn:hover {
            background: #03e9f4;
        }

          ul.icons {
                        cursor: default;
                        list-style: none;
                        padding-left: 0;
                        font-family: FontAwesome;
                }   
                  
                ul.icons li {
                                display: inline-block;
                                height: 2.5em;
                                line-height: 2.5em;
                                padding: 0 0.5em;
                        }

                                ul.icons li .icon {
                                        font-size: 0.8em;
                                }

                                        ul.icons li .icon:before {
                                                font-size: 2em;
                                        }   

    
 /* Responsive */
  @media(max-width: 800px) {

    header {
        
        
            background-image: url('../images/tonopolsw_k.jpeg');
            /*background-size: cover; */
            background-position: top center; height: 300px;
            color: #00bcd4;
            padding: 80px 20px;
            text-align: center;
        }  	
  	
    header h1 {
        font-size: 1.8rem;
    }    
    
  }    
    
 

  
