@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'inter', sans-serif;
    background-image: radial-gradient(circle, #242729 15%, #131313 100%);
    color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

/* Container with CSS Grid */
.container {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    width: 100vw;
    background-image: url('images/Frame.svg');
    background-size: 120% auto;
    background-position: center top;
    background-repeat: repeat-y;
    position: relative;
}

/* Navigation */
.navigation {
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px 0;
    z-index: 10;
}

.nav-icons {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.12);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    list-style: none;
    margin: 0;
}

.nav-icons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 50px;
    pointer-events: none;
}

.nav-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-icon:hover::before {
    opacity: 1;
}

.nav-icon:active {
    transform: scale(0.98) translateY(0);
}

.nav-icon svg {
    width: 24px;
    height: 24px;
}

/* Adjust contact icon alignment */
.nav-icon.mail-icon img,
.nav__icon.mail-icon img {
    transform: translateY(2px);
}

/* Main Content */
.main-content {
    grid-row: 2;
    display: grid;
    place-items: center;
    padding: 0 40px;
}

.portfolio-section {
    text-align: left;
    max-width: 1200px;
    width: 100%;
}

/* Portfolio Title SVG */
.portfolio-title-svg {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.title-image {
    width: clamp(300px, 80vw, 1000px);
    height: auto;
    max-width: 100%;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* Subtitle */
.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 60px;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: lowercase;
    backdrop-filter: blur(25px) saturate(150%);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-decoration: none;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.06) 0%, 
        rgba(255, 255, 255, 0.02) 50%, 
        rgba(255, 255, 255, 0.01) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-rows: auto 1fr;
    }
    
    .navigation {
        padding: 20px 0 10px 0;
    }
    
    .nav-icons {
        gap: 20px;
        padding: 12px 25px;
    }
    
    .nav-icon {
        width: 45px;
        height: 45px;
    }
    
    .portfolio-section {
        text-align: center;
        padding: 0 20px;
    }
    
    .portfolio-title-svg {
        justify-content: center;
    }
    
    .title-image {
        width: clamp(250px, 90vw, 600px);
    }
    
    .action-buttons {
        justify-content: center;
        gap: 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .nav-icons {
        gap: 15px;
        padding: 10px 20px;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

/* MY WORK PAGE STYLES */

body.mywork-page {
    overflow: auto;
    height: auto;
    min-height: 100vh;
}

.page--work {
    min-height: 200vh;
    background-image: radial-gradient(circle, #242729 15%, #131313 100%);
    position: relative;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 0;
    margin: 0;
    padding-bottom: 50px;
}

/* Add the same flowing line background overlay */
.page--work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/myworkbg.svg');
    background-size: 120% auto;
    background-position: center top;
    background-repeat: repeat-y;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    min-height: 100%;
}

/* All content sections */
.page--work > * {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation for My Work page - reuse exact same styles as Hero */
.page--work .navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px 0;
    z-index: 10;
}

.nav__icons {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.12);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
}

.nav__icons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 50px;
    pointer-events: none;
}

.nav__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.nav__icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__icon:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav__icon:hover::before {
    opacity: 1;
}

.nav__icon:active {
    transform: scale(0.98) translateY(0);
}

.nav__icon svg {
    width: 24px;
    height: 24px;
}

/* Work Header */
.work-header {
    margin: 60px 0 80px 0;
    text-align: left;
}

.work-header__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    color: white;
    text-transform: uppercase;
}

.work-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.filter:hover,
.filter--active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    color: white;
    text-transform: lowercase;
    text-align: center;
}

/* Projects Section */
.projects {
    margin-bottom: 120px;
}

.project {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
}

.project__media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.15);
}

.project__media img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.project__content {
    position: relative;
}

.project__background {
    display: none;
}

.project__bg-shape {
    display: none;
}

.project__text {
    position: relative;
    z-index: 1;
}

.project__title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: white;
}

.project__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-weight: 300;
}

.project__description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.project__description--small {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 300;
}

.project__link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.project__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project__link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.project__link:hover::before {
    opacity: 1;
}

/* Photography Section */
.photography {
    margin-bottom: 120px;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 440px 220px 220px;
    gap: 24px;
}

.photo {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* LARGE image (top, full width) */

.photo--large {
    grid-column: 1 / -1;
    grid-row: 1;
}
.photo-grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 520px 220px 220px;
}

.photo--large img {
    object-position: center 25%;
}


/* MEDIUM image (left, spans two rows) */
.photo:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2 / 4;
}

/* SMALL image (top right) */
.photo:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
}

/* SMALL CTA (bottom right) */
.photo--cta {
    grid-column: 2;
    grid-row: 3;
}

.photo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.photo--large {
    grid-column: 1 / -1;
}

.photo--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
}
.photo__button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.photo__button:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* LOGOS SECTION */
.logos {
    position: relative;
    margin-bottom: 50px;
    padding: 80px 0 800px 0;
    overflow: hidden;
}

