/* nonri.day - One Day */
/* Palette: Sunset Blaze #E87C3E, Aged Leather #8B5E3C, Warm Amber #D4A04A,
   Cream Vinyl #FEF5E8, Bourbon Brown #3D2B1F, Rebel Red #C94520, Golden Hour #F2C94C */

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

body {
    background-color: #FEF5E8;
    color: #8B5E3C;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    transition: background-color 1.5s ease;
}

.svg-filters {
    position: absolute;
    width: 0;
    height: 0;
}

/* Jukebox Glow */
.jukebox-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(ellipse at center, rgba(242, 201, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 1s ease;
}

/* Bubbles */
.bubble {
    position: fixed;
    border-radius: 50%;
    border: 2px solid #8B5E3C;
    background: radial-gradient(circle at 40% 40%, rgba(242, 201, 76, 0.3), rgba(232, 124, 62, 0.15));
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease;
}

.bubble-1 {
    width: 160px;
    height: 160px;
    top: 25%;
    right: -60px;
    animation: bobble1 3s infinite ease-in-out;
}

.bubble-2 {
    width: 120px;
    height: 120px;
    top: 45%;
    left: -40px;
    animation: bobble2 3.5s infinite ease-in-out;
}

.bubble-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -80px;
    animation: bobble3 2.5s infinite ease-in-out;
}

.bubble-4 {
    width: 140px;
    height: 140px;
    top: 35%;
    left: -50px;
    animation: bobble1 3.2s infinite ease-in-out;
}

.bubble-5 {
    width: 100px;
    height: 100px;
    top: 75%;
    right: -30px;
    animation: bobble2 2.8s infinite ease-in-out;
}

@keyframes bobble1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bobble2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes bobble3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Content Column */
.content-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Dawn Section */
.dawn-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-title {
    font-family: 'Epilogue', sans-serif;
    font-variation-settings: 'wght' 200;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #D4A04A;
    text-align: center;
    transition: color 1s ease;
}

/* Content Sections */
.content-section {
    padding: 48px 0;
    position: relative;
}

.section-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Border Animate Divider */
.border-animate {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E87C3E, #D4A04A, #8B5E3C);
    margin: 0 auto 32px;
    transition: width 0.8s ease;
}

.border-animate.drawn {
    width: 100%;
}

.golden .border-animate {
    transition-duration: 0.5s;
}

.dusk .border-animate {
    transition-duration: 1.2s;
}

/* Section Headings */
.section-heading {
    font-family: 'Epilogue', sans-serif;
    font-variation-settings: 'wght' 500;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #3D2B1F;
    line-height: 1.1;
}

.golden-heading {
    color: #E87C3E;
}

/* Body Text */
.body-text {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    color: #8B5E3C;
}

.body-text em {
    font-style: italic;
}

/* Rebel Tags */
.rebel-tag {
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
    color: #C94520;
    display: inline-block;
    padding: 4px 0;
}

/* Pull Quotes */
.pullquote-break {
    padding: 32px 0;
}

.pullquote-break.left {
    margin-left: -120px;
    padding-left: 120px;
}

.pullquote-break.right {
    margin-right: -120px;
    padding-right: 120px;
    text-align: right;
}

.pullquote {
    font-family: 'Epilogue', sans-serif;
    font-variation-settings: 'wght' 600;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: #E87C3E;
    line-height: 1.3;
}

/* Night Section */
.night {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.night .section-inner {
    align-items: center;
    text-align: center;
}

.night-heading {
    font-family: 'Epilogue', sans-serif;
    font-variation-settings: 'wght' 100;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #FEF5E8;
}

.night-tag {
    color: #D4A04A;
    font-size: 22px;
    margin-top: 20px;
}

/* Dusk Sections */
.dusk .section-heading {
    color: #8B5E3C;
}

/* Mobile */
@media (max-width: 768px) {
    .pullquote-break.left {
        margin-left: 0;
        padding-left: 0;
    }

    .pullquote-break.right {
        margin-right: 0;
        padding-right: 0;
    }

    .bubble {
        display: none;
    }

    .content-column {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2.5rem;
    }

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