:root {
    --color-bg: rgb(245, 245, 245);
    --color-text: #0a0a0a;
    --color-accent: #a37cff;
    --color-accent-light: #d2afff;
    --color-border: #e6e6e6;
    --color-text-muted: #666;
}

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

/* Base Styles */
body {
    font-family: sohne-var, Helvetica Neue, Arial, sans-serif;
    background: rgb(245, 245, 245);
    color: #0a0a0a;
    line-height: 1.5;
    padding-top: 10px;
}

/* Layout Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 40px;
    z-index: 1000;
    pointer-events: none;
}

.header-content {
    display: flex;
    gap: 6px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(220, 220, 220, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    pointer-events: auto;
}

.nav-button:hover {
    background: rgba(216, 185, 255, 0.7);
}



.spacer {
    flex: 1;
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8.5rem);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 40px;
}



.hero-description {
    font-size: 26px;
    line-height: 1.5;
    max-width: 800px;
    font-weight: 400;
}


.decorative-plus {
    position: absolute;
    font-size: 20px;
    color: #0a0a0a;
    opacity: 0.3;
}

.plus-1 {
    top: 60px;
    left: 20px;
    animation-delay: 0s;
}

.plus-2 {
    top: 60px;
    right: 50%;
    animation-delay: 1s;
}

.plus-3 {
    top: 60px;
    right: 20px;
    animation-delay: 2s;
}

.plus-4 {
    bottom: 40px;
    left: 50%;
    animation-delay: 3s;
}

.plus-5 {
    bottom: 40px;
    right: 20%;
    animation-delay: 4s;
}

.plus-6 {
    top: 50%;
    right: 20px;
    animation-delay: 5s;
}


/* Featured Images Section */
.featured {
    padding: 60px 0;
    border-top: 1px solid #e6e6e6;
}

.section-label {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    font-weight: 500;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.image-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-card h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.image-card h3 a {
    text-decoration: none;
    color: #0a0a0a;
    transition: opacity 0.2s;
}

.image-card h3 a:hover {
    opacity: 0.6;
}

.image-card h3 a::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M4.75 19.25l14.5-14.5M4.75 4.75h14.5v14.5"/></svg>');
    margin-left: 8px;
    font-size: 24px;
}

.image-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    body {
        padding-top: 20px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10vw, 8.5rem);
        word-break: break-word;
    }

    .hero-description {
        font-size: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .image-card .image-wrapper {
        order: 2;
    }

    .image-card .image-content {
        order: 1;
    }

    header {
        padding: 12px 20px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 4px;
    }

    .nav-button {
        font-size: 11px;
        padding: 6px 12px;
    }

    .plus-1,
    .plus-2,
    .plus-3,
    .plus-4,
    .plus-5,
    .plus-6 {
        display: none;
    }
}