/* SVG background - groter en onder de titel */
.logos::before {
    content: "";
    position: absolute;
    top: 140px;
    left: 35%;
    transform: translateX(-50%) rotate(5deg);
    width: 1200px;
    height: 900px;
    background-image: url("images/recent-logos.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
}

.logo-grid {
    display: none;
}

.logo-view-more {
    position: absolute;
    bottom: 250px;
    right: 455px;
    z-index: 2;
    transform: rotate(-27deg);
}

.logo-view-more__button {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.logo-view-more__button:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .page--work > * {
        padding: 0 20px;
    }
    
    .page--work .navigation {
        padding: 20px 0 10px 0;
    }
    
    .nav__icons {
        gap: 20px;
        padding: 12px 25px;
    }
    
    .nav__icon {
        width: 45px;
        height: 45px;
    }
    
    .work-header {
        text-align: center;
        margin: 40px 0 60px 0;
    }
    
    .work-filters {
        justify-content: center;
    }
    
    .project {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .project__media {
        justify-self: center;
        max-width: 300px;
        transform: translateY(0);
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        height: auto;
    }
    
    .photo--large {
        grid-row: auto;
    }
    
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .projects,
    .photography,
    .logos {
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .page--work > * {
        padding: 0 15px;
    }
    
    .nav__icons {
        gap: 15px;
        padding: 10px 20px;
    }
    
    .nav__icon {
        width: 40px;
        height: 40px;
    }
    
    .nav__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .work-filters {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .filter {
        width: 200px;
        text-align: center;
    }
    
    .project {
        padding: 20px;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for smooth loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-section > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.portfolio-section > *:nth-child(1) { animation-delay: 0.1s; }
.portfolio-section > *:nth-child(2) { animation-delay: 0.2s; }
.portfolio-section > *:nth-child(3) { animation-delay: 0.3s; }
.portfolio-section > *:nth-child(4) { animation-delay: 0.4s; }

/* CONTACT PAGE STYLES */
/* Reuse the same container and grid system as Hero page */
.page--contact {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    width: 100vw;
    background-image: url('../images/herobg.svg');
    background-size: 120% auto;
    background-position: center top;
    background-repeat: repeat-y;
    position: relative;
    color: white;
    font-family: 'Arial', sans-serif;
}

/* Navigation for Contact page - reuse exact same styles as Hero */
.page--contact .nav {
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px 0;
    z-index: 10;
}

/* Contact Header */
.contact-header {
    position: absolute;
    top: 120px;
    left: 40px;
    z-index: 2;
}

.contact-header__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: white;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
}

/* Contact Content */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    z-index: 2;
}

.contact-item,
.download-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 18px 25px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(120%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.contact-item::before,
.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-item:hover,
.download-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.contact-item:hover::before,
.download-btn:hover::before {
    opacity: 1;
}

.contact-item--download,
.download-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page--contact {
        height: auto;
        min-height: 100vh;
    }
    
    .contact-header,
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-header__title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        text-align: center;
    }
    
    .contact-header {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .contact-content {
        align-items: center;
    }
    
    .contact-item {
        max-width: 100%;
        text-align: center;
    }
}


/* COMING SOON PAGE STYLES */
.page--coming-soon {
    min-height: 100vh;
    background-image: radial-gradient(circle, #242729 15%, #131313 100%);
    background-attachment: fixed;
    position: relative;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

/* Same flowing line background overlay */
.page--coming-soon::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/herobg.svg');
    background-size: 120% auto;
    background-position: center top;
    background-repeat: repeat-y;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

/* Navigation for Coming Soon page */
.page--coming-soon .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px 0;
    z-index: 10;
    position: relative;
}

/* Coming Soon Content */
.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* RB Logo - no bouncing, upright */
.coming-soon-logo {
    margin-bottom: 30px;
}

.rb-logo {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
    transform: rotate(29deg);
}

.rb-logo:hover {
    transform: scale(1.1);
}

/* Coming Soon Title - smaller */
.coming-soon-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, #ccc, #fff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

/* Subtitle */
.coming-soon-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Message */
.coming-soon-message {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 1s both;
}

.coming-soon-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

/* Action Buttons */
.coming-soon-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.coming-soon-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(150%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.coming-soon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.coming-soon-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.coming-soon-btn:hover::before {
    opacity: 1;
}

/* Animations */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 0 20px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .coming-soon-btn {
        width: 200px;
        text-align: center;
    }
    
    .rb-logo {
        width: 80px;
        height: 80px;
    }
}


/* ABOUT ME PAGE STYLES */
/* Reuse the same container and grid system as Hero and Contact pages */
.page--about {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    width: 100vw;
    background-image: radial-gradient(circle, #242729 15%, #131313 100%);
    position: relative;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Navigation for About page - reuse exact same styles as Hero/Contact */
.page--about .nav {
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px 0;
    z-index: 10;
}

/* About Content - use same grid placement as Hero main content */
.about-content {
    grid-row: 2;
    display: grid;
    place-items: center;
    padding: 0 40px;
}

/* About Grid Layout - match Hero portfolio section structure */
/* About Grid Layout - cleaner two-column layout */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
    max-width: 1200px;
    width: 100%;
    padding-top: 0px;
}

/* About Text - match Hero typography and spacing */
/* About Text - lighter and more elegant */
.about-text {
    text-align: left;
    max-width: 450px;
    margin-left: 40px;
    margin-top: -20px;
}


.about-title {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: white;
    text-transform: uppercase;
}

.about-paragraph {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.about-paragraph:last-child {
    margin-bottom: 40;
}

/* About Image - clean and minimal with frame */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    margin-left: -70px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 23%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 470px;
    background-image: url('../images/picture-frame.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
    pointer-events: none;
}

.about-image {
    max-width: 240px;
    width: 100%;
    height: 430px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}



/* Frame styles removed - using ::before pseudo-element instead */

/* Mobile Responsive - match Hero page breakpoints */
@media (max-width: 768px) {
    .page--about {
        height: auto;
        min-height: 100vh;
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image-wrapper {
        justify-content: center;
    }
    
    .about-image {
        max-width: 250px;
        height: 320px;
    }
    
    .frame {
        width: 270px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 0 15px;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-image {
        max-width: 200px;
        height: 260px;
    }
    
    .frame {
        width: 220px;
    }
}