/* ====== GLOBAL STYLES ====== */
body {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.6;
    height: 100%;
    min-height: 100vh;

}

.main-content {
    flex: 1;
    width: 100%;
}

/* ====== FOOTER ====== */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem; 
    width: 100%;
    font-size: 12px;
    position: relative;
    left: 0;
    right: 0;
    background: #fff;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ====== NAVIGATION BAR ====== */
.nav-bar {
    background: rgba(255, 255, 255, 0);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 0;
    z-index: 100;
    width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-bottom: -10px;
    box-shadow: none;
}

/* LARGE LOGO - LEFT SIDE */
.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem; /* Large size for logo only */
    font-weight: 100;
    letter-spacing: 3px;
    color: #000000;
    text-decoration: none;
    margin-left: 1%;
}

/* SMALL NAV LINKS - RIGHT SIDE */
.nav-bar nav {
    display: flex;
    gap: 2rem;
}

.nav-bar nav a { /* Specifically target only the nav links */
    font-family: 'Libre Baskerville', serif;
    font-size: 14px; /* Kept small */
    font-weight: 400;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: opacity 0.3s;
}

.nav-bar nav a:hover {
    opacity: 0.7;
}

body {
    margin: 0;
    padding: 0;
}

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    width: 90%;
    height: 90vh;
    margin: 2rem auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    margin-bottom: 11rem;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 11rem;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.hero-text h1 {
    font-size: 1.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: white;
}

.hero-text h2 {
    font-size: 4.5rem;
    letter-spacing: 5px;
    line-height: 1.05;
}


