/* ===================================
   MINIMALIST HOMEPAGE STYLES
   =================================== */

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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

/* Sections */
.section {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.section:last-of-type {
    border-bottom: none;
}

/* Site logo header */
.site-logo-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px 0;
}

.site-logo-link {
    font-size: 36px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    letter-spacing: 0.01em;
    margin: 0;
}

.site-logo-link strong {
    font-weight: 700;
}

/* Box item with photo */
.box-item-with-image {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.box-item-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.section-image {
    width: 100%;
    height: auto;
    margin-top: 16px;
    border-radius: 4px;
    display: block;
}

.what-is-content {
    display: flex;
    gap: 24px;
    align-items: flex-end;
}

.what-is-text {
    flex: 1;
}

.what-is-text p {
    margin-bottom: 0;
}

.what-is-image {
    width: 45%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.box-item-text {
    flex: 1;
}


/* Typography */
h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.3;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 24px;
}

p {
    margin-bottom: 12px;
    color: #333;
}

a {
    color: #111;
}

a:hover {
    color: #555;
}

/* Lists */
ul {
    margin: 12px 0 12px 24px;
}

ul li {
    margin-bottom: 6px;
    color: #333;
}

/* Box list */
.box-list {
    margin-top: 24px;
}

.box-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.box-item:last-child {
    border-bottom: none;
}

.box-item h3 {
    margin-top: 0;
}

.box-creator {
    font-size: 14px;
    color: #777;
}

.box-status {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.box-link-disabled {
    color: #999;
    cursor: default;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #eee;
}

/* Future Boxes */
.future-boxes-container {
    padding-top: 20px;
}

.future-boxes-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #ccc;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.future-boxes-btn:hover {
    color: #111;
    text-decoration-color: #111;
}

.future-boxes-content {
    margin-top: 16px;
}

/* Manifesto */
.section--manifesto {
    text-align: right;
}

.manifesto-author {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 32px 0;
    text-align: left;
}

.footer-tagline {
    color: #666;
}

/* Modal — keep functional styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-box {
    background: #fff;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-box h2 {
    font-size: 18px;
    margin-bottom: 8px;
}

.modal-box input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 12px 0;
    border: 1px solid #ccc;
    font-size: 14px;
}

.modal-box button[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

/* Creators CTA */
.creators-cta {
    margin-top: 24px;
    font-size: 13px;
    color: #777;
}

.creators-cta-link {
    color: #bbb;
    text-decoration: underline;
    text-decoration-color: #ccc;
    cursor: default;
}

.creators-cta-soon {
    color: #bbb;
    font-style: italic;
}

/* Responsiveness */
@media (max-width: 600px) {
    .what-is-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .what-is-image {
        width: 100%;
        margin-top: 8px;
    }
}