:root {
            --bg-color: #f7f5f0; /* Cream white / Light aesthetic gray */
            --text-dark: #1a1a1a;
            --text-muted: #6c757d;
            --sidebar-width: 280px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Bebas Neue", sans-serif;
            background-color: var(--bg-color);
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .top-navbar {
            height: 45px;
            background-color: var(--bg-color);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
        }

        .menu-toggle-btn {
            background: none;
            border: none;
            font-size: 1.1rem;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            transition: opacity 0.2s;
        }

        .menu-toggle-btn:hover {
            opacity: 0.7;
        }

        .social-icons {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .social-icons a {
            color: var(--text-dark);
            font-size: 1rem;
            transition: transform 0.2s ease, opacity 0.2s ease;
            opacity: 0.8;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
            opacity: 1;
        }

        .sidebar {
            position: fixed;
            top: 45px;
            left: calc(-1 * var(--sidebar-width));
            width: var(--sidebar-width);
            height: calc(100vh - 45px - 35px);
            background-color: var(--bg-color);
            border-right: 1px solid rgba(0, 0, 0, 0.06);
            transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1040;
            /*padding: 2.5rem 2rem;*/
            padding: 0.5rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .sidebar.open {
            left: 0;
            box-shadow: 10px 0 30px rgba(0,0,0,0.03);
        }

        .sidebar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            margin-bottom: 2.5rem;
            color: var(--text-dark);
            text-decoration: none;
        }

        .sidebar-nav {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .sidebar-nav li a {
            /*font-family: "Bebas Neue", sans-serif;
            font-weight: 400;
            font-style: normal;*/

            /*font-weight: bold;*/

            text-decoration: none;
            color: var(--text-dark);
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.075em;
            transition: all 0.2s ease;
            display: inline-block;
            opacity: 0.85;
            /*margin:0px;*/
        }

        .sidebar-nav li a:hover,
        .sidebar-nav li a.active {
            opacity: 1;
            color: #f97316;
            transform: translateX(4px);
            font-weight: 700;
        }

        .bottom-bar {
            height: 35px;
            background-color: var(--bg-color);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            font-size: 0.75rem;
            letter-spacing: 0.08em;
            color: var(--text-muted);
        }
        .main-content {
            font-family: "Bebas Neue", sans-serif;
            font-weight: 400;
            font-style: normal;

            font-weight: bold;
            /*margin-top: 45px;*/
            margin-bottom: 35px;
            width: 100vw;
            /*height: calc(100vh - 80px);*/
            height: 100vh;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            position: relative;
            overflow-y: scroll;
            /*display: flex;*/
            align-items: center;
            justify-content: center;
            background-color: var(--bg-color);
        }
        .main-content-home {
            /*margin-top: 45px;*/
            margin-bottom: 35px;
            width: 100vw;
            /*height: calc(100vh - 80px);*/
            height: 100vh;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            position: relative;
            overflow: hidden;
            /*display: flex;*/
            align-items: center;
            justify-content: center;
            background-color: var(--bg-color);
        }

        .page-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            padding: 0 !important;
            margin: 0 !important;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
        }

        .page-section.active {
            display: flex;
            opacity: 1;
        }

        #home {
            /*background: url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;*/
        /*background : url('https://i.pinimg.com/originals/58/50/9d/58509d00d97ef1b8d048415920653170.gif?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;*/
        background: url('../images/instant/ss.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        }

        .landing-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: flex-end;
            padding: 4rem;
        }

        .landing-title {
            color: #ffffff;
            /*font-family: 'Playfair Display', serif;*/
            font-size: clamp(2.5rem, 5vw, 5rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        #showreel {
            display: none;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            padding: 0 !important;
            margin: 0 !important;
        }

        #showreel.active {
            display: flex;
        }

        .showreel-layout {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1500px;
            padding: 0 4rem;
            gap: 3rem;
        }

        .vertical-showreel-title {
            font-family: 'Inter', sans-serif;
            font-weight: 900;
            font-size: clamp(2.4rem, 4.2vw, 4.8rem);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-dark);
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            text-align: right;
            line-height: 0.85;
            user-select: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showreel-content-box {
            flex: 1;
            max-width: 1100px;
            display: flex;
            flex-direction: column;
        }

        .video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background-color: #000;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .video-container iframe,
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
        }

        .video-caption {
            margin-top: 0.8rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            letter-spacing: 0.02em;
            font-weight: 300;
        }

        .generic-page-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-align: center;
            padding: 2rem;
        }

        .generic-page-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .generic-page-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            letter-spacing: 0.03em;
        }

        #frames {
            overflow-y: auto !important;
            align-items: flex-start !important;
            justify-content: flex-start !important;
        }

        .frames-page-wrapper {
            width: 100%;
            min-height: 100%;
            padding: 5rem 3rem 5rem 3rem;
            display: flex;
            flex-direction: column;
        }

        .frames-header {
            margin-bottom: 2.5rem;
            text-align: left;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            padding-bottom: 1rem;
        }

        .frames-main-title {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: clamp(2rem, 3.5vw, 3.5rem);
            letter-spacing: 0.18em;
            color: var(--text-dark);
            text-transform: uppercase;
        }

        .frames-gallery-container {
            width: 100%;
        }

        .frames-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .frame-card {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background-color: #eae5dc;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .frame-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .frame-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .frame-card:hover img {
            transform: scale(1.04);
        }

        .frame-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 1rem;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            color: #fff;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            font-weight: 400;
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
        }

        .frame-card:hover .frame-overlay {
            opacity: 1;
        }

        .frame-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(20, 20, 20, 0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .frame-lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content-wrapper {
            max-width: 85vw;
            max-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .lightbox-content-wrapper img {
            max-width: 100%;
            max-height: 72vh;
            object-fit: contain;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .lightbox-title-bar {
            margin-top: 1.2rem;
            color: #f7f5f0;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 0.12em;
            font-weight: 300;
            text-align: center;
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2.5rem;
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            z-index: 2010;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .lightbox-close:hover {
            opacity: 1;
        }

        .lightbox-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #fff;
            font-size: 1.25rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2010;
            transition: background 0.2s, opacity 0.2s;
            opacity: 0.7;
        }

        .lightbox-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            opacity: 1;
        }

        .lightbox-prev {
            left: 2rem;
        }

        .lightbox-next {
            right: 2rem;
        }

        /*@media (max-width: 992px) {
            .showreel-layout {
                flex-direction: column;
                gap: 1.5rem;
                padding: 0 1.5rem;
            }
            .vertical-showreel-title {
                writing-mode: horizontal-tb;
                transform: none;
                font-size: 1.8rem;
                letter-spacing: 0.15em;
                height: auto !important;
            }
        }*/


