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

        body {
            font-family: 'Arial Black', Arial, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
             overflow-y: auto;
            width: 100%;
            min-height: 100vh;
        }


/* Fixed Menu Bar */
.menu-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(50, 50, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.menu-tab {
    padding: 10px 24px;
    border-radius: 50px;
    background: transparent;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-tab.active {
    background: #fff;
    color: #000;
}

.menu-tab:hover:not(.active) {
    color: #fff;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(80, 80, 80, 0.8);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(100, 100, 100, 0.9);
    transform: rotate(90deg);
}

.menu-toggle.active {
    transform: rotate(45deg);
}

.menu-toggle.active:hover {
    transform: rotate(45deg) scale(1.1);
}

/* Expanded Menu */
.expanded-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.98), rgba(20, 20, 20, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 60px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.expanded-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-title {
    font-size: 2rem !important;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #fff;
}

.menu-subtitle {
    font-size: 1rem;
    color: #999;
    font-weight: 300;
    line-height: 1.5;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.menu-section {
    flex: 1;
}

.nav-links {
    list-style: none;
    margin-bottom: 40px;
}

.nav-item {
    margin-bottom: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.social-links {
    list-style: none;
}

.social-item {
    margin-bottom: 15px;
}

.social-link {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
}

.social-link:hover {
    color: #fff;
    padding-left: 10px;
}

.menu-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.close-menu-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}


        .container {
            display: flex;
            min-height: 100vh;
        }



        /* Carousel Section */
        /* Carousel Section */
        .carousel-section {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #1a1a1a;
        }

        .carousel {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


        .carousel-indicators {
            display: none;
        }

        .indicator {
            display: none;
        }

        .indicator.active {
            display: none;
        }

        /* Form Section */
        .form-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            background: #000;
        }

        .form-content {
            max-width: 600px;
            width: 100%;
        }

        h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            letter-spacing: 0.02em;
            margin-bottom: 20px;
            line-height: 1;
        }

        .subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        input, textarea {
            width: 100%;
            padding: 15px 20px;
            background: #fff;
            border: none;
            font-size: 1rem;
            color: #666;
            transition: all 0.3s;
            border-radius: 10px;
        }

        input:focus, textarea:focus {
            outline: 2px solid #666;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
            font-family: 'Arial', sans-serif;
        }

   

/* Footer */

        .content-spacer-footer {
            flex: 1;
        }

        footer {
            background-color: #ffffff;
            padding: 60px 40px 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 80px;
        }

        .footer-left h3 {
            font-size: 25px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
            color: #000;
        }

        .footer-right {
            text-align: right;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-end;
        }

        .footer-links a {
            color: #000;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 0.6;
        }

        .footer-links img {
            height: 6%;
            width: 6%;
            vertical-align: middle;
            filter: brightness(0);
            transition: opacity 0.3s;
        }

        .footer-links a:hover img {
            opacity: 0.6;
        }
        .animated-text-container-footer {
            position: relative;
            height: 280px;
            margin-bottom: 40px;
            overflow: hidden;
        }

        .animated-text-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: flex-start;
            align-items: flex-end;
            gap: 0;
            font-size: 120px;
            font-weight: 900;
            line-height: 0.85;
            letter-spacing: -0.02em;
        }

        .letter-footer {
            display: inline-block;
            transform: translateY(100%);
            animation: slideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            opacity: 0;
        }

        .letter-footer.black {
            color: #000000;
        }

        .letter-footer.gray-dark {
            color: #5a5a5a;
        }

        .letter-footer.gray-light {
            color: #9a9a9a;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .letter-footer:nth-child(1) { animation-delay: 0.1s; }
        .letter-footer:nth-child(2) { animation-delay: 0.2s; }
        .letter-footer:nth-child(3) { animation-delay: 0.3s; }
        .letter-footer:nth-child(4) { animation-delay: 0.4s; }
        .letter-footer:nth-child(5) { animation-delay: 0.5s; }
        .letter-footer:nth-child(6) { animation-delay: 0.6s; }
        .letter-footer:nth-child(7) { animation-delay: 0.7s; }
        .letter-footer:nth-child(8) { animation-delay: 0.8s; }
        .letter-footer:nth-child(9) { animation-delay: 0.9s; }
        .letter-footer:nth-child(10) { animation-delay: 1.0s; }
        .letter-footer:nth-child(11) { animation-delay: 1.1s; }
        .letter-footer:nth-child(12) { animation-delay: 1.2s; }
        .letter-footer:nth-child(13) { animation-delay: 1.3s; }
        .letter-footer:nth-child(14) { animation-delay: 1.4s; }
        .letter-footer:nth-child(15) { animation-delay: 1.5s; }

        .animated-text-footer.restart .letter-footer {
            animation: none;
            transform: translateY(100%);
            opacity: 0;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: 700;
            color: #000;
        }

        .footer-bottom-left,
        .footer-bottom-right {
            display: flex;
            gap: 20px;
        }

        .footer-bottom a {
            color: #000;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .footer-bottom a:hover {
            opacity: 0.6;
        }


        .logo-text {
            font-size: 120px !important;
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.02em;
        }

        .logo-gradient {
            background: linear-gradient(90deg, #000 0%, #666 50%, #999 75%, #ccc 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }


        /* Responsive Design */
        @media (min-width: 1024px) {
      
    .menu-title {
        font-size: 3.5rem;
    }
    .logo-text {
        font-size: 320px;
    }
    .animated-text-footer {
        font-size: 120px;
    }
    .animated-text-container-footer {
        height: 300px;
    }

            .form-section {
                padding: 80px 60px;
            }
        }



        @media (max-width: 768px) {
      
    .letter-space {
        width: 30px;
    }
    .menu-content {
        flex-direction: column;
        gap: 30px;
    }
    .menu-title {
        font-size: 2.5rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 12px 16px;
    }
    .nav-icon {
        width: 45px;
        height: 45px;
    }
    .expanded-menu {
        padding: 50px 30px;
    }

               
   footer {
        padding: 40px 20px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: -20px;
    }

    .footer-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-left h3 {
        font-size: 18px;
        font-weight: 700;
        text-align: left;
    }

    .footer-right {
        width: 100%;
        margin-bottom: 50px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 60px;
        align-items: flex-start;
    }

    .footer-links li {
        list-style: none;
    }

    /* LEFT COLUMN: HOME, PHOTOGRAPHY, CONTACT, PRIVACY POLICY */
    .footer-links li:nth-child(1),
    .footer-links li:nth-child(2),
    .footer-links li:nth-child(3),
    .footer-links li:nth-child(4) {
        grid-column: 1;
        text-align: left;
    }

    /* RIGHT COLUMN: INSTAGRAM */
    .footer-links li:nth-child(5) {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
        padding-left: 0;
    }

    .footer-links a {
        font-size: 18px;
        font-weight: 700;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
        font-size: 14px;
        order: 2;
    }

    /* LEFT: MADE BY NIA DIALE */
    .footer-bottom-left {
        display: flex;
        flex-direction: column-reverse;
        gap: 4px;
    }

    /* RIGHT: PRIVACY POLICY & TERMS */
    .footer-bottom-right {
        display: none;
    }

    .footer-bottom::after {
        content: '@GEFFPHOTOGRAPHY 2025';
        font-weight: 700;
    }

    .animated-text-container-footer {
        height: 140px;
        margin-bottom: 15px;
        margin-top: -80px;
        order: -2;
    }

    .animated-text-footer {
        font-size: 70px;
    }

    /* Reorder footer children */
    footer {
        display: flex;
        flex-direction: column;
    }

    footer .animated-text-container-footer {
        order: -1;
    }

    footer .footer-bottom {
        order: 0;
    }

            .container {
                flex-direction: column-reverse;
            }

             .carousel-section {
                min-height: 60vh;
                order: 2;
            }
            
            .carousel-slide img {
                min-height: 55vh;
                object-fit: cover;
            }

            .form-section {
                padding: 40px 30px;
            }

            h1 {
                font-size: 4rem;
            }
        }


        @media (max-width: 480px) {
              .menu-bar {
        top: 15px;
        padding: 6px 10px;
        gap: 8px;
    }
    .menu-tab {
        padding: 8px 18px;
        font-size: 12px;
    }
    .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    .menu-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    .menu-subtitle {
        font-size: 0.9rem;
    }
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 14px;
        gap: 15px;
    }
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    .expanded-menu {
        padding: 40px 25px;
        border-radius: 20px;
    }
    .menu-header {
        margin-bottom: 35px;
    }

     .fixed-footer {
                padding: 15px 20px;
            }
     .footer-left h3 {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .animated-text-footer {
        font-size: 60px;
    }

    .animated-text-container-footer {
        height: 120px;
    }

 

    .carousel-section {
                min-height: 65vh;
            }

            .carousel-slide {
                min-height: 65vh;
            }
            
            .carousel-slide img {
                min-height: 65vh;
            }

            .form-section {
                padding: 30px 20px;
            }

            h1 {
                font-size: 3rem;
                margin-bottom: 15px;
            }

            .subtitle {
                font-size: 0.95rem;
                margin-bottom: 8px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            input, textarea {
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            .menu-button {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 0.8rem;
            }

            .carousel-indicators {
                bottom: 20px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }
        }

        @media screen and (max-width: 430px) {
             .menu-tab {
        padding: 8px 16px;
        font-size: 11px;
    }
      .menu-title {
        font-size: 1.5rem !important;
        letter-spacing: 2px;
    }

     .animated-text-footer {
                font-size: 34px !important;
            }

            .animated-text-container-footer {
                height: 105px;
            }

             .footer-links img {
                height: 10% !important;
                width: 10% !important;
             }
            .carousel-section {
                min-height: 60vh;
            }

            .carousel-slide {
                min-height: 60vh;
            }
            
            .carousel-slide img {
                min-height: 60vh;
            }

            h1 {
                font-size: 2.8rem;
            }
        }

        @media screen and (max-width: 414px) {
             .menu-title {
        font-size: 1.8rem;
    }
      .animated-text-footer {
                font-size: 32px !important;
            }

            .animated-text-container-footer {
                height: 100px;
            }

             .footer-links img {
                height: 10% !important;
                width: 10% !important;
             }
            h1 {
                font-size: 2.6rem;
            }

            .form-section {
                padding: 25px 18px;
            }

             .carousel-section {
                min-height: 58vh;
            }

            .carousel-slide {
                min-height: 58vh;
            }
            
            .carousel-slide img {
                min-height: 58vh;
            }
        }

        @media screen and (max-width: 390px) {
              .menu-bar {
        gap: 6px;
        padding: 6px 8px;
    }
    .menu-tab {
        padding: 7px 14px;
    }
    .social-link {
        font-size: 0.7rem !important;
    }
     .footer-left h3 {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .animated-text-footer {
        font-size: 31px !important;
    }

    .animated-text-container-footer {
        height: 100px;
    }


            h1 {
                font-size: 2.5rem;
            }

            input, textarea {
                padding: 11px 14px;
            }

            .carousel-section {
                min-height: 58vh;
            }

            .carousel-slide {
                min-height: 58vh;
            }
            
            .carousel-slide img {
                min-height: 58vh;
            }
        }

        @media screen and (max-width: 375px) {

             .menu-title {
        font-size: 1.2rem !important;
    }
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    .expanded-menu {
        padding: 35px 20px;
    }

    .footer-left h3 {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .animated-text-footer {
        font-size: 42px;
    }

    .animated-text-container-footer {
        height: 85px;
    }

    .footer-bottom {
        font-size: 10px;
    }

            h1 {
                font-size: 2.4rem;
            }

            .subtitle {
                font-size: 0.9rem;
            }

            .carousel-section {
                min-height: 56vh;
            }

            .carousel-slide {
                min-height: 56vh;
            }
            
            .carousel-slide img {
                min-height: 56vh;
            }
        }

        @media screen and (max-width: 360px) {
            .menu-tab {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .menu-toggle {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .social-link {
        font-size: 0.85rem !important;
    }

     .animated-text-footer {
        font-size: 28px !important;
    }

    .animated-text-container-footer {
        height: 90px;
    }

            h1 {
                font-size: 2.3rem;
            }

            .form-section {
                padding: 20px 15px;
            }

            input, textarea {
                padding: 10px 12px;
                font-size: 0.9rem;
            }

             .carousel-section {
                min-height: 55vh;
            }

            .carousel-slide {
                min-height: 55vh;
            }
            
            .carousel-slide img {
                min-height: 55vh;
            }
        }

        @media screen and (max-width: 320px) {
             .menu-title {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    .menu-subtitle {
        font-size: 0.8rem;
    }
    .menu-tab {
        padding: 6px 10px;
        font-size: 9px;
    }
    .nav-link {
        font-size: 0.8rem;
        gap: 10px;
    }
    .nav-icon {
        width: 35px;
        height: 35px;
    }

      .fixed-footer {
                padding: 12px 15px;
            }

            .footer-left, .footer-right a {
                font-size: 11px;
            }

             footer {
                padding: 20px 12px 18px;
            }

            .animated-text-footer {
                font-size: 42px;
            }

            .animated-text-container-footer {
                height: 65px;
                margin-bottom: 18px;
            }

            .footer-left h3,
            .footer-links a {
                font-size: 12px;
            }

            .footer-bottom {
                font-size: 10px;
                gap: 12px;
            }

            .footer-bottom-left,
            .footer-bottom-right {
                gap: 12px;
            }

            h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 0.85rem;
            }

            .form-group {
                margin-bottom: 18px;
            }

            .menu-button {
                width: 45px;
                height: 45px;
                font-size: 0.75rem;
            }

           .carousel-section {
                min-height: 52vh;
            }

            .carousel-slide {
                min-height: 52vh;
            }
            
            .carousel-slide img {
                min-height: 52vh;
            }
        }