/* ============================================================
   ABOUT SLIDE — CONTENT ONLY
   Matches the supplied About reference.
   IMPORTANT: no background image is defined here.
============================================================ */

.about-slide {
    position: relative;
    width: 100%;
    height: calc(100vh - 108px);
    min-height: 560px;
    overflow: hidden;
    box-sizing: border-box;
}
/* The duplicate parts/slices */

.sl-content-slice {
	overflow: hidden;
	position: absolute;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	background: #fff;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity : 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
	width: 100%;
	height: 50%;
	left: -200px;
	-webkit-transform: translateY(0%) scale(1);
	-moz-transform: translateY(0%) scale(1);
	-o-transform: translateY(0%) scale(1);
	-ms-transform: translateY(0%) scale(1);
	transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
	top: -200px;
	padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-of-type(2) {
	top: 50%;
	padding: 0px 200px 200px 200px;
}

/* Vertical slice */

.sl-slide-vertical .sl-content-slice {
	width: 50%;
	height: 100%;
	top: -200px;
	-webkit-transform: translateX(0%) scale(1);
	-moz-transform: translateX(0%) scale(1);
	-o-transform: translateX(0%) scale(1);
	-ms-transform: translateX(0%) scale(1);
	transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
	left: -200px;
	padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-of-type(2) {
	left: 50%;
	padding: 200px 200px 200px 0px;
}

/* ============================================================
   ABOUT BACKGROUND
   Background belongs ONLY to .sl-content-slice
============================================================ */
.sl-content-slice {
    overflow: hidden;
    position: absolute;
    box-sizing: content-box;
    background: #fff;
    backface-visibility: hidden;
    opacity: 1;
	 inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/about1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    z-index: 0;
}

/* ------------------------------------------------------------
   INTRO TAB
------------------------------------------------------------ */
.intro-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* ------------------------------------------------------------
   ABOUT TAB
------------------------------------------------------------ */
.about-tab {
    position: absolute;
    top: 0;
    left: 5.55%;
    width: 88px;
    height: 142px;
    box-sizing: border-box;
    padding-top: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background: #ff4b1f;
    color: #fff;
    text-align: center;
    z-index: 20;
    font-family: inherit;
}

.about-number {
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
}

.about-line {
    width: 40px;
    height: 1px;
    margin: 12px 0 11px;
    background: #fff;
}

.about-label {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 2px;
    font-weight: 700;
}

/* ------------------------------------------------------------
   MAIN CONTENT FRAME
------------------------------------------------------------ */
.about-content {
    position: absolute;
    left: 13.85%;
    right: 10.25%;
    top: 17.5%;
    bottom: 16.5%;
    width: auto;
    height: auto;
    padding: 0;

    display: grid;
    grid-template-columns: minmax(0, 48%) 1px minmax(0, 52%);
    align-items: stretch;

    background: transparent;
    overflow: visible;
    z-index: 10;
    box-sizing: border-box;
}
/* Background image */
.about-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/about1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
/* ------------------------------------------------------------
   LEFT / STORY
------------------------------------------------------------ */
.about-main {
    width: auto;
    padding: 0 8.5% 0 0;
    box-sizing: border-box;
    min-width: 0;
}

.about-main h2 {
    margin: 0;
    padding: 0;

    color: #f4f4f4;
    font-size: clamp(58px, 4.55vw, 76px);
    line-height: .92;
    font-weight: 300;
    font-style: italic;
    letter-spacing: -2.5px;
}
.about-main h2 span {
    color: #ff4b1f;
}

.about-accent {
    position: relative;
    width: 64px;
    height: 3px;
    margin: 17px 0 25px;
    background: #ff4b1f;
    box-shadow: 0 0 7px rgba(255, 75, 31, .9),
                0 0 18px rgba(255, 75, 31, .55);
}

.about-accent::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 110px;
    height: 10px;
    transform: translateY(-50%);
    background: rgba(255, 75, 31, .30);
    filter: blur(8px);
    pointer-events: none;
}

.about-story {
    max-width: 720px;
}

.about-story p {
    margin: 0 0 13px;

    color: #e9e9e9;
    font-size: clamp(14px, .96vw, 17px);
    line-height: 1.48;
    font-weight: 300;
}

.about-story p:last-child {
    margin-bottom: 0;
}

/* ------------------------------------------------------------
   CENTER DIVIDER
------------------------------------------------------------ */
.about-divider {
    position: relative;
    width: 1px;
    height: 100%;
    margin: 0;
    background: rgba(255, 75, 31, .75);
    z-index: 12;
    box-sizing: border-box;
    box-shadow: 0 0 3px rgba(255, 75, 31, .8);
}

.about-divider::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 34px;
    transform: translate(-50%, -50%);
    background: rgba(255, 75, 31, .65);
    filter: blur(8px);
    z-index: -1;
}

