/******************************************************************************
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:#000000; /*linear-gradient(135deg, #0b0807, #1c1717);*/
}
 
      
/*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;
        }
  

/**************************/
/*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 */
 .post-section  {
        padding: 2rem 0;
        background: #000000; /* background: linear-gradient(135deg, #0b0807, #1c1717);*/
    }

  .post-section1 {
        padding: 1rem 0;
        background: #ffffff; /* background: linear-gradient(135deg, #0b0807, #1c1717);*/
    }
    .post-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin: 3rem;
    }

   
    .post-card {
        background:  #ffffff /*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: 1.5rem;
        font-family: 'Geist';
        font-weight:700;
        color:white;
   
    }
     .blog-meta {
            color: #215af4;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

    img{
         border-radius: 15px;
    }

      .post-card1 {
        background:  #ffffff /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1rem;
        margin:18px;
        text-align:justify;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 1.5rem;
        font-family: 'Geist';
        font-weight:700;
        color:rgb(0, 0, 0);
   
    }
     .p{
        text-align: justify;
        font-size:2rem;
        font-family: 'Geist';
        font-weight:500;
        color:#000000;
    }

   .next {
            color: #667eea;
            text-decoration: none;
            font-weight: bold;
        }

        .next:hover {
            color: #764ba2;
        }
     .list-features {
        list-style:circle;
        margin-left: 2rem 0;
        padding-left: 50px;
    }
     .list-features li {
      
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
   
/****INFO Section 2 
  .post-section1 {
        padding: 1rem 0;
        background: #ffffff; /* background: linear-gradient(135deg, #0b0807, #1c1717);
    }
  .post-section2 {
        padding: 1rem 0;
        background: #ffffff; /* background: linear-gradient(135deg, #0b0807, #1c1717);
    }

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


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

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

      .info-card3 {
        background:transparent;
       background-image: url("../Media/main/UpdatedFlyer.png");
        background-position: center;
      background-size:contain;
        background-repeat: no-repeat;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 1rem;
        margin:18px;
        text-align:center;
        font-size: 1.5rem;
        font-family: 'Geist';
        font-weight:700;
        color:white;
   
    }
    p{
        font-size:1rem;
        font-family: 'Geist';
        font-weight:500;
        color:#000000;
    }*/

  
   

/* 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;
            }
        }

