/* Combined styles from Blade view, adjusted for static site */
/* Fonts are loaded from index.html to avoid blocking @import issues */

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

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    background: #000; /* Make page background solid black */
    color: #fff;
}

/* Enable scroll snapping only on desktop for crisp section snaps */
@media (min-width: 1024px) {
    /* Desktop: snap on an explicit scroll container for reliability */
    .snap-container {
        height: 100vh;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        overscroll-behavior-y: contain;
    }
    html, body { scroll-behavior: auto; }
    .snap-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: 100vh; /* lock each section to viewport */
    }
    .hero-section { height: 100vh; }
    .contact-map-section, .contact-map-container { min-height: 100vh; }
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; width: 100%; height: 100vh;
    object-fit: cover;
    z-index: 1;
    display: block;
    max-width: 100%;
}

/* Make hero image zoomable so it can be scaled to fill mobile screens */
.hero-bg {
    transform-origin: center center;
    transition: transform 0.6s ease-out;
}
.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; width: 100%; height: 100vh;
    /* reduced overlay so the hero image is more visible */
    background: rgba(0,0,0,0.35);
    z-index: 2;
}
.header {
    position: absolute;
    top: 120px;
    left: 15px;
    z-index: 3;
    color: #fff;
}
.header img, .header-logo-img { max-width: 260px; height: auto; display: block; }
.header-logo {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}
.header-sub {
    color: #ff4c4c;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.2rem;
    margin-top: 0.2em;
}
.nav-icons {
    position: absolute;
    top: 30px; right: 40px;
    z-index: 3;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-icons i {
    font-size: 1.7rem;
    margin-bottom: 2px;
}
.main-content {
    position: absolute;
    z-index: 4;
    max-width: 600px;
    left: 60px;
    top: 300px;
    color: #fff;
    /* desktop: keep content area transparent so hero image shows behind it */
    background: transparent;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0;
}
.main-content h1 {
    color: #ff4c4c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1em;
}
.main-content p {
    font-size: 1.1rem;
    margin-bottom: 2em;
}
.cta-buttons {
    display: flex;
    gap: 20px;
}
.cta-btn {
    background: #ff4c4c;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}
.cta-btn:hover {
    background: #d12f2f;
}
@media (max-width: 800px) {
    .main-content {
        margin-left: 20px;
        margin-top: 120px;
        max-width: 95vw;
    }
    .header, .nav-icons {
        left: 10px;
        right: 10px;
        top: 10px;
    }
}

.snap-container { /* acts as a wrapper; body scrolls */ }
.snap-section {
    scroll-snap-align: start;
    /* Fallbacks for better mobile viewport behavior */
    min-height: 100vh;
}
@supports (min-height: 100svh) {
    .snap-section { min-height: 100svh; }
}
@supports (min-height: 100dvh) {
    .snap-section { min-height: 100dvh; }
}

.why-list li {
    margin-bottom: 2em;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
@supports (min-height: 100svh) {
    .hero-section { min-height: 100svh; }
}
@supports (min-height: 100dvh) {
    .hero-section { min-height: 100dvh; }
}
.scroll-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.split-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}
.split-left {
    flex: 1;
    background: url('../img/Img1.jpg') center/cover no-repeat;
    background-size: cover;
    color: #fff;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
    position: relative;
    z-index: 2;
}
@supports (min-height: 90svh) {
    .split-left { min-height: 90svh; }
}
@supports (min-height: 90dvh) {
    .split-left { min-height: 90dvh; }
}

.split-left::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.split-left > * {
    position: relative;
    z-index: 2;
}
.why-title {
    color: #ff4c4c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2em;
}
.why-list {
    list-style: none;
    padding: 0;
}
.why-list i {
    color: #ff4c4c;
    margin-right: 10px;
}
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    position: relative;
    z-index: 2;
}
.split-top, .split-bottom {
    position: relative;
    flex: none;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    height: 50vh;
    background: url('../img/RightImg2.jpg') center/cover no-repeat;
    background-size: cover;
    position: relative;
}
@supports (height: 50svh) {
    .split-top, .split-bottom { height: 50svh; }
}
@supports (height: 50dvh) {
    .split-top, .split-bottom { height: 50dvh; }
}
.split-bottom::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.split-bottom > .split-label {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 2;
}

.split-top {
    background: url('../img/RightImg.jpg') center/cover no-repeat;
    background-size: cover;
    position: relative;
}
.split-top::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.split-top > .split-label {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 2;
}
.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.split-label {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: right;
    text-shadow: 2px 2px 8px #000;
}
.label-sub {
    font-size: 1.1rem;
    font-weight: normal;
    display: block;
}
.bottom-label {
    top: auto;
    bottom: 30px;
}
@media (max-width: 900px) {
    .split-container {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
    .split-left, .split-right {
        flex: none;
        width: 100%;
        min-height: 50vh;
    }
    .split-label {
        font-size: 1.2rem;
        right: 20px;
    }
    /* Make main content fit flush to left/right and feel "zoomed out" */
    .main-content {
        left: 0 !important;
        right: 0 !important;
        top: 150px;
        padding: 18px;
        max-width: none;
        box-sizing: border-box;
        /* remove the solid black card so hero image shows through */
        background: transparent;
        border-radius: 0;
    }
    .header {
        left: 12px;
    }
    .nav-icons {
        right: 12px;
    }
    /* Hide the top social/find icons on mobile to avoid clutter */
    .nav-icons { display: none !important; }
    .hero-bg {
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        /* scale up on mobile so the image fills the screen */
        transform: scale(1.25);
    }
    /* ensure header logo can't push the page wider on small screens */
    .header img, .header-logo-img { max-width: 180px; height: auto; }
    /* Slightly reduce font sizes for mobile for a more zoomed-out feel */
    .main-content h1 { font-size: 1.6rem; }
    .main-content p { font-size: 1rem; }
    .cta-btn { padding: 12px 20px; font-size: 0.95rem; }
}
.contact-map-section {
    width: 100%;
    min-height: 95vh;
    background: #000;
    color: #fff;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}
.contact-map-container {
    display: flex;
    width: 100%;
    min-height: 95vh;
}
@supports (min-height: 95svh) {
    .contact-map-section, .contact-map-container { min-height: 95svh; }
}
@supports (min-height: 95dvh) {
    .contact-map-section, .contact-map-container { min-height: 95dvh; }
}
.contact-info {
        flex: 0.9575;
    padding: 40px 40px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #000;
}
.contact-title {
  color: #ff4c4c;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 0.5em;
}
.contact-details {
  margin: 2em 0 2em 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 1em 0;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.business-hours {
  margin: 1em 0 2em 0;
  font-size: 1.1rem;
}
.social-icons {
  margin-top: 2em;
  display: flex;
  gap: 20px;
}
.social-icons a {
  color: #fff;
  font-size: 1.7rem;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: #ff4c4c;
}
.map-embed {
        flex: 1;
    min-height: 95vh;
    background: #222;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 900px) {
    .contact-map-container {
        flex-direction: column;
        min-height: auto;
    }
    .contact-info, .map-embed {
        flex: none;
        width: 100%;
        min-height: 50vh;
    }
}

/* Prevent any remaining elements from causing horizontal overflow (exclude hero-bg so it can keep full height) */
img, iframe { max-width: 100%; height: auto; display: block; }

/* Ensure hero image stays full-viewport-height and covers area */
.hero-bg { height: 100vh !important; width: 100% !important; object-fit: cover; }
@supports (height: 100svh) {
    .hero-bg { height: 100svh !important; }
}
@supports (height: 100dvh) {
    .hero-bg { height: 100dvh !important; }
}

/* Guarantee containers use % instead of viewport units on mobile */
.snap-container, .snap-section, .split-container, .contact-map-container { width: 100%; }
