/* ── new-site/css/styles.css — fully self-contained ─────────────────────── */

/* ── Fonts ──────────────────────────────────────────────────────────────── */

@font-face {
    font-family: 'DesMontilles';
    src: url('../../assets/fonts/DesMontilles-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Intan';
    src: url('../../assets/fonts/intan.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Girthquake';
    src: url('../fonts/Girthquake-Regular.otf') format('opentype'),
         url('../fonts/Girthquake-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Butterclub';
    src: url('../fonts/Butterclub-Regular.otf') format('opentype'),
         url('../fonts/Butterclub-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */

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

html {
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    background: #E6F3FF;
}

a { text-decoration: none; }


/* ── Navigation ─────────────────────────────────────────────────────────── */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../nav-bar.png') center center / 100% 100% no-repeat;
}

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

/* ── Texture overlay ────────────────────────────────────────────────────── */

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    pointer-events: none;
    background: url('../22-texture.png') top left / 400px auto repeat;
    opacity: 0.35;
}

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

.nav-link {
    font-family: 'Butterclub', sans-serif;
    font-size: 22px;
    color: #5F361E;
    text-decoration: none;
    padding: 2px 18px;
    position: relative;
    transition: color 0.2s;
}

/* Tape strip behind hovered/active link */
.nav-link::before {
    content: '';
    position: absolute;
    inset: -2px -10px;
    background: url('../blue-tape.png') center center / 100% 100% no-repeat;
    transform: rotate(-1.8deg) scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
    z-index: -1;
    opacity: 0.5;
}

/* Each link gets a slightly different tilt for that hand-applied feel */
.nav-link:nth-child(2)::before { transform: rotate(1.2deg) scaleX(0); }
.nav-link:nth-child(3)::before { transform: rotate(-0.8deg) scaleX(0); }
.nav-link:nth-child(4)::before { transform: rotate(1.5deg) scaleX(0); }

.nav-link:hover::before,
.nav-link.active::before {
    transform: rotate(-1.8deg) scaleX(1);
}

.nav-link:nth-child(2):hover::before,
.nav-link:nth-child(2).active::before { transform: rotate(1.2deg) scaleX(1); }

.nav-link:nth-child(3):hover::before,
.nav-link:nth-child(3).active::before { transform: rotate(-0.8deg) scaleX(1); }

.nav-link:nth-child(4):hover::before,
.nav-link:nth-child(4).active::before { transform: rotate(1.5deg) scaleX(1); }

/* Hamburger — mobile only */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Butterclub', sans-serif;
    font-size: 18px;
    color: #5F361E;
    padding: 4px 8px;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.hamburger:hover { opacity: 0.7; }
.hamburger.open { opacity: 0.7; }

/* ── Fullscreen Nav Overlay ──────────────────────────────────────────────── */

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #C5D0D3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav-overlay-close {
    position: absolute;
    top: 28px;
    right: 5vw;
    background: none;
    border: none;
    font-family: 'Butterclub', sans-serif;
    font-size: 32px;
    color: #5F361E;
    cursor: pointer;
    opacity: 0.6;
    line-height: 1;
    transition: opacity 0.2s;
}

.nav-overlay-close:hover { opacity: 1; }

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nav-overlay-links a {
    font-family: 'Butterclub', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: #5F361E;
    line-height: 1.15;
    letter-spacing: -0.01em;
    opacity: 0.9;
    position: relative;
    isolation: isolate;
    padding: 2px 18px;
    transition: opacity 0.2s;
    text-decoration: none;
}

.nav-overlay-links a::before {
    content: '';
    position: absolute;
    inset: -2px -10px;
    background: url('../yellow-tape.png') center center / 100% 100% no-repeat;
    z-index: -1;
    opacity: 1;
    transform: rotate(-1.5deg) scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
}

.nav-overlay-links a:hover {
    opacity: 1;
}

.nav-overlay-links a:hover::before {
    transform: rotate(-1.5deg) scaleX(1);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../hero-home.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


.scroll-hint {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Butterclub', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: #5F361E;
    opacity: 0.45;
    white-space: nowrap;
    pointer-events: none;
    animation: bounce 2.4s ease-in-out infinite;
}

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

/* ── Shared typography ──────────────────────────────────────────────────── */

.display-heading {
    font-family: 'Girthquake', serif;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    color: #5F361E;
    font-weight: normal;
    line-height: 1.0;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
}

.body-text {
    font-family: 'Butterclub', sans-serif;
    font-size: 19px;
    color: #5F361E;
    line-height: 1.9;
    opacity: 1;
    margin: 0 0 40px;
}

.sketchy-btn,
.text-link {
    font-family: 'Butterclub', sans-serif;
    font-size: 20px;
    color: #5F361E;
    text-decoration: none;
    position: relative;
    padding: 4px 18px;
    display: inline-block;
    cursor: pointer;
    background: none;
    border: none;
    isolation: isolate;
}

.sketchy-btn::before,
.text-link::before {
    content: '';
    position: absolute;
    inset: -2px -10px;
    background: url('../blue-tape.png') center center / 100% 100% no-repeat;
    z-index: -1;
    opacity: 0.5;
    transform: rotate(-1.5deg) scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
}

.sketchy-btn:hover::before,
.text-link:hover::before {
    transform: rotate(-1.5deg) scaleX(1);
}

/* ── Section divider ───────────────────────────────────────────────────── */

.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(50%);
    z-index: 20;
    line-height: 0;
    pointer-events: none;
}

.section-divider--top {
    bottom: auto;
    top: 0;
    transform: translateY(-50%);
}

.section-divider img {
    width: 100%;
    display: block;
}

/* ── Feature section ────────────────────────────────────────────────────── */

.feature {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: url('../blue-background.png') center center / cover no-repeat;
    padding: 100px 6vw;
    gap: 5vw;
}



.slideshow-col {
    flex: 0 0 38%;
}

.slideshow-frame {
    position: relative;
    display: inline-block;
    width: 100%;
}

.slideshow-img {
    width: 100%;
    height: auto;
    display: block;
}


.feature-text {
    flex: 1;
    min-width: 0;
}

/* ── Photo Marquee ──────────────────────────────────────────────────────── */

/* ── Photo Marquee ──────────────────────────────────────────────────────── */

.marquee-strip {
    width: 100%;
    overflow: hidden;
    background: url('../blue-background.png') center center / cover no-repeat;
    padding: 56px 0;
    border-top: 1px solid rgba(127, 64, 23, 0.1);
    border-bottom: 1px solid rgba(127, 64, 23, 0.1);
}

.marquee-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.marquee-track img {
    height: 220px;
    width: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}



/* ── About Preview ──────────────────────────────────────────────────────── */

.about-preview {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background: url('../yellow-stripes.png') center center / cover no-repeat;
    padding: 100px 6vw;
    gap: 5vw;
}

.about-img-col {
    flex: 0 0 38%;
}

.about-portrait {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-col {
    flex: 1;
    min-width: 0;
}

.about-text-col .display-heading {
    letter-spacing: 0.02em;
}

.about-preview .text-link::before,
.about-preview .sketchy-btn::before,
.hero .text-link::before,
.hero .sketchy-btn::before,
.cta .text-link::before,
.cta .sketchy-btn::before,
.feature .text-link::before,
.feature .sketchy-btn::before {
    background: url('../yellow-tape.png') center center / 100% 100% no-repeat;
    opacity: 1;
}

/* ── CTA ────────────────────────────────────────────────────────────────── */

.cta {
    min-height: 60vh;
    background: url('../blue-background.png') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
}

.cta .display-heading { max-width: 1200px; }
.cta .body-text        { max-width: 480px; font-size: 22px; }

.cta-btn {
    font-family: 'Butterclub', sans-serif;
    font-size: 22px;
    color: #5F361E;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 6px 32px;
    display: inline-block;
    isolation: isolate;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: -2px -10px;
    background: url('../yellow-tape.png') center center / 100% 100% no-repeat;
    z-index: -1;
    opacity: 1;
    transform: rotate(-1.5deg) scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
}

.cta-btn:hover::before {
    transform: rotate(-1.5deg) scaleX(1);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -50px;
    z-index: 10;
}

.footer-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    transform: scaleY(-1);
}

.footer-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-col--right {
    text-align: right;
    align-items: flex-end;
}

.footer-links {
    flex: 1;
    justify-content: center;
}

.footer-brand {
    font-family: 'Girthquake', serif;
    font-size: 22px;
    color: #5F361E;
    margin: 0;
}

.footer-brand-logo {
    height: 34px;
    width: auto;
    display: block;
    align-self: flex-start;   /* don't let the flex column stretch it */
    flex: none;
}

.footer-location,
.footer-copy {
    font-family: 'Butterclub', sans-serif;
    font-size: 13px;
    color: #5F361E;
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.footer-links a {
    font-family: 'Butterclub', sans-serif;
    font-size: 16px;
    color: #5F361E;
    text-decoration: none;
    padding: 3px 8px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

.footer-socials {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.footer-social {
    font-family: 'Butterclub', sans-serif;
    font-size: 16px;
    color: #5F361E;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.footer-social:hover { opacity: 1; }

/* ── Instagram section ──────────────────────────────────────────────────── */

.insta-section {
    background: url('../yellow-stripes.png') top center / 100% auto repeat-y;
    background-color: #EBEBE4;
    padding: 70px 6vw 90px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.insta-handle {
    font-family: 'Butterclub', sans-serif;
    font-size: 18px;
    color: #5F361E;
    margin: 0 0 40px;
    opacity: 0.6;
}

.insta-handle a {
    color: inherit;
    text-decoration: none;
}

.insta-handle a:hover {
    opacity: 0.8;
}

.insta-feed {
    max-width: 1100px;
    margin: 0 auto;
}

.insta-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    border: 1.5px dashed rgba(95, 54, 30, 0.25);
    border-radius: 4px;
}

.insta-placeholder p {
    font-family: 'Butterclub', sans-serif;
    font-size: 16px;
    color: #5F361E;
    opacity: 0.4;
    margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .about-preview {
        padding: 80px 5vw;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .site-nav { height: 58px; }

    .feature {
        flex-direction: column;
        padding: 64px 28px;
        gap: 36px;
        min-height: unset;
    }

    .slideshow-col {
        flex: none;
        width: 68%;
        max-width: 300px;
        margin: 0 auto;
    }

    .feature-text {
        text-align: center;
    }

    .marquee-track img {
        height: 180px;
    }

    .about-preview {
        flex-direction: column;
        padding: 64px 28px;
        gap: 36px;
        min-height: unset;
    }

    .about-img-col {
        flex: none;
        width: 70%;
        max-width: 300px;
        margin: 0 auto;
        order: 2;
    }

    .about-text-col {
        text-align: center;
        order: 1;
    }

    .cta {
        padding: 64px 28px;
    }

    .hero-logo {
        max-width: 220px;
        width: 65vw;
    }

    .site-footer {
        height: auto;
        min-height: 160px;
        margin-top: -30px;
    }

    .footer-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .footer-content {
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 28px 6vw 20px;
        text-align: center;
    }

    .footer-col,
    .footer-col--right {
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2px 12px;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-img-col {
        width: 84%;
    }

    .display-heading {
        font-size: clamp(1.5rem, 7vw, 2.4rem);
    }

    .footer-links a {
        font-size: 11px;
        padding: 2px 6px;
    }

    .footer-brand {
        font-size: 13px;
    }

    .footer-brand-logo {
        height: 26px;
    }

    .footer-copy,
    .footer-social {
        font-size: 10px;
    }
}

@media (min-width: 1800px) {
    .display-heading {
        font-size: clamp(3.2rem, 3vw, 5.5rem);
    }

    .body-text {
        font-size: 24px;
    }

    .cta .body-text {
        font-size: 26px;
        max-width: 640px;
    }

    .site-nav {
        height: 80px;
        padding: 0 5vw;
    }

    .nav-link {
        font-size: 18px;
    }

    .hamburger {
        font-size: 18px;
    }

    .feature {
        padding: 120px 8vw;
        gap: 8vw;
    }

    .slideshow-col {
        flex: 0 0 34%;
    }

    .marquee-track img {
        height: 300px;
    }

    .marquee-strip {
        padding: 72px 0;
    }

    .about-preview {
        padding: 120px 8vw;
        gap: 8vw;
    }

    .cta {
        padding: 120px 40px;
    }

    .cta-btn {
        font-size: 28px;
    }

    .insta-section {
        padding: 100px 6vw 120px;
    }

    .insta-feed {
        max-width: 1600px;
    }

    .site-footer {
        margin-top: -60px;
    }
}

