
        :root {
        /* Color Palette */
        --primary-color: #2C3E50;
        --primary-light: #3e5871;
        --primary-dark: #1a2530;
        --secondary-color: blue;
        --secondary-light: #f39c12;
        --secondary-dark: #d35400;
        --accent-color: #F1C40F;
        --success-color: #27AE60;
        --warning-color: #F39C12;
        --error-color: #E74C3C;
        --neutral-100: #f8f9fa;
        --neutral-200: #e9ecef;
        --neutral-300: #dee2e6;
        --neutral-400: #ced4da;
        --neutral-500: #adb5bd;
        --neutral-600: #6c757d;
        --neutral-700: #495057;
        --neutral-800: #343a40;
        --neutral-900: #212529;

        /* Typography */
        --heading-font: 'Montserrat', sans-serif;
        --body-font: 'Open Sans', sans-serif;
        
        /* Spacing (8px grid) */
        --space-1: 0.5rem;    /* 8px */
        --space-2: 1rem;      /* 16px */
        --space-3: 1.5rem;    /* 24px */
        --space-4: 2rem;      /* 32px */
        --space-5: 3rem;      /* 48px */
        --space-6: 4rem;      /* 64px */
        
        /* Border Radius */
        --radius-sm: 0.25rem; /* 4px */
        --radius-md: 0.5rem;  /* 8px */
        --radius-lg: 1rem;    /* 16px */
        
        /* Transitions */
        --transition-fast: 0.2s ease;
        --transition-normal: 0.3s ease;
        --transition-slow: 0.5s ease;
        
        /* Shadows */
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.08);
        --shadow-lg: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
        --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    }

        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f5f5f5;
            padding: 20px;
            padding-top: 150px;
        }
        
        .slider-container {
            position: relative;
            width: 70%;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .slider {
            display: flex;
            height: 60ch;
            width: 100%;

            
        }
        
        @media (max-width: 768px) {

            .slider {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }
            
            
            .slider::-webkit-scrollbar {
                display: none;
            }
      
        }
        
        .slide {
              display: flex;
            justify-content: center;
            align-items: center;
            width: 70%;
            margin-left: 15%;
            margin-right: 15%;
            flex-shrink: 0;
            scroll-snap-align: start;
        }
        
        .slide img {
            width: 100%;       /* Force it to fill the width */
            height: 100%;      /* Force it to fill the container height */
            object-fit: cover; /* This prevents the "squashed" look */
            pointer-events: none;
            user-select: none;
            display: block;
}
        
        /* Desktop Navigation Buttons */
        .btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 22px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }
        
        .btn:hover {
            background-color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .btn:active {
            transform: translateY(-50%) scale(0.95);
        }
        
        #prevBtn {
            left: 25px;
        }
        
        #nextBtn {
            right: 25px;
        }
        
        /* Hide buttons on mobile */
        @media (max-width: 768px) {
            .btn {
                display: none;
            }
        }
        
        .indicators {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 20px;
        }
        
        /* Hide indicators on mobile */
        @media (max-width: 1024px) {
            .indicators {
                display: none;
            }
        }
        
        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .indicator.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        .indicator:hover {
            transform: scale(1.2);
        }

        /* Photo Grid */
        h2 {
            margin: 20px 0;
            color: #333;
            font-weight: 600;
            font-size: 24px;
            text-align: center;
        }

        .photo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            width: 50%;
            max-width: 100%;
        }
        
        @media (max-width: 768px) {
            .photo-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        .grid-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
        }

        .grid-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .grid-item:hover::after {
            opacity: 1;
        }

        .grid-item.active {
            outline: 3px solid #4CAF50;
            outline-offset: -3px;
        }

        .grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            aspect-ratio: 1;
            display: block;
        }









        #header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: whitesmoke;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
        }

        #header.scrolled {
            background-color: rgb(255, 255, 255);
        }

        #header-content {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 8ch;
        }



        .nav-menu {
            display: flex;
            align-items: center;
            
        }

        .nav-menu li {
            margin-left: var(--space-3);
        }

        .nav-menu a {
            color: rgb(93, 108, 245);
            font-weight: 600;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--secondary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width var(--transition-normal);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }



        .hamburger {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: blue;
            transition: all var(--transition-normal);
        }






        .homer
        {
            display: none;
            align-items: center;
            margin-left: 50%;
            
        }

        .home{
            color: rgb(93, 108, 245);
            font-weight: 600;
            position: relative;
            padding: 0.5rem 0;
        }

        .homer a:hover,
        .homer a.active {
            color: var(--secondary-color);
        }

        .homer a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width var(--transition-normal);
        }

        .homer a:hover::after,
        .homer a.active::after {
            width: 100%;
        }






        

        @media(max-width:768px){

             .btn, #prevBtn, #nextBtn {
              display: none !important;
             visibility: hidden !important;
             opacity: 0 !important;
             pointer-events: none !important;
             }
                .slider-container, 
                .slider {
                      height: 40ch; 
                      width: 100%;
                 }

                .slide {
                  width: 100%;
                  margin: 0; /* Remove the 15% margins so it fills the screen */
                  }




                .slide {
                    width: 100%;

                }
                .slider{
                    display: flex;
                    align-items: center;
                    width: 100%;

                }


                .homer{
                    display: flex;
                }
                .slider-container {
                    height: 40ch;
                    width: 100%;

                }
            }


        @media(min-width : 2500px){

            .nav-menu a {
                font-weight: 600;
                font-size: xx-large;
                position: relative;
                padding: 0.5rem 0;
            }
        }

        @media(min-width : 3000px){
            .nav-menu a {
                font-weight: 600;
                font-size: 3rem;
                position: relative;
                padding: 1rem 0;
            }
            .btn{
                width: 100px;
                height: 100px;
                font-size: 100px;
            }

            .slider-container{
                margin: 7ch;
            }
            
        }