.newvola-gradient {
    background: -webkit-linear-gradient(45deg, #a37cff, #d2afff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feed Section */
.feed {
    padding: 80px 0;
    border-top: 1px solid #e6e6e6;
}

.feed h2 {
    font-size: 96px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.feed h2 sup {
    font-size: 24px;
    font-weight: 400;
    top: -2.5em;
    letter-spacing: 0px;
}

.feed-header {
    display: grid;
    grid-template-columns: 150px 1fr 100px 50px;
    gap: 40px;
    padding: 15px 40px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    border-bottom: 1px solid #e6e6e6;
}

.feed-header>div:nth-child(3) {
    text-align: center;
}

.feed-item {
    border-bottom: 1px solid #e6e6e6;
    transition: background 0.2s;
}

.feed-item:hover {
    background: rgb(245, 245, 245);
}

.feed-item-header {
    display: grid;
    grid-template-columns: 150px 1fr 100px 50px;
    gap: 40px;
    padding: 20px 40px;
    align-items: center;
    cursor: pointer;
}

.feed-date {
    font-size: 16px;
    color: #0a0a0a;
    position: relative;
    padding-left: 20px;
}

.feed-date::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #0a0a0a;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.feed-title {
    font-size: 24px;
    font-weight: 400;
}

.feed-type {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    border: 1px solid #e6e6e6;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
}

.feed-expand {
    font-size: 20px;
    color: #666;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease;
    user-select: none;
}

.feed-expand.expanded {
    transform: rotate(45deg);
}

.feed-item-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.5s ease,
        padding 0.5s ease;
    padding: 0 40px;
}

.feed-item-content.expanded {
    max-height: 500px;
    padding: 40px;
    background: #f5f5f5;
}

.feed-item-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.feed-item-summary span,
.feed-item-author span {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.feed-item-summary p,
.feed-item-author p {
    font-size: 16px;
    color: #0a0a0a;
    padding-left: 0;
}





.read-button {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: transparent;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.2s;
    text-align: center;
    border: 1px solid #e6e6e6;
}

.read-button:hover {
    background-color: #e6e6e6;
}

@media (max-width: 768px) {
    .feed h2 {
        font-size: 48px;
    }

    .feed-header {
        display: none;
    }

    .feed-item-header {
        display: grid;
        grid-template-columns: auto auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 15px;
        row-gap: 10px;
        align-items: center;
        padding: 20px;
    }

    .feed-date {
        grid-column: 1;
        grid-row: 2;
        position: relative;
        padding-left: 20px;
        font-size: 14px;
    }

    .feed-date::before {
        content: '';
        width: 10px;
        height: 10px;
        background: #0a0a0a;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .feed-title {
        grid-column: 1 / 4;
        grid-row: 1;
        font-size: 20px;
    }

    .feed-type {
        grid-column: 2;
        grid-row: 2;
        font-size: 10px;
        padding: 2px 6px;
    }

    .feed-expand {
        grid-column: 3;
        grid-row: 1 / 3;
        align-self: center;
        justify-self: end;
    }

    .feed-item-details {
        grid-template-columns: 1fr;
    }

    .feed-item-content.expanded {
        padding: 20px;
    }
}

/* Post Page Styles */
.post-body {
    background-color: rgb(245, 245, 245);
    padding-top: 0;
}

.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.back-button {
    display: inline-block;
    margin-bottom: 40px;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 500;
}



.post-content {
    margin: 0 auto;
}

.post-article p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-article ul {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 40px;
}

.post-article li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .post-container {
        padding: 40px 20px;
    }



    .post-article p {
        font-size: 18px;
    }
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 80px;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-content {
    display: contents;
}

.contact-form-section .form-header {
    margin-bottom: 10px;
}

.contact-form-section .form-header h2 {
    font-size: 96px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.form-description {
    font-size: 26px;
    line-height: 1.5;
    max-width: 600px;
    font-weight: 400;
    display: block;
    margin: 0 0 20px 0;
    text-align: left;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    padding: 12px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #d2afff;
}

.submit-button {
    padding: 20px;
    background-color: transparent;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.2s;
    text-align: center;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
}

.submit-button:hover {
    background-color: #e6e6e6;
}



@media (max-width: 768px) {
    .contact-form-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-section .form-header h2 {
        font-size: 48px;
    }

    .form-description {
        font-size: 20px;
    }

    #contact-form {
        margin-top: 10px;
    }
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--color-text);
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

.decorative-plus {
    position: absolute;
    font-size: 20px;
    color: #0a0a0a;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.vertical-scroll-section {
    height: 5000vh;
    background: var(--color-bg);
    border-top: 1px solid #e6e6e6;
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: var(--color-bg);
}

.scroll-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 40px;
}

.scroll-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
}

.scroll-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.scroll-item {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
    color: #e6e6e6;
    user-select: none;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}


.scroll-item.filled {
    color: #0a0a0a;
}

.scroll-item.outlined {
    color: transparent;
    -webkit-text-stroke: 1px #0a0a0a;
}

.scroll-item.accent {
    color: #d2afff;
}


::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
}

@media (max-width: 1200px) {
    .scroll-container {
        gap: 15px;
        padding: 0 20px;
    }

    .scroll-item {
        font-size: 4vw;
    }
}

@media (max-width: 600px) {
    .vertical-scroll-section {
        height: 500vh;
    }

    .scroll-container {
        padding: 0 10px;
        gap: 10px;
    }

    .scroll-item {
        font-size: 42px;
    }

    .scroll-column:nth-child(n+4) {
        display: none;
    }

    .scroll-column {
        gap: 10px;
        flex: 1;
        align-items: center;
    }
}