.about-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-50%, -50%) rotate(45deg);
    border-right: 2px solid #ff7a43;
    border-top: 2px solid #ff7a43;
    background: transparent;
    box-shadow: 0 0 8px rgba(255, 75, 31, .9);
}

/* ------------------------------------------------------------
   RIGHT / DETAILS
------------------------------------------------------------ */
.about-details {
    width: auto;
    padding: 3.5% 0 0 8.2%;
    box-sizing: border-box;
    min-width: 0;
}

.about-detail-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    column-gap: 8.5%;
    row-gap: 9%;
}

.about-box {
    min-width: 0;
    display: block;
    box-sizing: border-box;
}

.about-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 0 0 10px;
}

.about-icon {
    flex: 0 0 59px;
    width: 59px;
    height: 59px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.30);
    border-radius: 15px;

    color: #ff5a24;
    font-size: 31px;
    line-height: 1;
    font-weight: 400;

    background: rgba(0,0,0,.16);
    text-shadow: 0 0 7px rgba(255,75,31,.5);
}

.about-heading > div:last-child {
    min-width: 0;
    padding-top: 7px;
}

.about-box h3 {
    margin: 0;
    padding: 0;

    color: #ff641f;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
    white-space: nowrap;
}

.heading-sub {
    display: inline-block;
    margin-top: 8px;

    color: #f1f1f1;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 400;
}

.heading-line {
    width: 39px;
    height: 2px;
    margin-top: 11px;
    background: #ff4b1f;
    box-shadow: 0 0 5px rgba(255,75,31,.45);
}

.about-box p,
.about-box ul {
    margin: 0;
    color: #e9e9e9;
    font-size: clamp(14px, .96vw, 17px);
    line-height: 1.48;
    font-weight: 300;
}

.about-box p {
    padding-left: 77px;
    max-width: 360px;
}

.about-box ul {
    padding-left: 77px;
    list-style: none;
}

.about-box li {
    position: relative;
    margin: 0 0 7px;
}
.about-box li::before {
    content: "•";
    position: absolute;
    left: -17px;
    color: #ff4b1f;
}

/* ------------------------------------------------------------
   PAYMENT TYPES
------------------------------------------------------------ */
.payment-types {
    display: grid;
    grid-template-columns: repeat(3, minmax(65px, 1fr));
    gap: 16px;
    padding: 5px 0 0 77px;
    max-width: 390px;
}

.payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #f2f2f2;
    font-size: 14px;
    line-height: 1;
}

.payment strong {
    width: 42px;
    height: 42px;
    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 27px;
    font-weight: 800;
    line-height: 1;
}

