.logo-nav img {
    width: 120px; 
    height: auto;
    margin-top: 10px;
}

.design-grid-container {
    width: 100%;
    overflow: hidden;
}
  
.design-row {
    display: flex;
    width: 100%;
    height: 500px; 
    margin-bottom: 0; 
}
  
.design-row.design-reverse {
    flex-direction: row-reverse;
}
  
.design-column {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
    width: 100%;
}

.design-column.design-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
}

.design-column.design-text a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 10px 10px;
    transition: color 0.3s ease;
}

.project-title {
    color: #fff;
    font-size: 68px;
    font-family: 'Le Murmure', sans-serif;
    text-align: center;
    max-width: 100%;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.project-subtitle {
    color: #fff;
    font-size: 24px;
    font-family: 'Tenor Sans', sans-serif;
    text-align: center;
    opacity: 0.8;
    font-weight: normal;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-circle {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 1000;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 6px;
    align-items: center;
    gap: 10px;
}

.nav-circle-link {
    text-decoration: none;
}

.circle {
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.circle:hover {
    transform: scale(1.6);
    border-color: rgba(255, 255, 255, 1);
}

.design-column.design-text a:hover .project-title,
.design-column.design-text a:hover .project-subtitle {
    color: #cbb59f;
}
  
.design-image {
    overflow: hidden;
    position: relative;
    pointer-events: none;
}

.design-image a, .design-image img {
    pointer-events: auto;
}

.design-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.design-image:hover::before {
    opacity: 0;
}

.design-image a {
    display: block;
    width: 100%;
    height: 100%;
}
  
.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
  
.design-image:hover img {
    transform: scale(1.1);
}

.design-image {
    overflow: hidden;
    position: relative;
    pointer-events: none;
}

.design-image a, .design-image img {
    pointer-events: auto;
}

.design-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
    z-index: 1;
    opacity: 1;
    transition: all 0.5s ease;
}

/* Exact same span styling from your homepage */
.design-image span {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 12px 35px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Same hover effects from homepage */
.design-image:hover::before {
    opacity: 0;
}

.design-image:hover span {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.design-image span:hover {
    background-color: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}

.design-image a {
    display: block;
    width: 100%;
    height: 100%;
}
  
.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
  
.design-image:hover img {
    transform: scale(1.1);
}
  
.custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid #c6c6c6;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
}

.custom-cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: #c6c6c6;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .15s;
}

.custom-cursor, .custom-cursor2 {
    z-index: 9999;
}

.custom-cursor2.text-hover {
    opacity: 0;
}

.custom-cursor.text-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: #c6c6c6;
    opacity: .5;
}

@media (max-width: 480px) {
    .project-title {
        font-size: 38px;
    }

    .project-subtitle {
        font-size: 15px;
    }

    .design-column.design-text a {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .design-row, .design-row.design-reverse {
      flex-direction: column;
      height: auto;
      position: relative;
    }
    
    .design-column {
      width: 100%;
    }
    
    .design-column.design-text {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 2;
      font-size: 40px;
    }
    
    .design-column.design-image {
      z-index: 1;
      height: 300px; 
    }

    @media screen and (max-width: 768px) {
        .custom-cursor,
        .custom-cursor2 {
            display: none !important;
        }
    }
}

@media (hover: none) {
    .cursor, 
    .cursor2 {
        display: none !important;
    }
}
