@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=Tilt Prism'); 
@import url('https://fonts.googleapis.com/css?family=Limelight');

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

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

.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;
           
        }

        .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;
        }
  


    /***TEXT OVERLAY*******/

    .bgvideo-container {
            position: relative;
            display: flex; 
            width: 100%;
            height: 100vh;
            overflow: hidden;
           
        }

    .bgvideo-container::after{
    content: "";
    display: block; /* Important for positioning and borders */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg); /* Center horizontally and rotate */
    border-right: 5px solid #fbf6f6; /* Adjust thickness and color */
    border-bottom: 5px solid #fcf9f9; /* Adjust thickness and color */
    width: 20px; /* Adjust chevron size */
    height: 20px; /* Adjust chevron size */
    margin-bottom: 10px; /* Optional: Add some space from the bottom */
        }
        

    .background-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            /*width: auto;
            height: auto;*/
            transform: translate(-50%, -50%);
            z-index: -1;
            object-fit: cover;
    }
        .overlay2 {
            position: absolute;
            top: 10px;
            left: 0;
            bottom: 20px;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black overlay */
            display: flex;
            align-items: left;
            justify-content: left;
            flex-direction: column;
        }

        .text-content {
            text-align: left;
            color: white;
            padding: 5rem;
            max-width: 800px;
            margin: 10px 20px;
        }

        .main-title {
           
            font-size: 5rem;
            margin-bottom: 1rem;
            text-align: left;
            background: linear-gradient(45deg, #ff6b35, #ffd700, #ff1744);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
            font-family: 'Tilt Prism', serif;
            font-weight: bolder;
        }
        .text-content h1{
            
            font-size: 5rem;
            margin-bottom: 0rem;
            text-align: left;
            background: linear-gradient(45deg, #ff6b35, #ffd700, #ff1744);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
            font-family: 'Tilt Prism', serif;
            font-weight: bolder;
        }
        .text-content h2{
           font-size: 2.5rem;
            color:#f1f1f1;
            font-family: 'Montserrat';
            font-weight: bold;
        }
        .text-content h3{
        color:#f1f1f1;
        font-family: 'Montserrat';
        }

        .text-content h4 {
         position:absolute;
        right: 10px;
        bottom: 50px;
        font-size: 1rem;
        margin-bottom: 1rem;
        opacity: 0.9;
        color: #ffffff;
        font-family: 'Montserrat';
        font-weight: 600;
    }
        .text-content p{
      font-size: 2rem;
        margin-bottom: 1rem;
        opacity: 0.9;
        color: #F3C623;
        font-family: 'Montserrat';
        font-weight: 600;
        }

          .text-content p2{
      font-size: 2rem;
        margin-bottom: 1rem;
        opacity: 0.9;
        color: #F3C623;
        font-family: 'Montserrat';
        font-weight: 600;
        }
    @keyframes glow {
        from { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5)); }
        to { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8)); }
    }
        
        .cta-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';
        }

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

        .text-content audio {
        position:fixed;
        right: 10px;
        bottom: 20px;
        }



      
    /* Audio Player Styling */
        .audio-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 5px;
            margin: 5px 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
            max-width: 500px;
        }

        .audio-title {
            font-size: .75rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        audio {
            width: 100%;
            border-radius: 10px;
            outline: none;
        }

        /* Custom audio controls styling */
        audio::-webkit-media-controls-panel {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
        }

        audio::-webkit-media-controls-play-button {
            background-color: #667eea;
            border-radius: 50%;
        }

        /* Status Indicator */
        .audio-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 10px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ff4757;
            transition: 0.3s ease;
        }

        .status-dot.playing {
            background: #2ed573;
            animation: pulse 1.5s infinite;
        }

        .status-dot.paused {
            background: #ffa502;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Audio Control Panel */
        .audio-control-panel {
            position: fixed;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 15px;
            padding: 10px;
            color: white;
            z-index: 1000;
            min-width: 250px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .panel-title {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
        }

        .audio-info {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .audio-info strong {
            color: #667eea;
        }
        
/**************************/
 /* Entertainment Lineup */
         .carousel-section {
            background: rgb(7, 7, 7);
            border-radius: 5px;
            padding: 10px;
            /*box-shadow: 0 20px 20px rgba(0,0,0,0.2);*/
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            margin-bottom: 40px;
        }

        .carousel-section.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-title {
            text-align: center;
            color: #333;
            margin-bottom: 0px;
            font-size: 2rem;
        }

        /* Flickity Customization */
        .main-carousel {
            background: #ffffff;
            border-radius: 0px;
            padding: 0px;
        }
        .carousel-cell {
         width: 400px;
            height: 300px;
            position: relative;
            overflow: hidden;
        }

          .carousel-cell img {       
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        /*.carousel-cell {
            width: 500px;
            height: 400px;
            margin-right: 20px;
            background: #000000; /*linear-gradient(135deg, #ff6b6b, #4ecdc4);
            border-radius: 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }*/
        .carousel-cell:nth-child(2) {
            background: #000000 ;
        }

        .carousel-cell:nth-child(3) {
             background: #000000 ;
        }

        .carousel-cell:nth-child(4) {
             background: #000000 ;
        }

        .carousel-cell:nth-child(5) {
           background: #000000 ;
        }
        .carousel-cell:hover {
            transform: scale(1.5);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
                -webkit-transform:scale(1.5);
    transform:scale(1.50);
        }

        .carousel-cell::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .carousel-cell:hover::before {
            opacity: 1;
            -webkit-transform:scale(1.5);
            transform:scale(1.50);
        }

        .cell-content {
            z-index: 2;
            position: relative;
        }

        .cell-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
          /*.image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }*/

        .image-caption {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 30px 20px 20px;
            /*transform: translateY(100%);
            transition: transform 0.3s ease;*/
        }

         .caption-title {
            font-size: 1.3rem;
            font-weight: 600;
             font-family:'Montserrat';
            margin-bottom: 5px;
            color: white;
        }

        .cell-description {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .image-caption .audio-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .carousel-cell:hover .audio-indicator {
            opacity: 1;
            -webkit-transform:scale(1.5);
            transform:scale(1.50);
        }

        /* Status indicators */
        .status-panel {
            background: rgba(255,255,255,0.95);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            visibility:hidden;
        }

        .status-item {
            display: inline-block;
            margin: 0 15px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .status-hover {
            background: #e3f2fd;
            color: #1976d2;
        }

        .status-view {
            background: #f3e5f5;
            color: #7b1fa2;
        }

        /* Flickity button customization */
        .flickity-button {
            background: rgba(255,255,255,0.8);
            border-radius: 50%;
        }

        .flickity-button:hover {
            background: white;
        }

        .flickity-page-dots {
            bottom: -50px;
        }

        .flickity-page-dots .dot {
            background: #ddd;
            opacity: 0.5;
        }

        .flickity-page-dots .dot.is-selected {
            background: #667eea;
            opacity: 1;
        }

/**************************/
/***STICKY AD******/
  /* Sticky Ad Box */
         .ad-container {
          position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: left 0.3s ease;
            z-index: 9999;
            will-change: right;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            pointer-events:auto;
        }

        .ad-container.closed {
            right: -250px;
        }
         .ad-box {
            position: relative;
            z-index: 1;
            pointer-events: auto;
        }

        .ad-box{
            width: 250px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            box-shadow: 2px 0 10px rgba(0,0,0,0.2);
            border-radius: 0 8px 8px 0;
            pointer-events:auto;
        
        }

        .ad-box h3 {
            margin-bottom: 10px;
            font-size: 20px;
        }

        .ad-box p {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .ad-box button {
            background-color: white;
            color: #667eea;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
        }

        .ad-box button:hover {
            background-color: #f0f0f0;
        }

        .toggle-btn {
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            background-color: #667eea;
            color: white;
            border: none;
            padding: 15px 10px;
            cursor: pointer;
            border-radius: 0 5px 5px 0;
            font-size: 18px;
            box-shadow: 2px 0 5px rgba(0,0,0,0.2);
        }

        .toggle-btn:hover {
            background-color: #764ba2;
        }

/*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-weight: 900;
            font-family:'Montserrat', serif, bolder;
        }

    .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-weight:900 bold;
            font-family:'Montserrat', serif, bolder;
        }

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

    .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-weight:900;
             font-family:'Montserrat', serif,'bold';
        }
  

    .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-weight:900;
            font-family:'Montserrat', serif, 'bold';
        }
.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-weight:bolder;
            font-family:'Tilt Prism';
        }


/* WEEKEND */
    .activities-section {
        padding: 3rem 0;
        background:  #fdc324 /*#ed841b;
        /*background: rgba(255, 255, 255, 0.1);  background: linear-gradient(135deg, #0b0807, #1c1717);*/
    }
    .activities-section p{
        
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 30px;
        margin-right: 30px;
    
    }

    .activities-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
           
        }

     .activities-grid {
        display: grid;
        /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-template-rows: repeat(2,);
        gap: 2rem;
        margin-top: 2rem;
        */
         grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: flex-start;
        font-family:'Geist', sans-serif;
    }
    /* Grid Section Layout */
      .left-activities-container {
         position: flex;
        top:2rem
      }
          
    /* Left Column - Text Content */
    .left-activities-info{
        top:2rem
    }
    .left-activities-info h2{
          font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #e2e8f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: black;
            background-clip: text;
            margin-top: 2rem;
            line-height: 1.1;
    }

     .left-activities-info p{
        font-size: 1.25rem;
            line-height: 1.7;
            margin-bottom: 2rem;
              -webkit-text-fill-color: black;
        }


    .card-list{
        list-style-position:inside;
    }
        /* Right Column - 2x2 Grid */

    .right-activities-container{
        display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 1.5rem;
    }
       
        .right-activities-grid-item1 {
            /*.background: rgba(255, 255, 255, 0.05);*/
        background:transparent;
        background-image: url("/images/Media/main/bottom-music4.webp");
      background-size: cover;
        background-position: center;
            backdrop-filter: blur(10px);
               border-radius: 20px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
             font-family:'Montserrat';
            /*cursor: pointer;*/
        }

          .right-activities-grid-item2 {
            /*.background: rgba(255, 255, 255, 0.05);*/
        background:transparent;
         background-image: url("/images/Media/main/bottom-comedy4.webp");
        background-position: center;
      background-size: cover;
        background-repeat: no-repeat;
            backdrop-filter: blur(10px);
           margin-bottom: .5rem;
            border-radius: 20px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
             font-family:'Montserrat';
            /*cursor: pointer;*/
        }

          .right-activities-grid-item3 {
            /*.background: rgba(255, 255, 255, 0.05);*/
        background:transparent;
       background-image: url("/images/Media/main/bottom-workshop4.webp");
          background-position: center;
      background-size: cover;
        background-repeat: no-repeat;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
             font-family:'Montserrat';
            /*cursor: pointer;*/
        }
         .right-activities-grid-item4 {
            /*.background: rgba(255, 255, 255, 0.05);*/
        background:transparent;
          background-image: url("/images/Media/main/bottom-yoga4.webp");
          background-position: center;
      background-size: cover;
        background-repeat: no-repeat;
            backdrop-filter: blur(10px);
          
            border-radius: 20px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
             font-family:'Montserrat';
            /*cursor: pointer;*/
        }

/*
   .right-activities-grid-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

         .right-activities-grid-item1, .right-activities-grid-item2, .right-activities-grid-item3, .right-activities-grid-item4 h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
            font-family:'Montserrat';
        }

     
         .right-activities-grid-item1, .right-activities-grid-item2, .right-activities-grid-item3, .right-activities-grid-item4 p {
            font-size: 1rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-family:'Montserrat';
        }

        .right-activities-grid-item1, .right-activities-grid-item2, .right-activities-grid-item3, .right-activities-grid-item4 ul {
            font-size: 1rem;
            margin-bottom: 1rem;
            color: #ffffff;
            font-family:'Montserrat';
        }
            */

    /*
    .activities-card {
        background:transparent;
        background-image: url("/images/bottom-music4.webp");
         background-size: 100%;
            backdrop-filter: blur(10px);
            /*border: 1px solid rgba(255, 255, 255, 0.1);*/
            /*border-radius: 16px;*/
             /*padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: justify;
            text-align: justify;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
           cursor: pointer;*/
     /*background-size: 100%;
        background-position: top;
        background-repeat: no-repeat;
        backdrop-filter: blur(10px);
        -webkit-text-fill-color: #ffffff;
        border-radius: 20px;
        padding: 2rem;
        text-align: justify;
        font-size:.75rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(251, 249, 249, 0.3);
    
    }

     .activities-card1 {
        background: transparent;
       background-image: url("/images/bottom-comedy4.webp");
       background-size: 100%;
        background-position: top;
        background-repeat: no-repeat;
        backdrop-filter: blur(10px);
        -webkit-text-fill-color: #ffffff;
        border-radius: 20px;
        padding: 2rem;
        text-align: justify;
        font-size:.75rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(251, 249, 249, 0.3);
    }
    

       .activities-card2 {
      background: transparent;
        background-image: url("/images/bottom-workshop4.webp");
        background-size: 100%;
        background-position: top;
        background-repeat: no-repeat;
        backdrop-filter: blur(10px);
        -webkit-text-fill-color: #ffffff;
        border-radius: 20px;
        padding: 2rem;
         text-align: justify;
        font-size:.75rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(251, 249, 249, 0.3);
    }

         .activities-card3 {
        background: transparent;
        background-image: url("/images/bottom-yoga4.webp");
        background-size: 100%;
       background-position: top;
        background-repeat: no-repeat;
        backdrop-filter: blur(10px);
        -webkit-text-fill-color: #ffffff;
        border-radius: 20px;
        padding: 2rem;
         text-align: justify;
        font-size:.75rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(251, 249, 249, 0.3);
    }*/


    .activities-container p{
        text-align: justify;
        font-size: 1rem;
        margin: 1rem;
        -webkit-text-fill-color: #ffffff;

    }

    .activities-container ul{
        text-align: justify;
        font-size: 1rem;
        margin: 1rem;
        -webkit-text-fill-color: #ffffff;

    }
    
    
    .actitivies-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    }

   
    .activities-card, .activities-card1, .activities-card2, .activities-card3  h3 {
        -webkit-text-fill-color: #ffffff;
        margin-bottom: 2rem;
        font-size: 2rem;
        font-family:'Geist', sans-serif;
        text-align: center;
    }


    /*.activities-card1 h3 {
        -webkit-text-fill-color: #060606;
        margin-bottom: 3rem;
        font-size: 2rem;
        font-family:'Geist', sans-serif;
        text-align: center;
    }


    .activities-card2 h3 {
       -webkit-text-fill-color: #060606;
        margin-bottom: 3rem;
        font-size: 2rem;
         font-family:'Geist', sans-serif;
        text-align: center;
        
    }
      .activities-card3 h3 {
       -webkit-text-fill-color: #060606;
        margin-bottom: 2rem;
        font-size: 2rem;
         font-family:'Geist', sans-serif;
        text-align: center;
    }*/

/*
.grid-section1 {
  font-family: 'Abel',sans-serif ;
  font-size: 4ch;
  font-weight: lighter;
  min-height: 50vh;
  display: grid;
  grid-template-columns: repeat(1fr, 1fr); 
  padding: 15px;
  gap: 15px; 
  max-width: 1200px;
  margin: 0 auto;
  color:white;
}

.content{
  font-family:'Roboto Condensed',sans-serif;
  font-size: 20px;
  font-weight: 300;
  word-wrap: normal;
  text-align: left;
}

.grid-item3{
  font-family:'Inter', sans-serif;
  grid-column: 1 / span 5;
  grid-row: 1;
  text-align: center;
  padding: 20px;
  border-radius: 0px;
  
}

  .grid-item5 ul {
            list-style:circle;
            position:left;
            font-family: 'Montserrat';

        }

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

.grid-item5{
  grid-column: 1;
  grid-row: 2 /span 1;
  font-family:'Roboto Condensed', sans-serif;
  font-weight: lighter;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 10px 2px 10px rgba(0, 0, 0, 0.1);
  
}
.grid-item6{
  grid-column: 2;
  grid-row: 2 / span 1;
  font-family:'Roboto Condensed', sans-serif;
  font-weight: lighter;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 10px 2px 10px rgba(0, 0, 0, 0.1);
}
.grid-item7{
  grid-column: 3;
  grid-row: 2 / span 1;
  font-family:'Roboto Condensed', sans-serif;
  font-weight: lighter;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 10px 2px 12px rgba(0, 0, 0, 0.1);
}
section:nth-child(3) {
background: rgb(2,0,36);
}*/

/* SCHEDULE/ITINERARY */
    .schedule-section {
        padding: 3rem 0;
        background:  #ffffff; /* background: linear-gradient(135deg, #0b0807, #1c1717);
         background-image: url("images/schedule.png");
        background-size:100%;
        max-height: 100%;
        max-width: 100%;
        */
    }
    .schedule-container{
        max-width: 1500px; 
        margin: 2rem auto;
        max-height:75%
    }

    .schedule-grid {
      display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
        font-family:'Geist', sans-serif;
    }

    .schedule-data{
        text-align: left;
        font-size: 1rem;

    }

  .schedule-card {
        background:  transparent;
        /*background-image: url("/images/Friday.png");
             background-size: 100%;
        background-position:top;
        background-repeat: no-repeat;
        /*background: rgba(37, 135, 35, 1);*/
        backdrop-filter: blur(10px);
        /*border-radius: 20px;*/
        padding: 1rem;
        text-align: left;
        -webkit-text-fill-color: #ffffff;
        color:#fdfbfb;
        transition: all 0.3s ease;
     
  
    }
  

    .schedule-card1 {
        background:  transparent /*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        /*border-radius: 15px;*/
        padding: 1rem;
        text-align: center;
        /*border: 1px solid rgba(255, 255, 255, 0.3);*/
        font-size: 1.5rem;
        font-family:'Geist';
        margin:10px;
    }
    


/* 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: 2rem;
        margin-top: 3rem;
    }

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

      .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);
        font-family: 'Geist';
    
    }

     .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:  #000000;
        margin-bottom: 1rem;
        font-size: 2rem;
      font-family:'Montserrat', serif, ;
        font-weight:800;
      

    }

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

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


        
/* REGISTRATION */

    .registration-section {
        padding: 1rem 0;
        background:  #000000; /* background: linear-gradient(135deg, #0b0807, #1c1717);
         background-image: url("images/schedule.png");
        background-size:100%;
        max-height: 100%;
        max-width: 100%;
        */
    }
    .package-container{
        max-width:1400px;
        margin: 0 auto;
        padding: 0;
        max-height:50%
    }

    /*.package-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      height: 100vh;
     
    }*/

    /*.left {
        font-family: 'Inter',sans-serif ;
        background: #020024;
        background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(64, 21, 110, 1) 34%, rgba(2, 0, 36, 1) 100%);
        font-size: 4ch;
        font-weight: lighter;
        min-height: 100vh;
        display: grid;
        grid-template-columns: 2fr, 1fr; /* 3 equal columns 
        padding:75px;
        gap: 20px; Gap between grid items 
        max-width: 1200px;
        margin: 0 auto;
        color:white;
        }
       

    
.right {
      background-color: rgb(2,0,36);
      display: flex;
      justify-content: center;
      align-items: center;
} */
     
    /*.registration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
  */

    .package-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, .5fr));
        gap: 1rem;
        margin: 2rem;
    }
        
    
    .package-card {
         background:  #000000;
        background-size: 50% 50%;
        backdrop-filter: blur(10px);
        -webkit-text-fill-color: #ffffff;
        border-radius: 20px;
        padding-left: 5rem;
        text-align: center;
        transition: all 0.3s ease;
        font-size: 2rem;;
       
    }


    .container2 {
        display: grid;
        align-items: center; 
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 5px;
        padding: 2rem;
        }

        img {
        max-width: 100%;
        max-height:100%;
        }

        .text-image {
        font-size: 3rem;;
        }

      /*.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:'Limelight', serif;
        }
        */
        
        /*.package-card {
        background:  #ed841b /*rgba(255, 255, 255, 0.883);
        background-image: url("images/ticket.jpeg");
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
        }*/   

    .package-card1 {
        background: #000000;
        /*background-image: url("images/ticket.png");
        background: rgba(37, 135, 35, 1);
        backdrop-filter: blur(10px);*/
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        color:#fdfbfb;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.3);
    }

        .package-card2 {
        background: #000000;
        /*background-image: url("images/Gold-ticket.png");
        background-image: url("images/bg_section.png");*/
        /*background: rgba(37, 135, 35, 1);
        backdrop-filter: blur(10px);*/
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        color:#fdfbfb;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.3);
        font-size: 2rem;;
       
    }

        .package-card3 {
        background: #000000;
        /*background-image: url("images/silver-ticke.png");
        background: rgba(37, 135, 35, 1);
        backdrop-filter: blur(10px);*/
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        color:#fdfbfb;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.3);
    }
        .package-image-card {
        background-image: url("Sample image.png");
    }

    .package-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, #ff6b35, #ffd700, #ff1744);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    /*.package-card:hover::before {
        opacity: 0.1;
    }

    .package-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: #ff6b35;
    }
        */

    .package-price {
        font-size: 3rem;
        font-weight: bold;
        color: #ee820f;
        margin-bottom: 1rem;
    }

    .package-features {
        list-style: none;
        margin: 2rem 0;
    }

    .package-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .register-btn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(45deg, #ff6b35, #ff1744);
        color: white;
        border: none;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

/* Registration Modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }

    .modal-content {
        background: linear-gradient(135deg, #2c1810, #3d2318);
        margin: 5% auto;
        padding: 3rem;
        border-radius: 25px;
        width: 90%;
        max-width: 500px;
        position: relative;
        animation: modalSlide 0.3s ease;
    }

    @keyframes modalSlide {
        from { transform: translateY(-50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .close {
        position: absolute;
        right: 2rem;
        top: 1.5rem;
        font-size: 2rem;
        cursor: pointer;
        color: #fff;
        transition: color 0.3s ease;
    }

    .close:hover {
        color: #ff6b35;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #ffd700;
        font-weight: bold;
    }

    .form-group input, .form-group select {
        width: 100%;
        padding: 12px;
        border: 2px solid rgba(255, 107, 53, 0.3);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 1rem;
    }

    .form-group input:focus, .form-group select:focus {
        outline: none;
        border-color: #ff6b35;
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }

/*******About Section******/
.about-section{ 
        padding: 1rem 0;
        background:  #ffffff;
    }
.about-container {
       max-width: 1400px;
            margin: 0 auto;
            padding: 5px 0;
            
        }

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

    .about-card {
        background:#ffffff/*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 0rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 1.5rem;
        font-family:'Geist';
       
   
    }

      .about-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);
        font-family: 'Geist';
    
    }
    .about-content {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        z-index: 1;
       
    }

    .about-button {
        display: inline-block;
        position: sticky;
        padding: 15px 40px;
        background:  #fdc324 ;
        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';
        }

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


