/* ===================================
   K.K.S. LAWN — GALLERY STYLES
   =================================== */

:root {
    --deep:    #0c2016;
    --forest:  #183828;
    --mid:     #285c3a;
    --bright:  #4aaa55;
    --lime:    #8de08a;
    --cream:   #f5f3ec;
    --warm:    #eceadf;
    --white:   #fdfcf8;
    --text:    #1a1c18;
    --text-mid:#3d4437;
}

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

body {
    font-family: "Nunito", sans-serif;
    background: var(--cream);
    color: var(--text);
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
    display: block;
}

/* ---- HEADER ---- */
.header {
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.logo {
    font-family: "DM Serif Text", serif;
    font-size: 26px;
    color: white;
    text-decoration: none;
}

.nav-toggle { display: none; }

.nav-toggle-label {
    font-size: 22px;
    cursor: pointer;
    color: white;
    padding: 6px 8px;
    line-height: 1;
    user-select: none;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--forest);
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.nav-toggle:checked ~ .nav-links { display: flex; }

.nav-links a {
    padding: 14px 24px;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
}

.nav-links a:hover { background: rgba(255,255,255,0.07); }
.nav-cta { color: var(--lime) !important; }

/* ---- PAGE HERO ---- */
.page-hero {
    background-image:
        linear-gradient(155deg, rgba(8,22,13,0.85) 0%, rgba(18,50,28,0.60) 100%),
        url("images/lawn.jpg");
    background-size: cover;
    background-position: center 40%;
    padding: 72px 24px;
    text-align: center;
}

.page-hero h2 {
    font-family: "DM Serif Text", serif;
    font-size: clamp(40px, 8vw, 64px);
    color: white;
    line-height: 1.1;
    margin-bottom: 14px;
}

.page-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-hero-sub a {
    color: var(--lime);
    text-decoration: none;
}

.page-hero-sub a:hover {
    text-decoration: underline;
}

/* ---- GALLERY SECTION ---- */
.gallery-section {
    background: var(--deep);
    padding: 48px 0;
}

.slideshow-wrap {
    width: 100%;
}

.slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    max-height: 70vh;
}

.slideshow-images {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow-images img {
    min-width: 100%;
    width: 100%;
    height: 60vw;
    max-height: 70vh;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.slide-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    border: none;
    font-size: 20px;
    padding: 14px 18px;
    transition: background 0.2s;
    line-height: 1;
    z-index: 10;
    border-radius: 4px;
}

.slide-btn:hover { background: rgba(0,0,0,0.75); }

.prev { left: 12px; }
.next { right: 12px; }

/* ---- SLIDE DOTS ---- */
.slide-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 18px 0 4px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--lime);
    transform: scale(1.3);
}

/* ---- CTA STRIP ---- */
.cta-strip {
    background: var(--forest);
    padding: 32px 24px;
}

.cta-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.cta-strip p {
    font-family: "DM Serif Text", serif;
    font-size: 22px;
    color: white;
}

.btn-primary {
    background: var(--mid);
    color: white;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.18s, transform 0.15s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--bright);
    transform: translateY(-1px);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--deep);
    color: white;
    padding: 48px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h3 {
    font-family: "DM Serif Text", serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.footer-col h4 {
    font-family: "Nunito", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 10px;
    text-align: left;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    text-decoration: none;
    display: block;
    transition: color 0.15s;
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.author {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    text-align: center;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (min-width: 768px) {
    .header { padding: 16px 48px; }
    .nav-toggle-label { display: none; }

    .nav-links {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 2px;
        align-items: center;
    }

    .nav-links a {
        padding: 8px 14px;
        border-bottom: none;
        border-radius: 6px;
        font-size: 14px;
    }

    .nav-links a:hover { background: rgba(255,255,255,0.1); }

    .cta-strip .container {
        flex-direction: row;
        justify-content: center;
        gap: 28px;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
