/******************************************************************************
START Glitch hello-app default styles

The styles in this section do some minimal CSS resets, set default fonts and 
colors, and handle the layout for our footer and "Remix on Glitch" button. If
you're new to CSS they may seem a little complicated, but you can scroll down
to this section's matching END comment to see page-specific styles.
******************************************************************************/
@import url('https://fonts.googleapis.com/css?family=Abel'); /*thin font*/
@import url('https://fonts.googleapis.com/css?family=Geist'); /*thin but thicker than Abel*/
@import url('https://fonts.googleapis.com/css?family=Montserrat'); /*thin font*/
@import url('https://fonts.googleapis.com/css?family=Inter'); 
@import url('https://fonts.googleapis.com/css?family=Roboto Condensed'); 
@import url('https://fonts.googleapis.com/css?family=Bungee Shade'); 
@import url('https://fonts.googleapis.com/css?family=Tilt Prism'); 
@import url('https://fonts.googleapis.com/css?family=Limelight');
@import url('https://fonts.googleapis.com/css?family=Lexend');
@import url('https://fonts.googleapis.com/css?family=Ultra');
@import url('https://fonts.googleapis.com/css?family=Danfo');
@import url('https://fonts.googleapis.com/css?family=Notable');
@import url('https://fonts.googleapis.com/css?family=Gabarito');

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

body {
     background:rgb(251, 250, 250);
}
 
      
/* Header */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}


nav {
    position:sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    top:0;
}

    .logo {
        font-size: 1rem;
        font-weight: bold;
        background: #fff;/*linear-gradient(45deg, #ff6b35, #f1e90f)*/;
        align-items: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Geist';
    }

     .contact-num {
        font-size: 1rem;
        font-weight: bold;
        background: #fff;/*linear-gradient(45deg, #ff6b35, #f1e90f)*/;
        align-items: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-family: 'Geist';
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
        font-family: 'Geist';
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-links a:hover {
        color: #ff6b35;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, #ff6b35, #ffd700);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }


/**************************/
/*Section Titles*/

    .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: #FA812F; /*linear-gradient(45deg, #edeae9, #ee820f); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family:'Montserrat', serif;
        }

    .section-title2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: #000000; /*linear-gradient(45deg, #edeae9, #ee820f); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family:'Inter', serif, bold;
        }

    .section-title3 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: #fffdfd; /*linear-gradient(45deg, #edeae9, #ee820f); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family:'Inter', 'Bold 700';
        }

    .section-title4 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            background: #FA812F; /*linear-gradient(45deg, #edeae9, #ee820f); */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family:'Montserrat', serif;
        }
.section-title5 {
            text-align:left;
            font-size: 4rem;
            background: linear-gradient(45deg, #ff6b35, #ffd700, #ff1744);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family:'Tilt Prism';
        }

/* LOCATION */
    .location-section {
        padding: 3rem 0;
        background:  #ffffff /* background: linear-gradient(135deg, #0b0807, #1c1717);*/
    }


    .location-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

    .location-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-top: 3rem;
    }

    .location-card {
        background:  #ffffff /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: .5rem;
        text-align:justify;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 1.25rem;
         font-family: 'Geist';
        font-weight:700;
   
    }

   .location-card1 {
        background:  #ffffff /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: .5rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
    
    }
    .video-container {
        position: relative;
        width:  100%;
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: .5rem;
    }
    #myVideo {
        position: relative;
        right: 0;
        bottom: 0;
        min-width: auto;
        min-height: 100%;
        width: 100%;
        height: 100%;
    border-radius: 15px;
        
    }
    .content {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        z-index: 1;
       
    }

   /* .location-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    }
*/
    .location-card h3 {
        color:  #ffffff;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-family: 'Geist';
        font-weight:800;
      

    }

/**TRANSPORTATION**/
 .transportation-section {
        padding: 3rem 0;
        background: #fdc324 /* background: linear-gradient(135deg, #0b0807, #1c1717);*/
    }


    .transportation-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

    .transportation-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-top: 3rem;
    }
     .transportation-card {
        background: #fdc324 /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: .5rem;
        text-align:justify;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 1.25rem;
        font-family: 'Geist';
        font-weight:700;
   
    }

   .transportation-card1 {
        background:  #ffffff /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: .5rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
          background-image: url('/images/bus-company-nyc.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
    }
     .transportation-card h3 {
        color:  #121212;
        margin-bottom: 1rem;
        text-align:center;
        font-size: 1.5rem;
        font-family: 'Geist';
        font-weight:800;
      

    }


.info-section{
     padding: 2rem 0;
        background: #000000;
}
 .gallery-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 10px 0;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 40px;
            color: white;
        }

      gallery-container  img {
    transition:transform 0.25s ease;
}

.gallery-container img:hover {
    -webkit-transform:scale(2.0);
    transform:scale(2.50);
}

        .gallery-header h1 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
              font-family:'Montserrat', serif;
        }

        .gallery-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
   

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 7rem 0;
    text-align: left;
    -webkit-text-fill-color: #f1f1f1;
    height: 75vh;
    position: relative;
    width: 100%;
    background-image: url('/images/National Harbor.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}​

.footer-container{
    margin:1rem 0 0rem;

}

.footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem;
            font-family: 'Montserrat';
            font-size: 1rem;
        }



         .footer-section h2,
        .footer-section h3,
        .footer-section h4 {
            margin-bottom: 1rem;
            color: #ffd700;
            text-align: left;
            font-size: 3rem; 
             font-family: 'Montserrat';
        }

        .footer-section ul {
            list-style: none;
            position:left;
            font-family: 'Montserrat';

        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
            text-align: left;
                 font-family: 'Montserrat';
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            position:relative;
            bottom: 0;
            width:100%;
            text-align: center;
            border-top: 1px solid #555;
            color: #ccc;
              font-family: 'Montserrat';
        }
  


    .social-links a {
        color: #fff;
        font-size: 1.5rem;
        transition: color 0.3s ease;
        text-align:center;
        gap:2rem;
    }

    .social-links a:hover {
        color: #ff6b35;
    }

 
    /* Footer hover effects */
        .footer-column a:hover {
            color: #3498db !important;
        }

    /* Responsive design 
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .text-content {
                padding: 1rem;
                margin: 0 10px;
            }
        }
*/
/* Responsive */
@media (max-width: 768px) {
      .main-title {
                font-size: 2.5rem;  /*2.5rem*/
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .text-content {
                padding-top: 3.5rem; /*1.5rem*/
                margin: 0 10px;
            }
    .music-controls {
                top: 10px;
                right: 10px;
    }
    .text-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
        
    }
    
      .transportation-grid {
        grid-template-columns: 1fr;
        
    }
    .marquee-content {
                font-size: 1.2rem;
            }
            
    .marquee-item {
                font-size: 1.1rem;
            }
    .footer-bottom{
        padding-top: 2rem;
        font-size: 1.1rem;
    }
    
}
@media (min-aspect-ratio: 16/9) {
    video {
        width: 100%;
        height: 100%;
    }
    }
@media (min-aspect-ratio: 16/9) {
    #myvideo {
        width: 100%;
        height: 100%;
    }
    }

    @media (max-width: 480px) {
            .main-title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
        }