/******************************************************************************
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:black;
}
 
      
/*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-container{
   position:sticky;
   max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align:center;
    padding: 20px;
    overflow: hidden;
    font-family: 'Geist';
    top:0;
}


.logo {
            font-size: 1rem;
            font-weight: bold;
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            order: 3;
            font-family: 'Geist';
        }

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

        .logo:hover {
            color: #e6600c;
        }

        /* Hide checkbox */
        #menu-toggle {
            display: none;
        }

        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            order: 1;
            transition: transform 0.3s ease;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
            transform-origin: center;
        }

        /* Hamburger animation */
        #menu-toggle:checked + .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        #menu-toggle:checked + .hamburger span:nth-child(2) {
            opacity: 0;
        }

        #menu-toggle:checked + .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            order: 2;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            padding: 10px 0;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
           color: #ff6b35;
        }

        .nav-link.active {
           color: #ff6b35;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(4, 4, 4, 0.98);
            backdrop-filter: blur(20px);
            transition: left 0.3s ease;
            z-index: 999;
            padding-top: 90px;
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        }

        #menu-toggle:checked ~ .mobile-nav {
            left: 0;
        }

        .mobile-nav-menu {
            list-style: none;
            padding: 0 30px;
        }

        .mobile-nav-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .mobile-nav-link {
            display: block;
            text-decoration: none;
            color: #ffffff;
            padding: 20px 0;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-nav-link:hover {
            color: #667eea;
            padding-left: 20px;
        }

        .mobile-nav-link::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            transition: width 0.3s ease;
        }

        .mobile-nav-link:hover::before {
            width: 4px;
        }

        /* Menu Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(255, 255, 255);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        #menu-toggle:checked ~ .overlay {
            opacity: 1;
            visibility: visible;
        }

        /* Close menu when clicking overlay */
        .overlay label {
            display: block;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

  /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        @media (max-width: 480px) {
            .mobile-nav {
                width: 100%;
            }

            .nav-container {
                padding: 0 15px;
            }

            
        }

        /* Focus styles for accessibility */
        .hamburger:focus-within {
            outline: 2px solid #667eea;
            outline-offset: 2px;
            border-radius: 4px;
        }

        .nav-link:focus,
        .mobile-nav-link:focus,
        .logo:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
            border-radius: 4px;
        }
  

/**************************/

/* Sticky Ad Box */
.sticky-sidebar-ad {
  position: fixed;
  top: 80px;
  right: 0;
  width: 300px; /* Adjust as needed */
  z-index: 9999;
}

.sticky-sidebar-ad img {
  width: 100%;
  height: auto;
}

.close-ad {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}
        
/*Section Titles*/

    .section-title {
            text-align: center;
            font-size: 4rem;
            margin-bottom: .5rem;
            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: 1rem;
            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';
        }

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


    .info-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0px 0px;
        }

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

    .info-card {
        background:  #000000 /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1rem;
        margin:18px;
        text-align:center;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 2rem;
        font-family: 'Geist';
        font-weight:700;
        color:white;
   
    }

   


/* LOCATION */
    .location-section {
        padding: 1rem 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: 1rem;
    }

    .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);
    
    }
      .location-card2 {
        background:  #ffffff /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        border-color: #2e2d2d;
        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;
      

    }

      .register-button {
        display: inline-block;
        position: sticky;
        padding: 15px 40px;
        background: linear-gradient(45deg, #ff6b35, #ff1744);
        color: white;
        font-size: 1.75rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        font-family:'Geist';
        }

        .register-button:hover {
            background-color: rgba(255, 107, 107, 1);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
        }


/**TRANSPORTATION**/
/* Transportation Section - Responsive Design */
.transportation-section {
    padding: 3rem 0;
    background: #fdc324;
}

/* Container with responsive padding */
.transportation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive grid layout */
.transportation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Text-only card with responsive typography */
.transportation-card1 {
    background: #fdc324;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: justify;
    font-size: clamp(1rem, 2.5vw, 1.25rem); /* Responsive font size */
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Image card with responsive background */
.transportation-card {
    background:transparent;
   background-image: url('/images/Bus_Copy.webp');
   border-image: 15px;
    background-size:100% 75%;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 15px;
    position: static;
    
}

/* Responsive heading */
.transportation-card h3 {
    color: #121212;
    margin-bottom: 1rem;
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem); /* Responsive font size */
    font-family: 'Geist', sans-serif;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    padding: 1rem;
}

/* Hover effects */

.transportation-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* Footer */
footer {
   background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0;
    text-align: left;
    -webkit-text-fill-color: #f1f1f1;
    height: 55vh;
    position: relative;
    background-image: url('/images/National Harbor_opacity.png');
    background-size: 100% 100%;
    background-repeat: 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: 1.5rem;
                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;
            }
   
    .text-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
  

    .location-grid {
        grid-template-columns: 1fr;
    }
     .transportation-container {
        padding: 0 10px;
    }
    
    .transportation-card {
        min-height: 180px;
    }
    
    .transportation-card1 {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .transportation-card h3 {
        font-size: 1rem;
        padding: 0.5rem;
    }
    .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;
            }
        }