.payment .paypal {
    background: linear-gradient(145deg, #0a75c9, #003b87);
    font-style: italic;
}

.payment .cashapp {
    background: #19d64b;
}

.payment .zelle {
    background: #7c35e8;
}

/* Business hours */
.about-box .hours {
    padding-left: 77px;
    margin-top: 2px;
    line-height: 1.55;
}

.about-box .hours span {
    display: inline-block;
    margin-top: 2px;
}

/* ------------------------------------------------------------
   BOTTOM CONTENT GLOW — VERY SUBTLE
------------------------------------------------------------ */
.about-bottom-glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,.16) 100%
    );
    z-index: 5;
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */
@media screen and (max-width: 1200px) {
    .about-content {
        left: 9%;
        right: 7%;
    }

    .about-main {
        padding-right: 6%;
    }

    .about-details {
        padding-left: 6%;
    }

    .about-detail-grid {
        column-gap: 5%;
    }

    .about-heading {
        gap: 12px;
    }

    .about-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }

    .about-box p,
    .about-box ul,
    .about-box .hours,
    .payment-types {
        padding-left: 64px;
    }
}

@media screen and (max-width: 900px) {
    .about-slide {
        height: calc(100vh - 90px);
        min-height: 0;
        overflow-y: auto;
		 z-index: 0; /* <-- FIX */
    }

    .about-tab {
        left: 6%;
        width: 76px;
        height: 120px;
        padding-top: 20px;
    }

    .about-number {
        font-size: 32px;
    }

    .about-label {
        font-size: 11px;
    }

    .about-content {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 145px 7% 40px;
        width: 86%;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-main {
        padding: 0;
    }

    .about-divider {
        width: 100%;
        height: 1px;
    }

    .about-divider::before {
        width: 34px;
        height: 10px;
    }

    .about-divider::after {
        width: 7px;
        height: 7px;
    }

    .about-details {
        padding: 0;
    }

    .about-detail-grid {
        height: auto;
        grid-template-rows: auto;
        row-gap: 35px;
    }
}

@media screen and (max-width: 600px) {
    .about-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-tab {
        left: 5%;
    }

    .about-main h2 {
        font-size: 56px;
    }

    .about-story p,
    .about-box p,
    .about-box ul {
        font-size: 14px;
    }
}
/* Background image */
.about-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/about1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
/* ============================================================
   MODERN SLITSLIDER SLICES (HOME + ABOUT ONLY)
============================================================ */

.sl-content-slice {
    position: absolute;
    overflow: hidden;
    box-sizing: content-box;
    backface-visibility: hidden;
    opacity: 1;
    pointer-events: none;
    z-index: 999;
}

/* Horizontal split (HOME) */
.sl-horizontal .sl-content-slice {
    width: 100%;
    height: 50%;
    left: 0;
    transform: translateY(0) scale(1);
}

.sl-horizontal .sl-content-slice.slice1 {
    top: 0;
    padding: 200px 200px 0 200px;
}

.sl-horizontal .sl-content-slice.slice2 {
    top: 50%;
    padding: 0 200px 200px 200px;
}

/* Vertical split (ABOUT) */
.sl-vertical .sl-content-slice {
    width: 50%;
    height: 100%;
    top: 0;
    transform: translateX(0) scale(1);
}

.sl-vertical .sl-content-slice.slice1 {
    left: 0;
    padding: 200px 0 200px 200px;
}

.sl-vertical .sl-content-slice.slice2 {
    left: 50%;
    padding: 200px 200px 200px 0;
}

/* Slice animation */
.sl-content-slice {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}
.sl-slide-inner {
    position: absolute;   /* same as old SlitSlider */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    box-sizing: border-box;
}
/* ============================================================
   INTRO IMAGE BUCKET SYSTEM (layering + visibility)
============================================================ */

/* Base rule for ALL images inside SlitSlider */
.sl-slide-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Intro slide bucket images (default hidden) */
.bg-intro .sl-slide-inner img {
    opacity: 0;
    z-index: 1; /* base layer */
    transition: opacity 0.4s ease;
}

/* Active bucket (visible) */
.bg-intro .sl-slide-inner img.active {
    opacity: 1;
    z-index: 2; /* above base */
}

/* Fix intro slide being covered by nav-arrows */
.bg-intro #nav-arrows {
    z-index: 1 !important;
}
