  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     

        header {
         
            max-width: 1200px;
            width: 95%;
            margin: 1rem auto;
            border-radius: 10rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #000000;
            padding: .5rem 2rem;
            position: relative;
            z-index: 1000;
        }

        .logo {
            width: 19vw;
            min-width: 60px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .logo img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #8c6c3b;
        }

        .follow-btn {
            border: 2px solid #c1a048 !important;
            padding: 8px 20px;
            background: transparent !important;
            color: #edd05d!important;
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 25px;
        }

        .follow-btn:hover {
            background: #edd05d !important;
            color: black !important;
        }

        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 25px;
            justify-content: space-between;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Mobile Styles */
        @media screen and (max-width: 768px) {
            header {
                border-radius: 2rem;
                padding: .8rem 1.5rem;
                width: 90%;
            }

            .logo {
                width: 30vw;
                min-width: 50px;
            }

            .hamburger {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background-color: rgba(0, 0, 0, 0.95);
                -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s ease;
                z-index: 999;
            }

            nav.active {
                right: 0;
            }

            nav a {
                font-size: 1.5rem;
                font-weight: 600;
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.3s ease;
            }

            nav.active a {
                opacity: 1;
                transform: translateY(0);
            }

            nav.active a:nth-child(1) { transition-delay: 0.1s; }
            nav.active a:nth-child(2) { transition-delay: 0.2s; }
            nav.active a:nth-child(3) { transition-delay: 0.3s; }
            nav.active a:nth-child(4) { transition-delay: 0.4s; }
            nav.active a:nth-child(5) { transition-delay: 0.5s; }

            .follow-btn {
                padding: 12px 30px;
                font-size: 1.2rem;
                border-radius: 30px;
            }
        }

        @media screen and (max-width: 480px) {
            header {
                border-radius: 1.5rem;
                padding: .6rem 1rem;
                width: 95%;
            }

            .logo {
                width: 45vw;
                min-width: 45px;
            }

            .hamburger {
                width: 25px;
                height: 20px;
            }

            .hamburger span {
                height: 2px;
            }

            nav a {
                font-size: 1.3rem;
            }

            .follow-btn {
                padding: 10px 25px;
                font-size: 1.1rem;
            }
        }
