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

        body {
            font-family: 'Arial', sans-serif;
            transition: all 0.3s ease;
            overflow-x: hidden;
        }

        .light-theme {
            background-color: #ffffff;
            color: #000000;
        }

        .dark-theme {
            background-color: #000000;
            color: #ffffff;
        }

        /* Header - Fixed positioning for all pages */
        .header {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            display: flex;
            gap: 10px; /* Reduced gap between buttons */
            align-items: center;
        }

        /* Language Toggle - Reduced width */
        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px; /* Reduced internal gap */
            background: rgba(0, 0, 0, 0.8);
            border-radius: 20px; /* Reduced border radius */
            padding: 6px 12px; /* Reduced padding */
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            min-width: fit-content; /* Ensure it doesn't get too wide */
        }

        .dark-theme .lang-toggle {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Language Labels - Smaller size */
        .lang-label {
            font-size: 14px; /* Slightly smaller font */
            font-weight: bold;
            color: rgba(153, 153, 153, 0.829);
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 3px 6px; /* Reduced padding */
            border-radius: 10px;
            white-space: nowrap; /* Prevent text wrapping */
        }

        .dark-theme .lang-label {
            color: rgba(255, 255, 255, 0.8);
        }

        .lang-label.active {
            color: #000000;
            background: rgba(255, 255, 255, 0.9);
        }

        .dark-theme .lang-label.active {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.2);
        }

        /* Language Separator - Smaller */
        .lang-separator {
            width: 1px;
            height: 10px; /* Reduced height */
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .dark-theme .lang-separator {
            background: rgba(255, 255, 255, 0.7);
        }

        /* Theme Toggle Button */
        .theme-toggle {
            width: 45px; /* Slightly smaller to match */
            height: 45px;
            border: none;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .dark-theme .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
            background: rgba(0, 0, 0, 0.9);
        }

        .dark-theme .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Theme Toggle Icons */
        .theme-toggle svg {
            width: 22px;
            height: 22px;
            transition: all 0.3s ease;
            position: absolute;
        }

        .sun-icon {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        .moon-icon {
            opacity: 0;
            transform: rotate(180deg) scale(0);
        }

        .dark-theme .sun-icon {
            opacity: 0;
            transform: rotate(-180deg) scale(0);
        }

        .dark-theme .moon-icon {
            opacity: 1;
            transform: rotate(0deg) scale(1);
        }

        /* Main Content */
        .section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            width: 100%;
            max-width: 1200px;
            gap: 40px;
            padding: 0 40px;
            align-items: center;
        }

        .content-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            gap: 30px;
        }

        .logo-container {
            width: 275px;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        /* Logo styling for theme switching */
        .logo-container img {
            max-width: 100%;
            height: auto;
            transition: all 0.3s ease;
        }

        /* Hide logo2 by default */
        .logo-container .logo2 {
            display: none;
        }

        /* Show logo2 and hide logo1 in dark theme */
        .dark-theme .logo-container .logo1 {
            display: none;
        }

        .dark-theme .logo-container .logo2 {
            display: block;
        }

        .first-text {
            font-size: 16px;
            position: relative;
            left: 0px;
            font-family: 'Verdana';
            line-height: 1.6;
            max-width: 300px;
            color: #B2B2B2;
            font-weight: 500;
        }

        .welcome-text {
            font-size: 20px;
            font-family: 'Verdana';
            line-height: 1.6;
            max-width: 300px;
            color: #8A2BE2;
            font-weight: 500;
        }

        .dark-theme .welcome-text {
            color: #BB86FC;
        }

        .scroll-btn {
            width: 60px;
            height: 60px;
            border: 2px solid #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: transparent;
            animation: scrollDown 2s ease-in-out infinite;
        }

        .dark-theme .scroll-btn {
            border-color: #ffffff;
        }

        .scroll-btn:hover {
            background: #000000;
            transform: scale(1.1);
            animation-play-state: paused;
        }

        .dark-theme .scroll-btn:hover {
            background: #ffffff;
        }

        .scroll-btn svg {
            width: 24px;
            height: 24px;
            fill: #000000;
            transition: all 0.3s ease;
        }

        @keyframes scrollDown {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
        }

        .dark-theme .scroll-btn svg {
            fill: #ffffff;
        }

        .scroll-btn:hover svg {
            fill: #ffffff;
        }

        .dark-theme .scroll-btn:hover svg {
            fill: #000000;
        }

        .content-right {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 900px;
            left: 385px;
            right: auto;
            height: 100vh;
            overflow: hidden;
        }

        .featured-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .featured-video {
                max-height: 300px;
            }
        }

        .content-right:hover .featured-video {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }

        .content-right {
            overflow: hidden;
        }

        .featured-video {
            transition: transform 0.3s ease;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* About Me Section */
        .about-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
        }

        .about-container {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 30px;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .about-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .profile-image {
            width: 371px;
            height: 595px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .about-right {
            display: flex;
            flex-direction: column;
            gap: 30px;
            padding: 20px;
        }

        .about-section-title {
            left: 40px;
            background: #8A2BE2;
            color: rgb(255, 255, 255);
            padding: 10px 20px;
            font-size: 18px;
            font-weight: bold;
            width: fit-content;
        }

        .personal-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            font-size: 16px;
            color: #333;
        }

        .personal-info strong {
            color: #333;
        }

        .education-item {
            font-size: 14px;
            color: #333;
        }

        .interest-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            color: #333;
        }

        .interest-tag {
            background: #8A2BE2;
            color: rgb(255, 255, 255);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }

        /* Portfolio Section */
        .portfolio-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .portfolio-title {
            font-size: 48px;
            font-weight: bold;
            color: #000000;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            letter-spacing: 3px;
            transition: color 0.3s ease;
        }

        .dark-theme .portfolio-title {
            color: #ffffff;
            text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
        }

        .flip-counter {
            color: #000000;
            font-size: 16px;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            transition: color 0.3s ease;
        }

        .dark-theme .flip-counter {
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
        }

        .book-container {
            perspective: 1000px;
            width: 600px;
            height: 920px;
            position: relative;
            cursor: pointer;
            margin-bottom: 40px;
        }

        .book {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.6s;
        }

        .book-cover {
            position: absolute;
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform-origin: left;
            transition: transform 0.6s;
            z-index: 10;
        }

        .page-content img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .book-page {
            position: absolute;
            width: 100%;
            height: 100%;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform-origin: left;
            transition: transform 0.6s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            text-align: center;
            overflow: hidden;
        }

        .book-page img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .book-page.page-1 {
            z-index: 9;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-2 {
            z-index: 8;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-3 {
            z-index: 7;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-4 {
            z-index: 6;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-5 {
            z-index: 5;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-6 {
            z-index: 4;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-7 {
            z-index: 3;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-8 {
            z-index: 2;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        .book-page.page-9 {
            z-index: 1;
            background: linear-gradient(135deg, #FFE8F9 0%, #FFB6FC 50%, #f39fe1 100%);
        }

        /* Flip animations */
        .book.flipped .book-cover {
            transform: rotateY(-180deg);
        
        }

        .book.page-1-flipped .book-page.page-1 {
            transform: rotateY(-180deg);
        }

        .book.page-2-flipped .book-page.page-2 {
            transform: rotateY(-180deg);
        }

        .book.page-3-flipped .book-page.page-3 {
            transform: rotateY(-180deg);
        }

        .book.page-4-flipped .book-page.page-4 {
            transform: rotateY(-180deg);
        }

        .book.page-5-flipped .book-page.page-5 {
            transform: rotateY(-180deg);
        }

        .book.page-6-flipped .book-page.page-6 {
            transform: rotateY(-180deg);
        }

        .book.page-7-flipped .book-page.page-7 {
            transform: rotateY(-180deg);
        }

        .book.page-8-flipped .book-page.page-8 {
            transform: rotateY(-180deg);
        }

        .book.page-9-flipped .book-page.page-9 {
            transform: rotateY(-180deg);
        }

        /*Gallery Section*/
        .gallery-section {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 60px;
            box-sizing: border-box;
        }

        .gallery-title {
            font-size: 48px;
            font-weight: bold;
            color: white;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 3px;
            z-index: 2;
            margin: 0 0 30px 0;
            text-align: center;
        }
        .gallery-background {
            position: absolute;
            width: 100vw;
            height: 100vh;
            background: url('website/galaxyBG.png') center/cover;
            background-position: center;
            background-size: cover;
            background-attachment: fixed;
            z-index: -1;
        }

        .gallery-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        .gallery-image-container {
            position: relative;
            width: 1280px;
            height: 793px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .carousel {
            width: 500%;
            height: 100%;
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            width: 20%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

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

        .slide::after {
            content: 'Sample Artwork ' counter(slide-counter);
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 14px;
            color: white;
        }

        .slide:nth-child(1) { counter-increment: slide-counter; }
        .slide:nth-child(2) { counter-increment: slide-counter; }
        .slide:nth-child(3) { counter-increment: slide-counter; }
        .slide:nth-child(4) { counter-increment: slide-counter; }
        .slide:nth-child(5) { counter-increment: slide-counter; }

        .slide:nth-child(1)::after { content: 'Artwork 1'; }
        .slide:nth-child(2)::after { content: 'Artwork 2'; }
        .slide:nth-child(3)::after { content: 'Artwork 3'; }
        .slide:nth-child(4)::after { content: 'Artwork 4'; }
        .slide:nth-child(5)::after { content: 'Artwork 5'; }

        .gallery-arrow {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: none;
            outline: none;
        }

        .gallery-arrow:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }

        .gallery-arrow:active {
            transform: scale(0.95);
        }

        .gallery-arrow svg {
            width: 30px;
            height: 30px;
            fill: #333;
            stroke: #333;
            stroke-width: 2;
        }


        .gallery-commission-btn {
            position: absolute;
            bottom: 40px;
            right: 40px;
            background: linear-gradient(135deg, #FFB6FC, #8A2BE2);
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
            z-index: 10;
        }

        .gallery-commission-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
        }

        /* Contact Section */
        .contact-section {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-background {
            position: absolute;
            width: 100vw;
            height: 100vh;
            background: url('website/galaxyBG.png') center/cover;
            background-position: center;
            background-size: cover;
            background-attachment: fixed;
            z-index: -1;
        }

        .contact-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
            z-index: 1;
        }

        .contact-image {
            width: 649px;
            height: 269px;
            border-radius: 20px;
            overflow: hidden;
            
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-title {
            font-size: 48px;
            font-weight: bold;
            color: white;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 3px;
        }

        .social-buttons {
            display: flex;
            gap: 20px;
        }

        .social-btn {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-btn:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .social-btn img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        /* Mobile Responsive for New Sections */
        @media (max-width: 768px) {
            .gallery-container {
                gap: 20px;
                padding: 0 20px;
            }

            .gallery-image-container {
                width: 80vw;
                height: 60vw;
                max-height: 300px;
            }

            .gallery-arrow {
                width: 45px;
                height: 45px;
            }

            .gallery-arrow svg {
                width: 24px;
                height: 24px;
            }

            .gallery-commission-btn {
                bottom: 20px;
                right: 20px;
                padding: 12px 24px;
            }

            .contact-image {
                width: 250px;
                height: 250px;
            }

            .contact-title {
                font-size: 36px;
            }

            .social-buttons {
                gap: 15px;
            }

            .social-btn {
                width: 60px;
                height: 60px;
            }

            .social-btn img {
                width: 35px;
                height: 35px;
            }
        }

        /* Navigation Diamonds */
        .nav-diamonds {
            position: absolute;
            bottom: 30px;
            left: 30px;
            display: flex;
            gap: 15px;
            z-index: 100;
        }

        .about-section .nav-diamonds {
            right: 30px;
            left: auto;
            top: 50%;
            transform: translateY(-50%);
            flex-direction: column;
            bottom: auto;
        }

        .diamond-nav {
            width: 50px;
            height: 50px;
            background: #8A2BE2;
            transform: rotate(45deg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .about-section .diamond-nav {
            width: 60px;
            height: 60px;
        }

        .diamond-nav:hover {
            background: #6A1B9A;
            transform: rotate(45deg) scale(1.1);
        }

        .diamond-nav-content {
            transform: rotate(-45deg);
            color: white;
            font-size: 9px;
            font-weight: bold;
            text-align: center;
            line-height: 1;
        }

        .about-section .diamond-nav-content {
            font-size: 10px;
        }

        .diamond-nav-icon {
            width: 18px;
            height: 18px;
            fill: white;
            margin-bottom: 2px;
        }

        .about-section .diamond-nav-icon {
            width: 20px;
            height: 20px;
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            /* Header adjustments */
            .header {
                top: 20px;
                left: 10px;
                gap: 1px;
            }
            
            .lang-toggle {
                padding: 4px 8px;
                gap: 4px;
                border-radius: 15px;
            }

            .lang-label {
                font-size: 12px;
                padding: 2px 4px;
            }

            .theme-toggle {
                width: 35px;
                height: 35px;
            }

            .theme-toggle svg {
                width: 16px;
                height: 16px;
            }

            /* Hero Section */
            .hero-section {
                align-items: center;
                text-align: center;
                gap: 15px;
            }

            .content-left {
                height: 30vh;
                max-width: 450px;
                min-height: 200px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .content-right {
                display: none;
            }

            .logo-container {
                width: 200px;
                max-width: 80vw;
            }

            .first-text {
                font-size: 14px;
                max-width: 250px;
                text-align: center;
                margin: 0 auto;
            }

            .welcome-text {
                font-size: 16px;
                max-width: 250px;
                text-align: center;
                margin: 0 auto;
            }

            .scroll-btn {
                width: 50px;
                height: 50px;
            }

            .scroll-btn svg {
                width: 20px;
                height: 20px;
            }

            /* About Section */
            .about-section {
                padding: 20px 10px;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 15px;
                margin: 0 10px;
            }

            .profile-image {
                width: 450px;
                height: 860px;
                margin: 0 auto;
            }

            .about-right {
                padding: 10px;
                gap: 20px;
            }

            .about-section-title {
                font-size: 16px;
                padding: 8px 16px;
            }

            .personal-info {
                grid-template-columns: 1fr;
                gap: 10px;
                font-size: 14px;
            }

            .interest-tags {
                justify-content: center;
            }

            .interest-tag {
                font-size: 12px;
                padding: 6px 12px;
            }

            /* Portfolio Section */
            .portfolio-title {
                font-size: 28px;
                margin-bottom: 20px;
                letter-spacing: 1px;
            }
            
            .book-container {
                width: 100vw;
                max-width: 500px;
                margin-bottom: 10px;
            }

            .flip-counter {
                font-size: 14px;
            }

            /* Gallery Section */
            .gallery-section {
                padding: 40px 10px 20px;
            }

            .gallery-title {
                font-size: 30px;
                margin-bottom: 20px;
                letter-spacing: 1px;
            }

            .gallery-container {
                gap: 10px;
                flex-direction: row;
            }

            .gallery-image-container {
                width: 1208px;
                height: 793px;
                max-width: 600px;
            }

            .gallery-arrow {
                width: 40px;
                height: 40px;
            }

            .gallery-arrow svg {
                width: 20px;
                height: 20px;
            }

            .gallery-commission-btn {
                bottom: 20px;
                right: 20px;
                padding: 10px 20px;
                font-size: 14px;
            }

            /* Contact Section */
            .contact-section {
                padding: 40px 10px;
            }

            .contact-container {
                gap: 30px;
            }

            .contact-image {
                width: 510px;
            }

            .contact-title {
                font-size: 28px;
                text-align: center;
                letter-spacing: 1px;
            }

            .social-buttons {
                gap: 15px;
            }

            .social-btn {
                width: 60px;
                height: 60px;
            }

            .social-btn img {
                width: 30px;
                height: 30px;
            }

            /* Navigation Diamonds */
            .nav-diamonds {

                bottom: 15px;
                left: 15px;
                gap: 8px;
            }

            .about-section .nav-diamonds {
                right: 15px;
                gap: 8px;
            }
            
            .diamond-nav {
                width: 35px;
                height: 35px;
            }

            .about-section .diamond-nav {
                width: 40px;
                height: 40px;
            }

            .diamond-nav-content {
                font-size: 7px;
            }

            .about-section .diamond-nav-content {
                font-size: 8px;
            }

            .diamond-nav-icon {
                width: 12px;
                height: 12px;
            }

            .about-section .diamond-nav-icon {
                width: 14px;
                height: 14px;
            }
        }

        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .section {
                padding: 10px;
            }

            .hero-section {
                padding: 0 10px;
            }

            .logo-container {
                width: 150px;
            }

            .first-text {
                font-size: 12px;
                max-width: 200px;
            }

            .welcome-text {
                font-size: 14px;
                max-width: 200px;
            }

            .portfolio-title,
            .gallery-title,
            .contact-title {
                font-size: 24px;
            }

            .book-container {
                width: 95vw;
                max-width: 300px;
            }

            .gallery-image-container {
                width: 95vw;
                height: 200px;
            }

            .about-container {
                margin: 0 5px;
                padding: 10px;
            }

            .nav-diamonds {
                bottom: 10px;
                left: 10px;
                gap: 5px;
            }

            .about-section .nav-diamonds {
                right: 10px;
            }

            .diamond-nav {
                width: 30px;
                height: 30px;
            }

            .about-section .diamond-nav {
                width: 35px;
                height: 35px;
            }

            .diamond-nav-content {
                font-size: 6px;
            }

            .about-section .diamond-nav-content {
                font-size: 7px;
            }

            .diamond-nav-icon {
                width: 10px;
                height: 10px;
            }

            .about-section .diamond-nav-icon {
                width: 12px;
                height: 12px;
            }
        }

        /* Landscape Mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .section {
                min-height: 100vh;
            }

            .content-right {
                height: 50vh;
            }

            .gallery-image-container {
                height: 300px;
            }

            .book-container {
                max-height: 70vh;
            }
        }