/* ====== FEATURED WORK SECTION ====== */
.featured-work {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.work-container {
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-direction: row-reverse;
}

.work-images {
    flex: 6;
    display: flex;
    gap: 3rem;
    transform: translateX(20px); 
    margin-left: 9px;
    margin-right: 8px;
    margin-top: 2rem;
}

.featured-work .image-container {
    flex: 5;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    aspect-ratio: 3/4;
    transform: scale(1); 
    transform-origin: right center;
}

.featured-work .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-work .image-container img:hover {
    transform: scale(1.05);
}

.work-text {
    position: relative;
    left: 10px;
}

.work-text h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.intro-text {
    font-size: 13px;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 3.5rem;
    font-style: italic;
    line-height: 27px;
}

/* ====== ABOUT ARTIST SECTION (Homepage) ====== */
.about-preview {
    max-width: 1100px;
    margin: 7rem auto;
    padding: 0 3.5rem;
}

.about-container {
    display: flex;
    gap: 2rem;
    width: 99%;
    align-items: center;
    padding-bottom: 3rem;
}

.about-image {
    flex: 1;
    overflow: hidden;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-image {
    height: 500px; 
    margin-right: -2%; 
    margin-left: 2%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.about-image.keep-whole-image {
    height: 400px; 
}

.about-image.keep-whole-image img {
    object-fit: contain; 
    background-color: #f8f8f8; 
}

.about-text {
    flex: 1;
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}

.about-text h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 1rem;
    width: 100%; 
    max-width: 420px; 
    text-align: left; 
}

.about-intro {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 410px;
    font-style: italic;
    width: 100%;
    line-height: 27px;
}

.learn-more-button {
    max-width: 420px; 
    width: auto; 
    margin-left: 0; 
    align-self: flex-start; 
}


/* ====== BUTTON STYLES ====== */
.view-all-button, .learn-more-button {
    display: inline-block;
    padding: 14px 36px;
    background-color: #333;
    color: white;
    border: 1px solid #333;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 7px;
    cursor: pointer;
}

.view-all-button:hover, .learn-more-button:hover {
    background-color: transparent;
    color: #333;
}

/* ====== GLOBAL STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libre Baskerville', serif;
    color: #333;
    line-height: 1.7;
    background-color: #fafafa;
    font-size: 15px;
}

/* ====== LAYOUT & CONTAINERS ====== */
.container {
    max-width: 1200px;
    margin: 10;
    padding: 0 40px;
}

/* ====== ABOUT PAGE ====== */
.about-section {
    padding: 20px 0 0; 
    display: flex;
    flex-direction: column;
    align-items: center
}

.about-section * {
    box-sizing: border-box;
}

.section-title {
    text-align: left;
    margin-bottom: 22px; 
    font-size: 28px;
    font-weight: 400;
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 0.5px;
    padding: 0 6.8rem 0rem;
    width: 100%; 
}

.about-section .section-title h2 {
    font-size: 22px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.content-block {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: stretch;
    gap: 120px;
    padding: 0;
}

.about-content .content-block:first-child .image-container {
    margin-top: -7px; 
}

.content-block.second-block {
    padding-bottom: 2rem;
}

.content-block:nth-child(even) {
    flex-direction: row;
}

.content-block:nth-child(odd) {
    flex-direction: row;
}

.text-container, .image-container {
    flex: 1;
    min-width: 0; 
}

.text-container {
    flex: 0 0 35%;
    padding: 10px 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 500px;
    overflow-y: auto;
    text-align: left;
}

.text-container p {
    margin-bottom: 0px;
    margin-top: -11px;
    font-size: 13px;
    font-size: clamp(0.8rem, 2vw, 13px);
    line-height: 2.4;
    text-align: left;
    font-family: 'Libre Baskerville', serif;
    line-height: clamp(1.4, 2vw, 2.4);
    flex: 1;
}

.text-container p:last-child {
    margin-bottom: 20px; 
}

.image-container {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    align-items: center;
}

.image-placeholder {
    width: 120%;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

.centering-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Second block - image on left, text on right */
.content-block.second-block {
    flex-direction: row-reverse;
}

.about-section .image-container,
.about-section .image-placeholder, 
.about-section .image-placeholder img {
    transform: none !important;
    scale: 1 !important;
}

/* ====== RESTORE HOVER ZOOM EFFECT ====== */
.about-section .image-placeholder {
    overflow: hidden !important; /* Ensure overflow is hidden for zoom effect */
}

.about-section .image-placeholder img {
    transition: transform 0.5s ease !important; /* Restore smooth transition */
}

.about-section .image-placeholder:hover img {
    transform: scale(1.05) !important; /* Zoom effect on hover */
}

/* Ensure the image container doesn't move during zoom */
.about-section .image-placeholder {
    transform: translateZ(0); /* Hardware acceleration for smoother animation */
}

.center-fix {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

.center-fix-inner {
    width: 100%;
    max-width: 1200px;
}

/*CONTACT PAGE*/
    * { 
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Libre Baskerville', serif;
            background-color: #f8f8f8;
            color: #333;
            line-height: 1.1;
            padding: 20px 20px 20px;

        }
        
        .contact-container {
            max-width: 800px;
            max-height: 800px;
            margin: 0 auto;
            align-items: center;
            padding: 40px 20px 100px;
            flex: 1;
            margin-bottom: 50px;
        }
        
        .contact-header {
            text-align: left;
            margin-bottom: 40px;
            width: 100%;
            max-width: 1200px; 
            box-sizing: border-box;
        }
        
        .contact-header h1 {
            font-size: 28px;
            font-weight: 400;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
        }

        .contact-content {
            display: flex;
            gap: 60px;
            align-items: flex-start;
            margin-bottom: 40px;
            width: 100%;
            max-width: 1200px; 
            margin: 0 auto;
            box-sizing: border-box;
        }
        
        /* Form without visible box */
        .contact-form {
            flex: 1;
            padding: 0; 
            background-color: transparent; 
            box-shadow: none; 
            border-radius: 0; 
        }
        
        .form-group {
            margin-bottom: 18px;
        }
        
        .form-group:last-of-type {
            margin-bottom: 10px; 
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 13px;
            font-weight: 600;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Libre Baskerville', serif;
            font-size: 0.9rem;
            transition: border-color 0.3s;
            background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent white */
        }
        
        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            outline: none;
            border-color: #a67c52;
            background-color: #fff; /* Solid white on focus */
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .required::after {
            content: " *";
            color: #e74c3c;
        }
        
        .divider {
            height: 1px;
            background-color: #1f1f1f;
            margin: 15px 0;
            opacity: 5.2; /* More subtle divider */
            max-width: 900px;
            width: 100%;
        }
        
        .contact-form .divider {
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
        }

        .form-message {
        display: block;
        margin-top: 5px;
        padding: 10px 15px;
        border-radius: 4px;
        font-size: 14px;
        clear: both;
        width: 100%;
        }

        .form-message.success {
        display: block;
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        }

        .form-message.error {
        display: block;
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        }
        
        /* Button styling to match your other buttons */
        .submit-button {
            background-color: #333;
            color: #fff;
            border: none;
            padding: 14px 30px;
            font-family: 'Libre Baskerville', serif;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s;
            border-radius: 4px;
            margin-top: 0px;
            margin-bottom: 10px;
        }
        
        .submit-button:hover {
            background-color: #606060;
        }
        
        .contact-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 555px;
        }
        
        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-container {
        padding: 40px 20px 30px; /* Reduced bottom padding */
        }

    /* Contact page image hover effect */
        .contact-image {
            overflow: hidden; 
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 555px;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease; 
        }

        .contact-image:hover img {
            transform: scale(1.05); 
        }

/*PORTFOLIO PAGE*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Libre Baskerville', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        header {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            color: #7f8c8d;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #2c3e50;
        }
        
        .portfolio-header {
            text-align: center;
            padding: 20px 20px 10px;
        }
        
        h1 {
            font-size: 28px;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .intro {
            max-width: 1000px;
            width: 90%;
            margin: 0 auto 1rem;
            padding: 0 2rem 0.5rem;
            text-align: center;
        }
        
        .intro p {
            margin-bottom: 1rem;
            color: #34495e;
            line-height: 1.8;
            font-size: 13px;
        }
        
        .divider {
            height: 1px;
            background: #c5c7c7;
            margin: 3rem auto;
            width: 95%;
            max-width: 1150px;
            opacity: 1s;
            margin-top: -1%;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 1.5rem;
        }
        
        .gallery-title {
            text-align: center;
            margin: 2.5rem 0 2.7rem;
            font-size: 1.7rem;
            color: #2c3e50;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 5px;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            justify-items: center;
        }
        
        .card {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.3s;
            width: 100%;
            max-width: 400px;
            height: auto;
            padding: 0rem 0.3rem 0;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-image {
            width: 100%;
            height: 360px;
            overflow: hidden;
            margin-bottom: 0rem;
            position: relative;
            padding: 0.5rem 0.5rem 1rem;
        }
        
        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .card:hover img {
            transform: scale(1.03);
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(168, 168, 168, 0);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background 0.5s ease;
        }
        
        .card-hover-text {
            color: #2c3e50;
            font-size: 1.4rem;
            font-weight: 900;
            letter-spacing: 3px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.9s;
        }
        
        .card:hover .card-hover-text {
            opacity: 1;
            transform: translateY(0);
        }

        .card:hover .card-overlay {
            background: rgba(255, 255, 255, 0.784);
        }

        .card-content {
            text-align: center;
            min-height: 90px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .card-title {
            font-size: 18px;
            margin-bottom: 0rem;
            color: #2c3e50;
            font-weight: 400;
            letter-spacing: 0.2px;
            line-height: 1.4;
        }
        
        .card-desc {
            font-size: 11px;
            color: #7f8c8d;
            margin-bottom: 40px;
        }
        
        .card-hover-text {
            color: #353e44;
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .card:hover .card-hover-text {
            opacity: 1;
        }
        
/*LANDSCAPE BUILDINGS PAGE*/
 .page-header {
            text-align: center;
            padding: 2rem 2rem 2rem;
        }
        
        .page-header h1 {
            font-size: 28px;
            margin-bottom: 1rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .page-intro {
            max-width: 1000px;
            width: 90%;
            margin: 0 auto 1rem;
            padding: 0 2rem;
            text-align: center;
        }
        
        .page-intro p {
            margin-bottom: -5px;
            color: #34495e;
            line-height: 1.8;
            font-size: 13px;
            margin-top: -20px;
        }
        
        .divider {
            height: 1px;
            background: #c5c7c7;
            margin: 2rem auto;
            width: 95%;
            max-width: 1150px;
        }
        
    /*Buildings Gallery Grid */
        .buildingsgallery-container {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .buildingsgallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: -3.5rem;
        }
    
    /*Buildings1 Image*/
        .buildings1-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .buildings1:hover {
            transform: translateY(-5px);
        }
        
        .buildings1-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .buildings1-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .buildings1-item:hover img {
            transform: scale(1.03);
        }
        
        .buildings1-caption {
            text-align: center;
        }
        
        .buildings1-title {
            font-size: 14px;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .buildings1-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.6;
        }

    /*Buildings2 Image*/
        .buildings2-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .buildings2:hover {
            transform: translateY(-5px);
        }
        
        .buildings2-image {
            width: 100%;
            overflow: hidden;
            margin-top: 4rem;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .buildings2-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .buildings2-item:hover img {
            transform: scale(1.03);
        }
        
        .buildings2-caption {
            text-align: center;
        }
        
        .buildings2-title {
            font-size: 14px;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .buildings2-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.6;
        }

    /*Buildings3 Image*/
        .buildings3-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .buildings3:hover {
            transform: translateY(-5px);
        }
        
        .buildings3-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 1rem;
            margin-top: 4rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .buildings3-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .buildings3-item:hover img {
            transform: scale(1.03);
        }
        
        .buildings3-caption {
            text-align: center;
        }
        
        .buildings3-title {
            font-size: 14px;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .buildings3-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.6;
        }
    
    /* Navigation Arrows */
.collection-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 4rem;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
}

footer {
    margin-top: 3rem; 
}

.nav-arrow {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: nowrap;
    height: 44px;
    box-sizing: border-box;
    margin-top: 3rem;
}

.nav-arrow.prev {
    justify-self: start;
    grid-column: 1;
    font-size: 14px;
}

.nav-arrow.next {
    justify-self: end;
    grid-column: 3;
    font-size: 14px;
}

.nav-center {
    grid-column: 2;
    text-align: center;
}

.nav-arrow:hover {
    background-color: #f5f5f5;
    border-color: #2c3e50;
}

.nav-arrow i {
    font-size: 1.2rem;
    margin-left: 10px;
}

/*DREAMWORK PAGE*/
        .page-header {
            text-align: center;
            padding: 1rem 2rem 0.8rem;
        }
        
        .page-header h1 {
            font-size: 24px;
            color: #2c3e50;
            font-weight: 400;
            letter-spacing: 1px;
        }
        
        .page-intro {
            max-width: 1000px;
            width: 90%;
            margin: 0 auto 3rem;
            padding: 0 2rem 1rem;
            text-align: center;
        }
        
        .page-intro p {
            color: #34495e;
            line-height: 1.8;
            font-size: 12px;
            margin-top: -10px;
        }
        
        .divider {
            height: 1px;
            background: #c5c7c7;
            margin: 2rem auto;
            width: 95%;
            max-width: 1150px;
        }
        
    /*Dreamwork Gallery Grid */
        .dreamworkgallery-container {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .dreamworkgallery-grid {
            column-count: 3;
            column-gap: 2.8rem;
            margin: 0 auto;
            margin-bottom: 1rem;
        }

        .dreamwork1-item,
        .dreamwork2-item,
        .dreamwork3-item,
        .dreamwork4-item,
        .dreamwork5-item,
        .dreamwork7-item,
        .dreamwork8-item,
        .dreamwork9-item,
        .dreamwork10-item,
        .dreamwork11-item {
            break-inside: avoid;
            display: inline-block;
            width: 100%;
            margin-bottom: 1rem; 
        }

    /*Dreamwork1 Image*/
        .dreamwork1-item {
            transition: transform 0.3s;  
            break-inside: avoid;  
        }
        
        .dreamwork1:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork1-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork1-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork1-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork1-caption {
            text-align: center;
        }
        
        .dreamwork1-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork1-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    
        
    /*Dreamwork2 Image*/
        .dreamwork2-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork2:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork2-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork2-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork2-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork2-caption {
            text-align: center;
        }
        
        .dreamwork2-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork2-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }     

    /*Dreamwork3 Image*/
        .dreamwork3-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork3:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork3-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork3-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork3-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork3-caption {
            text-align: center;
        }
        
        .dreamwork3-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork3-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

    /*Dreamwork4 Image*/
        .dreamwork4-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork4:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork4-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork4-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork4-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork4-caption {
            text-align: center;
        }
        
        .dreamwork4-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork4-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

/*Dreamwork5 Image*/
        .dreamwork5-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork5:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork5-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork5-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork5-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork5-caption {
            text-align: center;
        }
        
        .dreamwork5-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork5-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

/*Dreamwork7 Image*/
        .dreamwork7-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork7:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork7-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork7-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork7-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork7-caption {
            text-align: center;
        }
        
        .dreamwork7-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork7-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

/*Dreamwork8 Image*/
        .dreamwork8-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork8:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork8-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork8-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork8-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork8-caption {
            text-align: center;
        }
        
        .dreamwork8-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork8-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

/*Dreamwork9 Image*/
        .dreamwork9-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork9:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork9-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork9-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork9-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork9-caption {
            text-align: center;
        }
        
        .dreamwork9-title {
            font-size: 13px !important;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork9-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

    /*Dreamwork10 Image*/
        .dreamwork10-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
            break-inside: avoid;
        }
        
        .dreamwork10:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork10-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork10-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork10-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork10-caption {
            text-align: center;
        }
        
        .dreamwork10-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork10-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

    /*Dreamwork11 Image*/
        .dreamwork11-item {
            background: transparent;
            border-radius: 0;
            overflow: visible;
            box-shadow: none;
            transition: transform 0.3s;
            height: 100%;    
        }
        
        .dreamwork11:hover {
            transform: translateY(-5px);
        }
        
        .dreamwork11-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .dreamwork11-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .dreamwork11-item:hover img {
            transform: scale(1.03);
        }
        
        .dreamwork11-caption {
            text-align: center;
        }
        
        .dreamwork11-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .dreamwork11-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }  

/*PATTERN PAGE*/
    /*Pattern Gallery Grid */
        .patterngallery-container {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .patterngallery-grid {
            column-count: 3;
            column-gap: 2.8rem;
            margin: 0 auto;
            margin-bottom: -3.5rem;
        }

        .pattern1-item,
        .pattern2-item,
        .pattern3-item,
        .pattern4-item,
        .pattern5-item,
        .pattern6-item {
            break-inside: avoid;
            display: inline-block;
            width: 100%;
            margin-bottom: 1rem;
        }

    /*Pattern1 Image*/
        .pattern1-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern1:hover {
            transform: translateY(-5px);
        }
        
        .pattern1-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern1-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern1-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern1-caption {
            text-align: center;
        }
        
        .pattern1-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern1-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

/*Pattern2 Image*/
        .pattern2-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern2:hover {
            transform: translateY(-5px);
        }
        
        .pattern2-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern2-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern2-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern2-caption {
            text-align: center;
        }
        
        .pattern2-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern2-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Pattern3 Image*/
        .pattern3-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern3:hover {
            transform: translateY(-5px);
        }
        
        .pattern3-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern3-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern3-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern3-caption {
            text-align: center;
        }
        
        .pattern3-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern3-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

/*Pattern4 Image*/
        .pattern4-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern4:hover {
            transform: translateY(-5px);
        }
        
        .pattern4-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern4-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern4-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern4-caption {
            text-align: center;
        }
        
        .pattern4-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern4-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

/*Pattern5 Image*/
        .pattern5-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern5:hover {
            transform: translateY(-5px);
        }
        
        .pattern5-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern5-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern5-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern5-caption {
            text-align: center;
        }
        
        .pattern5-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern5-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

/*Pattern6 Image*/
        .pattern6-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern6:hover {
            transform: translateY(-5px);
        }
        
        .pattern6-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern6-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern6-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern6-caption {
            text-align: center;
        }
        
        .pattern6-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern6-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

/*Pattern7 Image*/
        .pattern7-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern7:hover {
            transform: translateY(-5px);
        }
        
        .pattern7-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern7-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern7-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern7-caption {
            text-align: center;
        }
        
        .pattern7-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern7-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

/*Pattern8 Image*/
        .pattern8-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .pattern8:hover {
            transform: translateY(-5px);
        }
        
        .pattern8-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pattern8-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pattern8-item:hover img {
            transform: scale(1.03);
        }
        
        .pattern8-caption {
            text-align: center;
        }
        
        .pattern8-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .pattern8-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

        .pattern1-item,
        .pattern2-item,
        .pattern3-item,
        .pattern4-item,
        .pattern5-item,
        .pattern6-item,
        .pattern7-item,
        .pattern8-item {
            break-inside: avoid;
            display: inline-block;
            width: 100%;
            margin-bottom: 1rem;
        }

/*EYES PAGE*/
    /*Eyes Gallery Grid */
        .eyegallery-container {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .eyegallery-grid {
            column-count: 3;
            column-gap: 2.8rem;
            margin: 0 auto;
            margin-bottom: -3.5rem;
        }

        .eye1-item,
        .eye2-item,
        .eye3-item,
        .eye4-item,
        .eye5-item,
        .eye6-item,
        .eye7-item,
        .eye8-item,
        .eye9-item,
        .eye10-item,
        .eye11-item,
        .eye12-item {
            break-inside: avoid;
            display: inline-block;
            width: 100%;
            margin-bottom: 1rem;
        }

    /*Eye1 Image*/
        .eye1-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye1:hover {
            transform: translateY(-5px);
        }
        
        .eye1-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye1-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye1-item:hover img {
            transform: scale(1.03);
        }
        
        .eye1-caption {
            text-align: center;
        }
        
        .eye1-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye1-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }    

    /*Eye2 Image*/
        .eye2-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye2:hover {
            transform: translateY(-5px);
        }
        
        .eye2-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye2-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye2-item:hover img {
            transform: scale(1.03);
        }
        
        .eye2-caption {
            text-align: center;
        }
        
        .eye2-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye2-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye3 Image*/
        .eye3-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye3:hover {
            transform: translateY(-5px);
        }
        
        .eye3-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye3-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye3-item:hover img {
            transform: scale(1.03);
        }
        
        .eye3-caption {
            text-align: center;
        }
        
        .eye3-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye3-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye4 Image*/
        .eye4-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye4:hover {
            transform: translateY(-5px);
        }
        
        .eye4-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye4-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye4-item:hover img {
            transform: scale(1.03);
        }
        
        .eye4-caption {
            text-align: center;
        }
        
        .eye4-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye4-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye5 Image*/
        .eye5-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye5:hover {
            transform: translateY(-5px);
        }
        
        .eye5-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye5-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye5-item:hover img {
            transform: scale(1.03);
        }
        
        .eye5-caption {
            text-align: center;
        }
        
        .eye5-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye5-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye6 Image*/
        .eye6-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye6:hover {
            transform: translateY(-5px);
        }
        
        .eye6-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye6-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye6-item:hover img {
            transform: scale(1.03);
        }
        
        .eye6-caption {
            text-align: center;
        }
        
        .eye6-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye6-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye7 Image*/
        .eye7-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye7:hover {
            transform: translateY(-5px);
        }
        
        .eye7-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye7-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye7-item:hover img {
            transform: scale(1.03);
        }
        
        .eye7-caption {
            text-align: center;
        }
        
        .eye7-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye7-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye8 Image*/
        .eye8-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye8:hover {
            transform: translateY(-5px);
        }
        
        .eye8-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye8-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye8-item:hover img {
            transform: scale(1.03);
        }
        
        .eye8-caption {
            text-align: center;
        }
        
        .eye8-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye8-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye9 Image*/
        .eye9-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye9:hover {
            transform: translateY(-5px);
        }
        
        .eye9-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye9-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye9-item:hover img {
            transform: scale(1.03);
        }
        
        .eye9-caption {
            text-align: center;
        }
        
        .eye9-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye9-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye10 Image*/
        .eye10-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye10:hover {
            transform: translateY(-5px);
        }
        
        .eye10-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye10-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye10-item:hover img {
            transform: scale(1.03);
        }
        
        .eye10-caption {
            text-align: center;
        }
        
        .eye10-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye10-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye11 Image*/
        .eye11-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye11:hover {
            transform: translateY(-5px);
        }
        
        .eye11-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye11-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye11-item:hover img {
            transform: scale(1.03);
        }
        
        .eye11-caption {
            text-align: center;
        }
        
        .eye11-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye11-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

    /*Eye12 Image*/
        .eye12-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .eye12:hover {
            transform: translateY(-5px);
        }
        
        .eye12-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .eye12-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .eye12-item:hover img {
            transform: scale(1.03);
        }
        
        .eye12-caption {
            text-align: center;
        }

        .eye12-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .eye12-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }

/*ETHEREALITY PAGE*/
    /*Ethereality Gallery Grid */
        .etherealitygallery-container {
            max-width: 1200px;
            margin: 0 auto 4rem;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .etherealitygallery-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: -3.5rem;
        }

        .ethereality1-item,
        .ethereality2-item,
        .ethereality3-item,
        .ethereality4-item,
        .ethereality5-item,
        .ethereality6-item {
            break-inside: avoid;
            display: inline-block;
            width: 100%;
            margin-bottom: 1rem;
        }

    /*Ethereality1 Image*/
        .ethereality1-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .ethereality1:hover {
            transform: translateY(-5px);
        }
        
        .ethereality1-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ethereality1-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .ethereality1-item:hover img {
            transform: scale(1.03);
        }
        
        .ethereality1-caption {
            text-align: center;
        }
        
        .ethereality1-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .ethereality1-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }  

/*Ethereality2 Image*/
    /*  .ethereality2-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .ethereality2:hover {
            transform: translateY(-5px);
        }
        
        .ethereality2-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ethereality2-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .ethereality2-item:hover img {
            transform: scale(1.03);
        }
        
        .ethereality2-caption {
            text-align: center;
        }
        
        .ethereality2-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .ethereality2-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }   
        
/*Ethereality3 Image*/
    /*  .ethereality3-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .ethereality3:hover {
            transform: translateY(-5px);
        }
        
        .ethereality3-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ethereality3-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .ethereality3-item:hover img {
            transform: scale(1.03);
        }
        
        .ethereality3-caption {
            text-align: center;
        }
        
        .ethereality3-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .ethereality3-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }   

/*Ethereality4 Image*/
    /*  .ethereality4-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .ethereality4:hover {
            transform: translateY(-5px);
        }
        
        .ethereality4-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ethereality4-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .ethereality4-item:hover img {
            transform: scale(1.03);
        }
        
        .ethereality4-caption {
            text-align: center;
        }
        
        .ethereality4-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .ethereality4-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }   

/*Ethereality5 Image*/
    /*  .ethereality5-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .ethereality5:hover {
            transform: translateY(-5px);
        }
        
        .ethereality5-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ethereality5-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .ethereality5-item:hover img {
            transform: scale(1.03);
        }
        
        .ethereality5-caption {
            text-align: center;
        }
        
        .ethereality5-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .ethereality5-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }   

/*Ethereality6 Image*/
    /*  .ethereality6-item {
            transition: transform 0.3s;
            break-inside: avoid;
        }
        
        .ethereality6:hover {
            transform: translateY(-5px);
        }
        
        .ethereality6-image {
            width: 100%;
            overflow: hidden;
            margin-bottom: 0.8rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ethereality6-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .ethereality6-item:hover img {
            transform: scale(1.03);
        }
        
        .ethereality6-caption {
            text-align: center;
        }
        
        .ethereality6-title {
            font-size: 13px;
            margin-bottom: 0.3rem;
            color: #2c3e50;
            font-weight: 400;
        }
        
        .ethereality6-desc {
            font-size: 10px;
            color: #7f8c8d;
            line-height: 1.4;
            margin-bottom: 2rem;
        }   

/* Navigation Arrows */
.collection-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 4rem;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
}

footer {
    margin-top: 3rem; /* Adds space above footer */
}

.nav-arrow {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: nowrap;
    height: 44px;
    box-sizing: border-box;
}

.nav-arrow.prev {
    justify-self: start;
    grid-column: 1;
}

.nav-arrow.next {
    justify-self: end;
    grid-column: 3;
}

.nav-center {
    grid-column: 2;
    text-align: center;
}

.nav-arrow:hover {
    background-color: #f5f5f5;
    border-color: #2c3e50;
}

.nav-arrow i {
    font-size: 1.2rem;
    margin-left: 10px;
}

.buildings1-image img,
.buildings2-image img,
.buildings3-image img,
.dreamwork1-image img,
.dreamwork2-image img,
.dreamwork3-image img,
.dreamwork4-image img,
.dreamwork5-image img,
.dreamwork6-image img,
.dreamwork7-image img,
.dreamwork8-image img,
.pattern1-image img,
.pattern2-image img,
.pattern3-image img,
.pattern4-image img,
.pattern5-image img,
.pattern6-image img,
.eye1-image img,
.eye2-image img,
.eye3-image img,
.eye4-image img,
.eye5-image img,
.eye6-image img,
.eye7-image img,
.eye8-image img,
.eye9-image img,
.eye10-image img,
.eye11-image img,
.eye12-image img,
.eye13-image img,
.ethereality1-image img {
    width: 100%;
    height: auto;
}

/*In Progress Page*/
    .in-progress-header {
        text-align: center;
        padding: 20px 20px 10px;
    }
        
    h1 {
        font-size: 28px;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-weight: 400;
    }
        
    .progress-intro {
        max-width: 1000px;
        width: 90%;
        margin: 0 auto 1rem;
        padding: 0 2rem 0.5rem;
        text-align: center;
    }
        
    .progress-intro p {
        margin-bottom: 1rem;
        color: #34495e;
        line-height: 1.8;
        font-size: 13px;
    }
        
    .progress-divider {
        height: 1px;
        background: #c5c7c7;
        margin: 0rem auto;
        width: 95%;
        max-width: 1150px;
        opacity: 1s;
        margin-top: 1%;
    }

    .project {
        max-width: 1200px;
        margin: 35px auto;
        padding: 0 40px;
    }

    .project-title {
        font-family: 'Libre Baskerville', serif;
        font-size: 25px;
        font-weight: 400;
        color: #2c3e50;
        margin-bottom: 30px;
        text-align: left;
        letter-spacing: 0.5px;
    }

    .project-media {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: flex-start;
        margin-bottom: 35px;
        align-items: flex-start;
        width: 100%;
    }

    .media-item {
        flex: 0 0 calc(33.333% - 16.666px);
        max-width: calc(33.333% - 16.666px);
        box-sizing: border-box;
    }

    .media-item video,
    .media-item img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.5s ease;
        display: block;
    }

    .media-item video:hover,
    .media-item img:hover {
        transform: scale(1.03);
    }

    /* Video specific styling */
    .media-item video {
        background-color: #000;
    }

    .project-description {
        width: 100%;
        font-family: 'Libre Baskerville', serif;
        line-height: 1.8;
        color: #34495e;
        font-size: 12px;
        text-align: left;
    }

    .project-description p {
        margin-bottom: 4rem;
    }

    /*COMMISSIONS PAGE*/
        .commissions-info p {
            display: flex;
            justify-content: center;
            text-align: center;
            padding: 0rem 2rem;
            font-size: 12px;
            flex: 1;
            }

        .commissions-page {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .commissions-page .commissions-info p {
            display: flex;
            justify-content: center;
            text-align: center;
            padding: 0rem 8rem 4rem;
            font-size: 13px;
            flex: 1;
            margin: 1rem auto 0;
            line-height: 2;
        }

        .content-divider {
            height: 1px;
            background: #c5c7c7;
            margin: 0 auto 0.1rem;
            width: 95%;
            max-width: 1150px;
            opacity: 1;
        }

        .content-divider.spaced {
            margin: 2.5rem auto 0.1rem;
        }

        .process-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px; 
        }

        .process-title {
            text-align: left;
            margin: 2.5rem 0 0.1rem 0;
            padding: 0 20px;
        }

        .process-title h2 {
            font-family: 'DM Serif Display', serif;
            color: #333;
            font-size: 28px;
            letter-spacing: 1.6px;
            margin: 0;
            font-weight: normal;
        }

        .process-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .process-step {
            display: flex;
            margin-bottom: 13px;
        }

        .step-header {
            display: flex;
            align-items: center; 
            width: 100%;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: #333;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
            font-family: 'Libre Baskerville', serif;
        }

        .step-title {
            flex: 1;
            padding: 10px 20px 2px 20px; 
            background: #f9f9f9;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 25px; 
        }

        .step-title h4 {
            margin: 14px 0 8px;
            color: #333;
            font-family: 'DM Serif Display', serif;
            line-height: 1.2;
            font-size: 20px;
            letter-spacing: 1.5px;
            font-weight: normal;
        }

        .step-title p {
            margin: 0;
            color: #666;
            line-height: 1.5;
            font-size: 12px;
            padding-top: 5px;
            padding-bottom: 7px;
        }

    /* Preparation and FAQ Sections */
        .prepare-container,
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px 0px;
        }

        .prepare-title,
        .faq-title {
            text-align: left;
            margin: 2.5rem 0 1rem 0; 
            padding: 0 20px;
        }

        .prepare-title h2,
        .faq-title h2 {
            font-family: 'DM Serif Display', serif;
            color: #333;
            font-size: 28px;
            letter-spacing: 1.6px;
            margin: 0;
            font-weight: normal;
        }
        
        .preparation-list,
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .preparation-item,
        .faq-item {
            margin-bottom: 20px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 8px;
        }

        .preparation-item h4,
        .faq-item h4 {
            margin: 0 0 12px 0;
            color: #333;
            font-family: 'DM Serif Display', serif;
            line-height: 1.3;
            font-size: 19px;
            letter-spacing: 1.5px;
            font-weight: normal;
        }

        .preparation-item p,
        .faq-item p {
            margin: 0;
            color: #666;
            line-height: 1.6;
            font-size: 12px;
        }

        .commission-cta {
            text-align: center;
            padding: 1rem 0;
            margin: 2.8rem 0;
        }

        .commission-cta-content {
            max-width: 520px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .commission-cta-content p {
            font-size: 14px;
            line-height: 2;
            color: #666;
            margin-bottom: 2.3rem;
            font-style: italic;
        }

        .refined-cta {
            display: inline-block;
            padding: 10px 23px; 
            background-color: #333;
            color: white;
            border: 1px solid #333;
            font-family: 'Libre Baskerville', serif;
            font-size: 12px;
            letter-spacing: 0.6px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
        }

        .refined-cta:hover {
            background-color: transparent;
            color: #333;
        }

        .terms-notice {
            padding: 0rem 0;
            margin: 0rem 0 0 0;
            background: #fafafa;
        }

        .terms-container {
            max-width: 850px;
            margin: 0 auto;
            padding: 0 5px;
            position: center;
            text-align: left;
        }

        .terms-notice small {
            font-size: 10px;
            color: #666;
            line-height: 0.1;
            font-style: italic;
        }

 /* Footer Styles */
        .site-footer {
            background-color: rgba(0, 0, 0, 0);
            color: #333333;
            padding: 0rem 1rem;
            margin-top: 5rem;
            font-family: 'Libre Baskerville', serif;
        }
        
        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: -4rem;
            padding: 0 2rem 0;
        }
        
        .footer-left {
            flex: 1;
            min-width: 300px;
            padding-right: 2rem;
            display: flex;
            gap: 6rem; 
            line-height: 15px;
            text-align: left;
            font-size: 10px;
            padding-left: 2rem;
        }
        
        .footer-right {
            flex: 1;
            min-width: 300px;
            padding-left: 10rem;
            padding-right: 1rem;
        }
        
        .footer-section {
            margin-bottom: 2rem;
        }
        
        .footer-section h3 {
            font-size: 17px;
            margin-bottom: 1.2rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #555;
            text-decoration: underline;
            transition: color 0.3s;
            font-size: 11px;
            line-height: 15px;
        }
        
        .footer-links a:hover {
            color: #000;
        }
        
        .social-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        
        .social-links a {
            color: #555;
            text-decoration: underline;
            transition: color 0.3s;
            font-size: 11px;
            line-height: 15px;
        }
        
        .social-links a:hover {
            color: #000;
        }
        
        .social-links i {
            margin-right: 0.5rem;
            font-size: 11px;
        }
        
        .newsletter-form p {
            color: #555;
            margin-bottom: 1rem;
            font-size: 11px;
            line-height: 1.5;
            text-align: left;
        }
        
        .newsletter-form .input-group {
            display: flex;
            gap: 0.5rem;
        }
        
        .newsletter-form input {
            padding: 0.5rem 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            background-color: #fff;
            color: #333;
            width: 100%;
            font-family: 'Libre Baskerville', serif;
            font-size: 0.8rem;
            flex: 1;
        }
        
        .newsletter-form input::placeholder {
            color: #999;
        }
        
        .newsletter-form .input-group button {
            padding: 0.6rem 1.5rem;
            border: 1px solid #333;
            border-radius: 3px;
            background-color: #333;
            color: white;
            font-weight: normal;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            font-family: 'Libre Baskerville', serif;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        
        .newsletter-form button:hover {
            background-color: transparent;
            color: #ffffff;
            background-color: #606060;
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1rem;
            padding-bottom: 1.5rem;
            color: #666;
            font-size: 10px;
            width: 100%;
        }
        
        .form-message {
            margin-top: 1rem;
            padding: 0.8rem;
            border-radius: 4px;
            display: none;
        }
        
        .success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
            font-size: 13px;
        }
        
        .error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            display: block;
            font-size: 13px;
        }
        
        .loading {
            opacity: 0.7;
            pointer-events: none;
        }

    /* Login Form Styles */
        .login-container { 
            max-width: 400px; 
            margin: 100px auto; 
            padding: 40px;
            background: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .login-form input {
            width: 100%;
            padding: 12px;
            margin: 8px 0;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .login-form button {
            width: 100%;
            padding: 12px;
            background: #007cba;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
        }

        .login-form button:hover {
            background: #005a87;
        }

        .error {
            color: #d32f2f;
            background: #ffebee;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #f44336;
        }

    /* Admin Panel Styles */
        .admin-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #ddd;
        }

        .admin-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logout-btn {
            background: #d32f2f;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 4px;
        }

        .logout-btn:hover {
            background: #b71c1c;
        }

        .submission-card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .submission-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .submission-date {
            color: #666;
            font-size: 0.9em;
        }

        .message-content {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 4px;
            margin-top: 10px;
            white-space: pre-wrap;
        }

        .no-submissions {
            text-align: center;
            color: #666;
            font-style: italic;
            margin: 50px 0;
        }

/* ====== MEDIA QUERIES ====== */
/* Extra large screens (1400px and above) */
@media (max-width: 1400px) {
    .about-content .content-block:first-child .image-container {
        margin-top: -50px; 
    }

    .container {
        max-width: 1400px;
    }

    .card-container {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        gap: 10px;
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .card-image {
        height: 450px;
    }

    .commissions-page .commissions-info p {
        padding: 2rem 11rem 4rem;
    }

    .terms-notice .terms-container {
        margin: 5rem 17rem 9rem;
    }

    /*About Page*/
        .section-title {
        margin-left: 0px;
    }
}

/* Large desktop screens (1200px and above) */
@media (max-width: 1200px) {
    .about-content .content-block:first-child .image-container {
        margin-top: -45px; 
    }

    .project {
        max-width: 1200px;
    }

    .card-container {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        gap: 10px;
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .card-image {
        height: 450px;
    }

    .container {
        max-width: 1400px;
    }

/*In Progress Page*/
    .project {
        max-width: 1100px;
    }

/* Commissions Page */
    .commissions-page .commissions-info p {
        padding: 1.5rem 5rem 4rem;
    }

    .content-divider {
        width: 85%;
    }

    .commissions-page .commissions-info p {
        margin-top: 2rem;
    }

    .terms-notice .terms-container {
        margin: 3rem 8rem 3rem;
    }
}

@media (min-width: 1025px) {
    .about-content .content-block:first-child .image-container {
        margin-top: -40px; 
    }

    .card-container {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        gap: 10px;
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .card-image {
        height: 410px;
    }

    .container {
        max-width: 1400px;
    }

    .commissions-page .commissions-info p {
        padding: 1.5rem 7rem 4rem;
    }
    
    .process-title h2,
    .prepare-title h2,
    .faq-title h2 {
        font-size: 26px;
    }

    /*About Page*/
        .section-title {
        margin-left: 0;
    }
}

/* Large tablets and small laptops (1024px and below) */
@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 3.8rem;
    }
    
    .work-container, .about-container {
        gap: 3rem;
    }

    .about-text {
        padding-left: 3rem;
    }
    
    .content-block {
        gap: 80px;
    }
    
    /* Standardize all gallery grids to 2 columns */
    .buildingsgallery-grid,
    .dreamworkgallery-grid,
    .patterngallery-grid,
    .eyegallery-grid,
    .etherealitygallery-grid {
        column-count: 2;
        column-gap: 2rem;
    }

    /* Standard caption sizes for all galleries */
    .buildings1-title,
    .buildings2-title,
    .buildings3-title,
    .dreamwork1-title,
    .dreamwork2-title,
    .dreamwork3-title,
    .dreamwork4-title,
    .dreamwork5-title,
    .dreamwork7-title,
    .dreamwork8-title,
    .dreamwork9-title,
    .dreamwork10-title,
    .dreamwork11-title,
    .pattern1-title,
    .pattern2-title,
    .pattern3-title,
    .pattern4-title,
    .pattern5-title,
    .pattern6-title,
    .pattern7-title,
    .pattern8-title,
    .eye1-title,
    .eye2-title,
    .eye3-title,
    .eye4-title,
    .eye5-title,
    .eye6-title,
    .eye7-title,
    .eye8-title,
    .eye9-title,
    .eye10-title,
    .eye11-title,
    .eye12-title,
    .ethereality1-title,
    .ethereality2-title,
    .ethereality3-title,
    .ethereality4-title,
    .ethereality5-title,
    .ethereality6-title {
        font-size: 14px;
        margin-bottom: 0.3rem;
    }

    .buildings1-desc,
    .buildings2-desc,
    .buildings3-desc,
    .dreamwork1-desc,
    .dreamwork2-desc,
    .dreamwork3-desc,
    .dreamwork4-desc,
    .dreamwork5-desc,
    .dreamwork7-desc,
    .dreamwork8-desc,
    .dreamwork9-desc,
    .dreamwork10-desc,
    .dreamwork11-desc,
    .pattern1-desc,
    .pattern2-desc,
    .pattern3-desc,
    .pattern4-desc,
    .pattern5-desc,
    .pattern6-desc,
    .pattern7-desc,
    .pattern8-desc,
    .eye1-desc,
    .eye2-desc,
    .eye3-desc,
    .eye4-desc,
    .eye5-desc,
    .eye6-desc,
    .eye7-desc,
    .eye8-desc,
    .eye9-desc,
    .eye10-desc,
    .eye11-desc,
    .eye12-desc,
    .ethereality1-desc,
    .ethereality2-desc,
    .ethereality3-desc,
    .ethereality4-desc,
    .ethereality5-desc,
    .ethereality6-desc {
        font-size: 10px;
        margin-bottom: 2rem;
    }

    /*In Progress Page*/
    .project {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .media-item {
        min-width: 220px;
        max-width: 300px;
    }
    
    .project-title {
        font-size: 24px;
    }

    /* About page scroll bars */
    .text-container {
        max-height: 500px;
        min-height: 500px;
        overflow-y: auto;
    }

    .content-block .text-container {
        max-height: 500px;
        min-height: 500px;
        overflow-y: auto;
    }

    .image-placeholder {
        height: 500px;
    }
    
    .text-container {
        display: flex;
        flex-direction: column;
    }
    
    .text-container p {
        flex: 1;
        overflow-y: auto;
        margin-bottom: 0;
    }

    .content-block {
        align-items: stretch;
        padding: 0 0 1rem;
    }

    .about-section .text-container {
        max-height: 500px;
        min-height: 500px;
    }

    .about-section .section-title {
        padding: 0 1px; 
    }

    .section-title {
        margin-left: 10.6%;
    }
    
    .centering-container {
        padding: 0 1px;
    }

    .card-container {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

/* Commissions Page */
    .content-divider {
        width: 90%;
    }

    .commissions-page .commissions-info p {
        margin-top: 2rem;
    }

    .terms-notice .terms-container {
        margin: 2rem 5rem 3rem;
    }
}

/* Tablets (900px and below) */
@media (max-width: 900px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-bar {
        padding: 1.5rem 30px;
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-text h2 {
        font-size: 3.2rem;
    }
    
    /* Featured work section */
    .work-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .work-images {
        flex-direction: column;
        gap: 2rem;
        transform: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .featured-work .image-container {
        transform: scale(1);
        transform-origin: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .featured-work-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }    

    .work-container {
        display: flex;
        gap: 4rem;
        align-items: center;
    }

    .work-images {
        flex: 3;
        display: flex;
        gap: 2rem;
        flex-direction: row-reverse;
        padding-bottom: 0.1rem;
    }

    .featured-work .image-container {
        flex: 3;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        aspect-ratio: 3/4;
        transform: scale(1); 
        transform-origin: right center;
        max-height: 400px;
        height: auto;
        margin-bottom: -45px;
    }

    .featured-work .intro-text {
        margin-bottom: 2rem;
    }

    .work-text {
        text-align: center;
        left: 0;
    }
    
    .intro-text {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* About section */
    .about-container {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: -10rem;
    }
    
    .about-text {
        padding-left: 0;
        text-align: center !important;
        align-items: center;
    }
    
    .about-image {
        margin-right: 0;
        margin-left: 0;
        height: 400px;
    }
    
    .about-intro {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-text h2 {
        text-align: center;
    }

    .learn-more-button {
        align-self: center; 
    }

    .about-preview .about-intro {
        line-height: 1.7;
    }

    .about-image img {
        max-height: 500px;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .about-container {
        height: 1000px;
    }
}

    /*In Progress Page*/
    @media (max-width: 900px) {
    .project {
        max-width: 900px;
        padding: 0 70px;
    }
    
    .project-media {
        flex-wrap: wrap;
    }
    
    .media-item {
        flex: 0 0 calc(50% - 12.5px); 
        min-width: calc(50% - 12.5px);
    }
    }
    
    .project-title {
        font-size: 23px;
        margin-bottom: 25px;
    }
    
    .project-description {
        font-size: 11.5px;
        line-height: 1.7;
    }

    /* About page */
    .content-block {
        flex-direction: row;       
        gap: 30px;
        align-items: flex-start;   
    }

    .text-container, 
    .image-container {
        flex: 1;                   
        max-width: 50%;            
    }

    .text-container {
        max-height: 400px;
        min-height: 400px;
    }
    
    .image-placeholder {
        height: 400px;
    }

    .section-title {
        text-align: left;
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        max-width: none;
    }
    
    .about-section .section-title {
        text-align: left;
        margin-left: 0;
        padding-left: 0;
    }

    /* Responsive font sizes for about page */
    .about-text p, 
    .text-container p,
    .about-intro p {
        font-size: 12px;
        line-height: 2;
    }

    /* About page scroll bars */
    .content-block .text-container {
        max-height: 400px;
        min-height: 400px;
        overflow-y: auto;
        padding: 1rem 2rem 0rem;
    }

    .content-block.second-block {
        padding-left: 2rem;
        padding-bottom: 1rem;
    }

    .about-section .text-container {
        max-height: 400px;
        min-height: 400px;
    }
    
    .about-section .section-title {
        text-align: left;
        padding-left: 2rem;
    }

    .about-section .section-title {
        padding: 0 30px;
        margin-bottom: 15px;
    }

    .section-title {
        margin-left: 6.5%;
    }
    
    .centering-container {
        padding: 0 30px 0;
    }

    /* Contact page */
    .contact-content {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        padding: 0 2rem; 
        box-sizing: border-box;
    }

    .contact-image {
        order: -1;
        height: 300px;
        margin-bottom: 10px;
        width: 100%; 
    }

    .contact-form {
        width: 100%;
    }

    .contact-form .form-row {
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-container {
        margin-bottom: 600px; 
        padding-bottom: 70rem;
    }

    .contact-header {
        text-align: center;
    }
    
    /* Portfolio page */
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .site-footer .footer-left {
        flex-direction: row;
        gap: 5rem;
        padding: 0 3rem 0.5rem;
        flex-wrap: wrap;
        justify-content: left;
        margin-top: 0px;
    }
    
    .site-footer .footer-right {
        padding: 0 3rem;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 10px;
    }
    
    /* Collection navigation - PRESERVED */
    .collection-nav {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    .nav-arrow.prev, 
    .nav-arrow.next {
        justify-self: center;
        grid-column: 1;
        margin: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav-arrow.prev {
        grid-row: 1;
    }
    
    .nav-arrow.next {
        grid-row: 2;
    }
    
    .nav-center {
        grid-column: 1;
        grid-row: 3;
    }

    .commissions-page .commissions-info p {
        padding: 1.5rem 5rem 3rem;
        font-size: 12px;
    }
    
    .step-title h4 {
        font-size: 18px;
    }
    
    .preparation-item h4,
    .faq-item h4 {
        font-size: 18px;
    }

    .terms-container {
        padding: 0rem 2rem 2rem !important; 
    }
    
    .terms-notice small {
        font-size: 9px;
        line-height: 1;
    }

    .content-divider {
        width: 92%;
    }

/* Large mobile devices (768px and below) */
@media (max-width: 768px) {
    body {
        font-size: 14px; 
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-bar {
        padding: 1rem;
        text-align: center;
    }
    
    .nav-bar nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.2rem;
        margin-bottom: 1rem;
    }
    
    .nav-bar .logo {
        font-size: 30px;
    }

    .hero {
        height: 60vh;
        margin: 1rem auto;
    }
    
    .hero-image img {
        height: 100%;
        margin-bottom: 5rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem; 
        letter-spacing: 2px;
    }
    
    .hero-text h1 {
        font-size: 1.2rem; 
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px; 
    }
    
    h3 {
        font-size: 18px; 
    }

    .about-container .learn-more-button {
        text-align: center;
    }

    .about-container .about-image {
        height: auto;
        object-fit: cover;
    }

    .about-text h2 {
        text-align: center;
    }

  	.about-text a {
      margin-bottom: -2.2rem;
 	}
  
  	.about-preview {
      margin-bottom: 0rem;
  	}
  
    .learn-more-button {
        align-self: center; 
    }

    .about-preview .about-intro {
        line-height: 1.7;
        margin-bottom: 3rem;
    }

    .about-container .about-image img {
        max-height: 350px;
        width: 100%;
        height: auto;
        display: flex;
    }

    .about-preview .about-container {
        height: auto;
        max-height: 885px;
    }

    .image-container {
        height: 400px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .featured-work-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }    

    .work-container {
        display: flex;
        gap: 4rem;
        align-items: center;
    }

    .work-images {
        flex: 3;
        display: flex;
        gap: 2rem;
        flex-direction: row-reverse;
        padding-bottom: 0.1rem;
    }

    .featured-work .image-container {
        flex: 3;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        aspect-ratio: 3/4;
        transform: scale(1); 
        transform-origin: right center;
        max-height: 400px;
        height: auto;
        margin-bottom: -45px;
    }

    .featured-work .intro-text {
        margin-bottom: 3rem;
    }

    /* Standardize ALL gallery grids to 1 column */
    .buildingsgallery-grid,
    .dreamworkgallery-grid,
    .patterngallery-grid,
    .eyegallery-grid,
    .etherealitygallery-grid {
        column-count: 1;
        column-gap: 1.5rem;
    }

    /* Reset individual image margins on mobile */
    .buildings2-image,
    .buildings3-image {
        margin-top: 0;
    }
    
    /* Standard caption sizes for mobile */
    .buildings1-title,
    .buildings2-title,
    .buildings3-title,
    .dreamwork1-title,
    .dreamwork2-title,
    .dreamwork3-title,
    .dreamwork4-title,
    .dreamwork5-title,
    .dreamwork7-title,
    .dreamwork8-title,
    .dreamwork9-title,
    .dreamwork10-title,
    .dreamwork11-title,
    .pattern1-title,
    .pattern2-title,
    .pattern3-title,
    .pattern4-title,
    .pattern5-title,
    .pattern6-title,
    .pattern7-title,
    .pattern8-title,
    .eye1-title,
    .eye2-title,
    .eye3-title,
    .eye4-title,
    .eye5-title,
    .eye6-title,
    .eye7-title,
    .eye8-title,
    .eye9-title,
    .eye10-title,
    .eye11-title,
    .eye12-title,
    .ethereality1-title,
    .ethereality2-title,
    .ethereality3-title,
    .ethereality4-title,
    .ethereality5-title,
    .ethereality6-title {
        font-size: 14px;
        margin-bottom: 0.3rem;
    }

    .buildings1-desc,
    .buildings2-desc,
    .buildings3-desc,
    .dreamwork1-desc,
    .dreamwork2-desc,
    .dreamwork3-desc,
    .dreamwork4-desc,
    .dreamwork5-desc,
    .dreamwork7-desc,
    .dreamwork8-desc,
    .dreamwork9-desc,
    .dreamwork10-desc,
    .dreamwork11-desc,
    .pattern1-desc,
    .pattern2-desc,
    .pattern3-desc,
    .pattern4-desc,
    .pattern5-desc,
    .pattern6-desc,
    .pattern7-desc,
    .pattern8-desc,
    .eye1-desc,
    .eye2-desc,
    .eye3-desc,
    .eye4-desc,
    .eye5-desc,
    .eye6-desc,
    .eye7-desc,
    .eye8-desc,
    .eye9-desc,
    .eye10-desc,
    .eye11-desc,
    .eye12-desc,
    .ethereality1-desc,
    .ethereality2-desc,
    .ethereality3-desc,
    .ethereality4-desc,
    .ethereality5-desc,
    .ethereality6-desc {
        font-size: 10px;
        margin-bottom: 2rem;
    }
    
    /* Form responsive */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* Portfolio Page */
    .card-container .card-image .card {
        height: auto;
    }

    .card-content .card-title {
        padding-bottom: 0rem;
        margin-bottom: 0rem;
        font-size: 16px;
        line-height: 1;
    }

    .card-content .card-desc {
        font-size: 10px;
        padding-top: 0.1rem;
    }

    .card-container {
        gap: 0.1rem;
    }

    .card-overlay .card-hover-text {
        font-size: 11px;
    }

    .portfolio-header h1 {
        margin-bottom: 8px;
    }

    .intro p {
        font-size: 12px;
    }

    .card-content .card-title {
        margin-bottom: 1px;
        padding: 5px 0 1px;
    }

    .container .gallery-title {
        font-size: 23px;
        margin: 2rem 0rem 2rem;
        text-align: center;
    }
  
    .container .card-container {
      margin-bottom: -2.7rem;
    }
    
    /* Footer */
    .site-footer .footer-left {
        flex-direction: row;
        gap: 5rem;
        padding: 0rem 2rem 0.1rem;
        min-width: 100%;
        flex-wrap: wrap;
        justify-content: left;
        margin-bottom: -20px;
        margin-top: 0px;
    }
    
    .site-footer .footer-right {
        padding: 0 2rem 0.1rem;
        min-width: 100%;
        margin-top: 1rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    /* Reduce space for gallery containers */
    .buildingsgallery-container,
    .dreamworkgallery-container,
    .eyegallery-container,
    .patterngallery-container,
    .etherealitygallery-container {
        margin-bottom: 1.5rem;
    }
    
    .buildingsgallery-container .collection-nav,
    .dreamworkgallery-container .collection-nav,
    .eyegallery-container .collection-nav, 
    .patterngallery-container .collection-nav,
    .etherealitygallery-container .collection-nav {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    /*In Progress Page */
    .project {
        margin: 25px 40px;
        padding: 0 20px;
    }
    
    .project-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .project-media {
        gap: 20px;
    }
    
    .media-item {
        flex: 0 0 calc(50% - 10px); 
        max-width: calc(50% - 10px);
    }
    
    .project-description {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .progress-intro {
        padding: 0 1.5rem 0.5rem;
    }
    
    .progress-intro p {
        font-size: 12px;
    }

    /* Commissions */
    .commissions-info {
        min-height: auto;
        padding: 1rem 1rem;
        font-size: 1.2rem;
    }

     .commissions-page .commissions-info p {
        padding: 0rem 3rem 2.5rem;
        line-height: 1.8;
        margin: 0rem auto 0;
    }
    
    .process-step {
        margin-bottom: 25px; 
    }
    
    .step-title {
        padding: 8px 15px 15px 15px; 
    }

    .process-title,
    .prepare-title,
    .faq-title {
        margin: 2rem 0 0rem 0;
        padding: 0 15px 20px;
    }
    
    .process-title h2,
    .prepare-title h2,
    .faq-title h2 {
        font-size: 24px;
        letter-spacing: 1.2px;
    }

    .prepare-title,
    .faq-title {
        margin: 2rem 0 0rem 0 !important; 
    }

    .process-container .process-title h2 {
        margin-bottom: 1rem;
    }
    
    .process-container,
    .prepare-container,
    .faq-container {
        padding: 0 17px;
    }
    
    .step-header {
        align-items: flex-start;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        margin-right: 10px;
        font-size: 14px;
        margin-left: 10px;
    }
    
    .step-title h4 {
        font-size: 17px;
        margin: 0 0 8px 0;
    }
    
    .preparation-item,
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .preparation-item h4,
    .faq-item h4 {
        font-size: 17px;
    }
    
    .commission-cta {
        margin: 3rem 0;
        padding: 0.5rem 0;
    }
    
    .commission-cta-content p {
        font-size: 13px;
        margin: 0 1rem 1.5rem;
    }
    
    .content-divider.spaced {
        margin: 2rem auto 0.1rem;
    }

    .terms-container {
        padding: 30px 0px 30px; 
    }
    
    .terms-notice small {
        font-size: 9px;
        line-height: 1;
    }
       
    .content-divider {
        width: 93%;
    }
    
    /* About Page */
    .about-text p, 
    .text-container p,
    .about-intro p {
        font-size: 12px;
        line-height: 1.8;
    }
    
    .section-title {
        text-align: left;
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        max-width: none;
    }
    
    .about-section .section-title {
        text-align: left;
        margin-left: 0;
        padding-left: 0.9rem;
        margin-bottom: 0rem;
    }
    
    .content-block .text-container {
        max-height: none;
        min-height: auto;
        padding: 0rem 0.5rem 0rem;
        height: auto;
        overflow-y: visible;
        margin-left: -9px;
    }
    
    .about-section .text-container {
        max-height: 350px;
        min-height: auto;
    }

    .content-block {
        flex-direction: row;
        align-items: stretch;
        gap: 1rem;        
        margin-bottom: -2rem; 
    }
    
    .content-block.second-block {
        padding-left: 1rem;
        width: 105%;
        padding-bottom: 1rem;
    }

    .content-block.text-container {
        max-height: none;
        min-height: auto;
        overflow-y: visible;
    }
  
  	.about-section .centering-container {
      	margin-bottom: 1rem;
  	}

    /* About page scroll bars */
    .text-container {
        max-height: 400px !important;
        min-height: 400px;
        height: 400px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .content-block .text-container {
        max-height: none;
        min-height: auto;
        overflow-y: visible;
        height: auto;
        padding: 1rem 1.5rem 0;;
    }

    .image-placeholder {
        height: 400px;
    }

    .about-section .text-container {
        max-height: 290px;
        min-height: auto;
    }

    /* Contact Page */
      .contact-container {
          padding: 30px 15px;
          max-width: 80%;
          width: 100%;
          min-height: 60vh; 
          margin-bottom: 25rem; 
      }

    .contact-content {
        padding: 0 1.5rem; 
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .contact-container .contact-header h1 {
        padding: 0 1.5rem;
        text-align: center;
        font-size: 23px;
    }

    .contact-image {
        height: auto; 
        min-height: 350px; 
    }
    
    .contact-image img {
        height: 100%; 
        object-fit: cover; 
    }
  
     .contact-container {
        padding-bottom: 25rem !important;
        margin-bottom: 25rem !important;
    }
    
	 .site-footer {
        margin-top: 5rem !important;
    }
  
     .contact-container {
        padding-bottom: 25rem !important;
        margin-bottom: 25rem !important;
        min-height: calc(100vh - 300px) !important;
    }
    
    .site-footer {
        margin-top: 5rem !important;
        position: relative !important;
    }
    
    .contact-content {
        margin-bottom: 25rem !important;
    }

/* ADMIN PAGE */
      .nav-bar {
        padding: 15px 20px;
    }
    
    .nav-bar nav {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        margin-top: 10px;
    }
    
    .nav-bar nav a {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    main {
        padding: 20px 15px !important;
    }
    
    h1 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .contact-container, .admin-container {
        padding: 20px 15px !important;
    }
    
    .site-footer .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .site-footer .footer-left, .footer-right {
        width: 100%;
    }
}

/* Small mobile devices (600px and below) */
@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-bar {
        padding: 1rem 15px;
    }
    
    .nav-bar .logo {
        font-size: 2rem; 
    }

    .hero-text h2 {
        font-size: 2.2rem; 
    }
    
    .view-all-button, .learn-more-button {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .about-section {
        padding: 20px 0;
    }
    
    .image-placeholder {
        height: 280px;
    }

    .about-preview .about-container {
        margin-bottom: 0rem;
    }

    .about-container .about-preview .about-image img {
        height: 500px;
        object-fit: cover;
    }

    .about-image {
        object-fit: cover;
        display: flex;
    }

    .nav-arrow {
        font-size: 0.9rem;
        padding: 8px 16px;
        height: 42px;
    }
    
    .page-header h1 {
        font-size: 22px; 
    }
    
    .featured-work .intro-text {
        margin-bottom: 3rem;
        line-height: 2;
    }

    .about-preview .about-text {
        margin-bottom: 0rem;
    }

    .about-text h2 {
        font-size: 25px;
    }

    .about-preview .about-intro {
        font-size: 11.5px;
        line-height: 2;
    }

    .work-text h2 {
        font-size: 25px;
    }
    
    .intro-text {
        font-size: 12.5px;
    }

    .site-footer .footer-left {
        margin-top: -40px;
    }

    /*In Progress Page */
    .project {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .project-title {
        font-size: 21px;
        margin-bottom: 20px;
        margin-top: 25px;
        text-align: center;
    }
    
    .project-media {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .media-item {
        flex: 0 0 100%;
        max-width: 400px;
    }
    
    .project-description {
        font-size: 11px;
        text-align: center;
    }
    
    .project-description p {
        margin-bottom: 3rem;
        padding: 0 50px;
    }
    
    .in-progress-header {
        padding: 15px 15px 5px;
    }
    
    .progress-intro {
        padding: 0 1rem 0.5rem;
    }
    
    .progress-intro p {
        font-size: 11.5px;
        line-height: 1.7;
    }

    /* About page */
    .content-block {
        flex-direction: column;   
    }
    
    .text-container, .image-container {
        max-width: 100%;      
        margin-bottom: -50px;  
    }

    .about-section .section-title {
        text-align: left;
    }

    .about-text p, 
    .text-container p,
    .about-intro p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .text-container {
        max-height: 300px !important;
        min-height: auto;
        height: auto;
        overflow-y: visible;
        margin-top: 5px;
    }

    .image-container {
        margin-top: -3rem;
    }

    .about-content .content-block:first-child .image-container {
        margin-top: -3rem;
    }

    .site-footer .footer-left {
        padding-top: 6rem;
    }

    /* Commissions */
    .commissions-info {
        min-height: auto;
        padding: 1rem 1rem;
        font-size: 1.1rem;
    }

    .commissions-page .commissions-info p {
        padding: 0rem 1rem 2rem;
        margin: 0rem auto 0 !important;
    }
    
    .process-title h2 {
        margin: 1rem 0 2rem;
    }

    .faq-title h2 .prepare-title h2 {
        margin-bottom: 2.1rem !important;
    }
    
    .process-title
    .faq-title
    .prepare-title {
        margin: 1rem 0 2rem;
    }

    .prepare-title,
    .faq-title {
        margin: 2rem 0 2.1rem 0; 
    }

    .process-step {
        margin-bottom: 35px;
    }
    
    .step-title {
        padding: 5px 15px 10px 15px;
    }

    .terms-notice .terms-container {
        padding: 0rem 0rem 0rem !important; 
    }
    
    .terms-notice small {
        font-size: 9px;
        line-height: 1;
    }

    .commission-cta-content p {
        font-size: 12px;
        margin: 0rem 2.5rem 1.8rem;
    }
    
    .refined-cta {
        padding: 9px 22px;
        font-size: 11px;
    }
    
    .content-divider {
        width: 90%;
    }
    
    .collection-nav {
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
    }

    /* CONTACT PAGE */
    .contact-content {
        padding: 0 0.5rem; 
    }

    .contact-container {
        padding-left: 2px;
        padding-right: 2px;
        padding-top: 2rem;
    }

    .contact-container {
        padding-bottom: 15rem;
    }

    .contact-container .contact-header h1 {
        padding: 0 1.5rem;
        text-align: center;
        font-size: 23px;
        line-height: 1;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .commissions-page {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-bar nav a {
        font-size: 12px;
    }

    /*In Progress Page */
    .project {
        margin: 15px auto;
        padding: 0 0;
    }
    
    .project-title {
        font-size: 22px;
        margin-bottom: 25px;
        margin-top: 30px;
    }
    
    .project-media {
        gap: 30px;
        padding: 0 25px 0;
    }
    
    .media-item {
        flex: 0 0 100%; 
        max-width: 100%;
        padding: 0 20px;
    }

    .media-item video,
    .media-item img {
        border-radius: 4px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
    
    .project-description {
        font-size: 10.5px;
        line-height: 1.6;
        padding: 0 auto;
    }
    
    .project-description p {
        margin-bottom: 2.5rem;
    }
    
    .progress-divider {
        width: 90%;
        margin-top: 0.5%;
    }
    
    h1 {
        font-size: 24px;
    }

    /*Commissions Page */
    .commissions-page .commissions-info p {
        padding: 0.85em 1rem 2rem;
        font-size: 11px;
        line-height: 1.7;
    }
    
    .process-title h2,
    .prepare-title h2,
    .faq-title h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .process-title {
        margin: 1.3rem 0 1.6rem 0;
        padding: 0 15px;
    }

    .process-step {
        margin-bottom: 1.8rem;
        margin-top: 1rem;
    }
    
    .prepare-title h2,
    .faq-title h2 {
        margin-bottom : 0rem;
        padding-bottom: 0rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
        margin-right: 10px;
        margin-left: 10px;
    }
    
    .step-title {
        padding: 5px 15px 5px 15px;
    }
    
    .step-title h4 {
        font-size: 16px;
        margin: 0 0 8px 0;
    }
    
    .preparation-item,
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .preparation-item h4,
    .faq-item h4 {
        font-size: 16px;
    }
    
    .step-title p,
    .preparation-item p,
    .faq-item p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .commission-cta-content p {
        font-size: 12px;
        margin: 0rem 2.5rem 1.8rem;
    }
    
    .refined-cta {
        padding: 9px 22px;
        font-size: 11px;
    }
    
    .content-divider {
        width: 90%;
    }
    
    .terms-notice .terms-container {
        padding: 0 0rem 0 !important;
    }
    
    .terms-notice small {
        font-size: 9px;
        line-height: 1.4;
    }
}

/* Very small mobile devices (400px and below) */
@media (max-width: 400px) {
    .hero-text h2 {
        font-size: 1.8rem; 
    }
    
    .hero-text h1 {
        font-size: 1rem; 
    }
    
    .logo {
        font-size: 1.6rem; 
    }
    
    .nav-bar nav a {
        font-size: 13px; 
    }
    
    .view-all-button, .learn-more-button {
        padding: 10px 24px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .card-image {
        height: 250px;
    }
    
    /* Additional adjustments for very small screens */
    .buildingsgallery-grid,
    .dreamworkgallery-grid,
    .patterngallery-grid,
    .eyegallery-grid,
    .etherealitygallery-grid {
        column-gap: 1.2rem;
    }
    
    /* Standard caption sizes for very small screens */
    .buildings1-title,
    .buildings2-title,
    .buildings3-title,
    .dreamwork1-title,
    .dreamwork2-title,
    .dreamwork3-title,
    .dreamwork4-title,
    .dreamwork5-title,
    .dreamwork7-title,
    .dreamwork8-title,
    .dreamwork9-title,
    .dreamwork10-title,
    .dreamwork11-title,
    .pattern1-title,
    .pattern2-title,
    .pattern3-title,
    .pattern4-title,
    .pattern5-title,
    .pattern6-title,
    .pattern7-title,
    .pattern8-title,
    .eye1-title,
    .eye2-title,
    .eye3-title,
    .eye4-title,
    .eye5-title,
    .eye6-title,
    .eye7-title,
    .eye8-title,
    .eye9-title,
    .eye10-title,
    .eye11-title,
    .eye12-title,
    .ethereality1-title,
    .ethereality2-title,
    .ethereality3-title,
    .ethereality4-title,
    .ethereality5-title,
    .ethereality6-title {
        font-size: 12px;
        margin-bottom: 0.2rem;
    }

    .buildings1-desc,
    .buildings2-desc,
    .buildings3-desc,
    .dreamwork1-desc,
    .dreamwork2-desc,
    .dreamwork3-desc,
    .dreamwork4-desc,
    .dreamwork5-desc,
    .dreamwork7-desc,
    .dreamwork8-desc,
    .dreamwork9-desc,
    .dreamwork10-desc,
    .dreamwork11-desc,
    .pattern1-desc,
    .pattern2-desc,
    .pattern3-desc,
    .pattern4-desc,
    .pattern5-desc,
    .pattern6-desc,
    .pattern7-desc,
    .pattern8-desc,
    .eye1-desc,
    .eye2-desc,
    .eye3-desc,
    .eye4-desc,
    .eye5-desc,
    .eye6-desc,
    .eye7-desc,
    .eye8-desc,
    .eye9-desc,
    .eye10-desc,
    .eye11-desc,
    .eye12-desc,
    .ethereality1-desc,
    .ethereality2-desc,
    .ethereality3-desc,
    .ethereality4-desc,
    .ethereality5-desc,
    .ethereality6-desc {
        font-size: 9px;
        margin-bottom: 1.5rem;
    }
    
    .buildings1-caption,
    .buildings2-caption,
    .buildings3-caption,
    .dreamwork1-caption,
    .dreamwork2-caption,
    .dreamwork3-caption,
    .dreamwork4-caption,
    .dreamwork5-caption,
    .dreamwork7-caption,
    .dreamwork8-caption,
    .dreamwork9-caption,
    .dreamwork10-caption,
    .dreamwork11-caption,
    .pattern1-caption,
    .pattern2-caption,
    .pattern3-caption,
    .pattern4-caption,
    .pattern5-caption,
    .pattern6-caption,
    .pattern7-caption,
    .pattern8-caption,
    .eye1-caption,
    .eye2-caption,
    .eye3-caption,
    .eye4-caption,
    .eye5-caption,
    .eye6-caption,
    .eye7-caption,
    .eye8-caption,
    .eye9-caption,
    .eye10-caption,
    .eye11-caption,
    .eye12-caption,
    .ethereality1-caption,
    .ethereality2-caption,
    .ethereality3-caption,
    .ethereality4-caption,
    .ethereality5-caption,
    .ethereality6-caption {
        padding: 0 0.5rem;
    }

    /* Responsive font sizes for about page  */
    .about-text p, 
    .text-container p,
    .about-intro p {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .about-section .section-title {
        text-align: left;
    }

    /* Footer adjustments for very small screens */
    .site-footer .footer-left {
        flex-direction: column;
        gap: 1.5rem;
    }

    /*In Progress Page */
    .project {
        margin: 0px auto;
    }
    
    .project-title {
        font-size: 21px;
        margin-bottom: 25px;
        margin-top: 30px;
    }
    
    .project-media {
        gap: 30px;
        padding: 0 20px 0;
    }
    
    .project-description {
        font-size: 10px;
        line-height: 1.5;
        padding: 0 0;
    }
    
    .project-description p {
        margin-bottom: 2rem;
    }
    
    .progress-intro p {
        font-size: 11px;
        line-height: 1.6;
    }
    
    .in-progress-header {
        padding: 10px 10px 5px;
    }

    /* Commissions Page */
    .commissions-page .commissions-info p {
        padding: 0.5rem 1rem 1.5rem;
        font-size: 10px;
    }
    
    .process-title h2,
    .prepare-title h2,
    .faq-title h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .step-title h4 {
        font-size: 15px;
    }
    
    .preparation-item h4,
    .faq-item h4 {
        font-size: 15px;
    }
    
    .step-title p,
    .preparation-item p,
    .faq-item p {
        font-size: 10px;
    }
    
    .commission-cta-content p {
        font-size: 12px;
    }
    
    .content-divider {
        width: 90%;
    }

    .commissions-info p {
        padding: 0rem 1rem;
    }
    
    .commissions-page .commissions-info p {
        padding: 0rem 2rem 2rem;
        font-size: 11px;
        line-height: 1.7;
    }
    
    .process-title h2,
    .prepare-title h2,
    .faq-title h2 {
        font-size: 22px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 10px;
    }
    
    .step-title {
        width: 100%;
        margin-left: 0;
    }
    
    .step-title h4 {
        font-size: 16px;
    }
    
    .step-title p,
    .preparation-item p,
    .faq-item p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .preparation-item h4,
    .faq-item h4 {
        font-size: 16px;
    }
    
    .refined-cta {
        padding: 8px 20px;
        font-size: 11px;
    }
    
    .terms-notice .terms-container {
        padding: 0 0rem 0 !important;
    }
    
    .terms-notice small {
        font-size: 9px;
        line-height: 1.4;
    }
}
