@import url(https://use.fontawesome.com/releases/v5.0.10/css/all.css);
@import url('https://fonts.googleapis.com/css?family=Raleway:600');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #FFFFF0;
    color: #333333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── HEADER ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 240, 0.0);
    transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.header.scrolled {
    background: rgba(255, 255, 240, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 48px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.06);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
    text-decoration: none;
    user-select: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.6;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    color: #777777;
    text-decoration: none;
    text-transform: lowercase;
    letter-spacing: 0.28em;
    position: relative;
    transition: color 0.35s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: #333333;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
    color: #333333;
}

.nav-link:hover::after {
    width: 100%;
}

/* ── HERO SECTION ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ── NOISE / GRAIN OVERLAY ── */
.hero-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.045;
    mix-blend-mode: multiply;
}

.hero-lines-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: transform;
}

.hero-lines-layer svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    z-index: 1;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    right: -5%;
    background: radial-gradient(circle, #8F8F8F 0%, transparent 70%);
    opacity: 0.07;
}

.hero-orb-2 {
    width: 320px;
    height: 320px;
    bottom: 8%;
    left: -3%;
    background: radial-gradient(circle, #999999 0%, transparent 70%);
    opacity: 0.065;
}

.hero-orb-3 {
    width: 180px;
    height: 180px;
    top: 25%;
    left: 15%;
    background: radial-gradient(circle, #8F8F8F 0%, transparent 70%);
    opacity: 0.055;
}

.hero-orb-4 {
    width: 240px;
    height: 240px;
    bottom: 18%;
    right: 12%;
    background: radial-gradient(circle, #959595 0%, transparent 70%);
    opacity: 0.05;
}

.hero-text-layer {
    position: relative;
    z-index: 10;
    text-align: center;
    will-change: transform;
}

.hero-greeting {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.03em;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 300;
    color: #A9A9A9;
    letter-spacing: 0.22em;
    text-transform: lowercase;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: lowercase;
    color: #B0B0B0;
}

.scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, #B0B0B0, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ── ABOUT SECTION ── */
.about {
    position: relative;
    padding: 120px 48px 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.about-left {
    position: relative;
}

.about-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: #A9A9A9;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-heading {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.03em;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.about-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-line {
    width: 48px;
    height: 2px;
    background: #333333;
    margin-top: 28px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.about-line.visible {
    opacity: 1;
    transform: scaleX(1);
}

.about-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.about-right.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: #555555;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.about-text+.about-text {
    margin-top: 24px;
}

.about-detail {
    margin-top: 40px;
    display: flex;
    gap: 48px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 400;
    color: #A9A9A9;
    letter-spacing: 0.2em;
    text-transform: lowercase;
}

/* ── FOOTER ── */
.footer {
    padding: 48px;
    text-align: center;
    border-top: 1px solid rgba(51, 51, 51, 0.06);
}

.footer-text {
    font-size: 0.72rem;
    color: #B0B0B0;
    letter-spacing: 0.18em;
    text-transform: lowercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .header {
        padding: 22px 24px;
    }

    .header.scrolled {
        padding: 16px 24px;
    }

    .nav {
        gap: 28px;
    }

    .nav-link {
        font-size: 0.72rem;
    }

    .about {
        padding: 80px 24px 100px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-detail {
        gap: 32px;
    }

    .footer {
        padding: 36px 24px;
    }

    .hero-orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-orb-2 {
        width: 200px;
        height: 200px;
    }

    .hero-orb-3 {
        width: 120px;
        height: 120px;
    }

    .hero-orb-4 {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.25rem;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .hero-greeting {
        font-size: 2.4rem;
    }

    .about-heading {
        font-size: 2rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.75;
    }
}

/* ── SHOWCASE SECTION ── */
#showcase {
    padding: 60px 48px 100px;
    background-color: #FFFFF0;
    /* Match body bg */
}

#showcase .showcase-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

#showcase .about-line {
    transform-origin: center;
}

.showcase-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Added for responsiveness */
    animation: up 1.5s;
}

.showcase .photoLink {
    position: relative;
    float: left;
    overflow: hidden;
    margin: 10px 1%;
    min-width: 220px;
    max-width: 310px;
    width: 100%;
    background: #000000;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    border-radius: .5rem;
    text-decoration: none;
    /* Reset link style */
}

.showcase .item * {
    box-sizing: border-box;
    transition: all .2s ease-in-out;
    height: 100px;
    width: 100px;
}

.showcase .item {
    vertical-align: top;
    height: 210px;
    width: 100%;
}

.showcase .item i {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    font-size: 34px;
    color: #000000;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #ffffff;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .5s 0 ease;
}

.showcase .item a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

.showcase .item.blue {
    background-color: #34495e;
}

.showcase .item.blue i {
    color: #34495e;
}

.showcase .item.red {
    background-color: #ff0000;
}

.showcase .item.red i {
    color: #e74c3c;
}

.showcase .item:hover i {
    transform: translate(-50%, -50%) scale(1);
    transition: transform .3s .1s cubic-bezier(.37, 1.05, .5, 1.21);
}

#item1 {
    background: url("https://images.unsplash.com/photo-1496301851374-1cd990ea7525?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=f10597a09a8060b2579095786c801bb2&auto=format&fit=crop&w=975&q=80") center center no-repeat;
    background-size: cover;
}

#item2 {
    background: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?ixlib=rb-0.3.5&s=41def613949073b2c3155bcde93a69d1&auto=format&fit=crop&w=1640&q=80") center center no-repeat;
    background-size: cover;
}

#item3 {
    background: url("https://images.unsplash.com/photo-1493020258366-be3ead1b3027?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=2afb6e9b1b3272030768e20b213e0470&auto=format&fit=crop&w=1100&q=80") center center no-repeat;
    background-size: cover;
}

.showcase .color:hover {
    opacity: 1 !important;
}

.showcase .color.green {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #16a08577;
}

.showcase .color.green i {
    color: #16a085;
}

.showcase .color.blue {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #0c67f977;
}

.showcase .color.blue i {
    color: #0c67f9;
}

.showcase .color.red {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #f90c0c77;
}

.showcase .color.red i {
    color: #f90c0c;
}

@keyframes up {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}