body {
    	
            }

.social {
    float: right;
    height: 40px;
    position: absolute;
    right: 10%;
    top: 35px;
}
.social img {
    height: 100%;
     padding: 0 5px;
}
.social img:hover {
 -webkit-transform: scale(0.8) rotate(360deg);
     -ms-transform: scale(0.8) rotate(360deg);
         transform: scale(0.8) rotate(360deg);
  -webkit-transition: ease-in .5s;
  -o-transition: ease-in .5s;
  transition: ease-in .5s;
}
        .main-content {
            
            Font-family: 'lato', sans-serif;
            line-height: 1.5;
            padding: 40px;
            text-align: center;
            font-size: 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .main-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 4px;
        }

        .main-content p {
            font-size: 1.2rem;
            opacity: 0.7;
        }

        .header {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .hamburger {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s;
            position: relative;
            /*! line-height: 10px; */
        }

        .hamburger:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background-color: #fd3f92;
            border-radius: 2px;
            transition: 0.3s;
            position: absolute;
        }

        .hamburger span:first-child {
            transform: translateY(-8px);
        }

        .hamburger span:last-child {
            transform: translateY(8px);
        }

        .hamburger.open span:first-child {
             background-color: white;
            transform: rotate(45deg);
        }

        .hamburger.open span:last-child {
            background-color: white;
            transform: rotate(-45deg);
        }

        .panels-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            pointer-events: none;
            z-index: 998;
        }
a {text-decoration: none;
color: #fd3f92;}
a:hover {
    color: DodgerBlue;
    animation: all .8s ease;
}

        .image-panel {
            position: absolute;
            top: 0;
            left: -50%;
            width: 50%;
            height: 100vh;
            background-color: #000;
            transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            pointer-events: auto;
            box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
        }

        .image-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }
        
        .image_copy {
            color: white;
            position: absolute;
            left: 20px;
            bottom: 20px;
            font-size: 14px;
            background: rgba(0, 0, 0, 0.6);
            padding: 8px 15px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 80%;
            line-height: 1.4;
            transition: opacity 0.3s;
        }

        .menu-panel {
            position: absolute;
            top: 0;
            right: -50%;
            width: 50%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 10px 40px 40px;
            pointer-events: auto;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        }

        .panels-container.open .image-panel {
            left: 0;
        }

        .panels-container.open .menu-panel {
            right: 0;
        }
		.menu-panel a {
			color: inherit;
			font-size: inherit;
			text-decoration: none;
		}
        .menu-item {
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 12px;
        }

        .menu-main-item {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 15px;
        }

        .menu-main-item:hover {
            color: #ff3366;
            transform: translateX(10px);
        }

        .submenu {
            margin-left: 20px;
            margin-top: 10px;
        }

        .submenu-item {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            padding: 8px 0;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 1px;
            border-left: 2px solid transparent;
            padding-left: 15px;
        }

        .submenu-item:hover {
            color: white;
            border-left: 2px solid #ff3366;
            padding-left: 20px;
            background: rgba(255, 51, 102, 0.1);
        }

        .menu-active {
            color: #ff3366;
            background: rgba(255, 51, 102, 0.1);
        }

        .footer-text {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            text-align: right;
        }

        .menu-header {
            margin-bottom: 40px;
            position: sticky;
            top: 0;
        }

        .menu-header h2 {
            color: white;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 300;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 20px;
            line-height: 1.5;
            font-family: inherit;
            position: relative;
            top: 11px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s, visibility 0.6s;
            z-index: 997;
            cursor: pointer;
        }

        .overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        .menu-panel::-webkit-scrollbar {
            width: 5px;
        }

        .menu-panel::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .menu-panel::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 5px;
        }

        .menu-panel::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        @media screen and (max-width: 768px) {
            .image-panel {
                display: none;
            }

            .menu-panel {
                width: 100%;
                right: -100%;
            }

            .menu-panel {
                padding: 80px 30px 30px;
            }

            .menu-main-item {
                font-size: 1.5rem;
            }

            .submenu-item {
                font-size: 1rem;
            }

            .menu-header h2 {
                font-size: 2rem;
            }
        }

        @media screen and (max-width: 480px) {
            .menu-main-item {
                font-size: 1.2rem;
            }

            .submenu-item {
                font-size: 0.9rem;
            }

            .footer-text {
                font-size: 0.8rem;
            }
        }
    