/****Memories******/


.info-section{
     padding: 1rem 0;
        background: #000000;
}
 .gallery-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 5px 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(1.5);
    transform:scale(1.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;
        }
        
/* Blog Section */
.blog-section{ 
        padding: 1rem 0;
        background-color:  #ffffff;
    }
.blog-container {
       max-width: 1400px;
            margin: 0 auto;
            padding: 5px 0;
            
        }

    .blog-grid {
           display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
    }

    .blog-card {
        background:#ffffff/*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 0rem;
        text-align: center;
        border: 1px solid #000000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
        font-size: 1.5rem;
        font-family:'Geist';
       
   
    }
    .blog-card p{
         color: #000000;
            line-height: 1.6;
            margin: 15px;
        text-align:justify;
        font-size:1.0rem;

    }

    .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px #fdc324;
    }

    .blog-card-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
               border-radius: 8px;
            background-image: url('/images/Media/main/Logo_rnb.jpg');
                background-position: center;
      background-size: cover;
        background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            border-color: #fdc324;
        }

    .blog-card-image1 {
         width: 100%;
        height: 300px;
    object-fit: cover;
       border-radius: 8px;
            background-image: url('/images/Media/main/2025 Flyer2.webp');
               
      background-size: cover;
        background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        
    }

      .blog-card-image2 {
         width: 100%;
        height: 300px;
    object-fit: cover;
       border-radius: 8px;
            background-image: url('/images/Media/main/2025 Flyer.webp');
               
      background-size: cover;
        background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        
    }
    /*.blog-content {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        z-index: 1;
       
    }

    .blognews-button {
       display: inline-block;
        position: sticky;
        padding: 15px 40px;
        background: linear-gradient(45deg, #ff6b35, #ff1744);
        color: white;
        font-size: 1.25rem;
        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';
        }
*/
      .blog-meta {
            color: #215af4;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

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

        .read-more:hover {
            color: #764ba2;
        }
   
/*******News Section******/
.news-section{ 
        padding: 1rem 0;
        background-color:  #fdc324;
    }
.news-container {
       max-width: 1400px;
            margin: 0 auto;
            padding: 5px 0;
            
        }

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

    .news-card {
        background:#ffffff/*rgba(255, 255, 255, 0.883)*/;
        backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 0rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 1.5rem;
        font-family:'Geist';
       
   
    }

      .news-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);
        font-family: 'Geist';
    
    }
    .news-content {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        z-index: 1;
       
    }

    .news-button {
        display: inline-block;
        position: sticky;
        padding: 15px 30px;
        background:  #000000 ;
        color: white;
        font-size: 1rem;
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        font-family:'Geist';
        }

    .news-button:hover {
            background-color:  #f5ae3b;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
        }
/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0;
    text-align: left;
    -webkit-text-fill-color: #f1f1f1;
    height: 55vh;
    position: relative;
    width: 100%;
    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: 2.5rem; 
             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-bottom: .5px solid #555;
            color: #ccc;
            font-family: 'Montserrat';
            padding-bottom: 1px;
        }
  

    .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 */
@media (max-width: 768px) 
{
    .main-content {
            display: 100%;
            }
    .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 {
       display:flex;
    }
    .text-content h1 {
        font-size: 2.5rem;
    }
   
    .registration-grid {
        grid-template-columns: 1fr;
    }
 
     .about-grid {
        grid-template-columns: 1fr;
    }

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

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

    .right-activities-grid-item {
        grid-template-columns: 1fr;

    }
     .left-activities-grid-item {
        grid-template-columns: 1fr;

    }

    .location-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;
    }
    /*.nav {
          display: flex;
    }
    
    .nav-links {
        display: block;
         float: right;

    }
    .nav.responsive {position: relative;}
  .nav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }*/
        
 
}
@media (min-aspect-ratio: 16/9) {
    video {
        width: 100%;
        height: 100%;
    }
    #myvideo {
        width: 100%;
        height: 100%;
    }
    }

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