/* ============================================================
   GLOBAL BASE STYLES — CLEAN SWIPER VERSION
   ============================================================ */

/* Custom font */
@font-face {
    font-family: 'AnimalsNormal';
    src: url('fonts/animals-webfont.eot');
    src: url('fonts/animals-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/animals-webfont.woff') format('woff'),
         url('fonts/animals-webfont.ttf') format('truetype'),
         url('fonts/animals-webfont.svg#AnimalsNormal') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* Global reset */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: visible;
    font-family: 'Lato', Calibri, Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Utility */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Main container */
.container {
    width: 100%;
    position: relative;
}

/* Swiper container spacing */
.container.demo-1 {
    width: 100%;
    padding-top: 54px;   /* header height */
}

/* Main content wrapper */
.main {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/* ============================================================
   SWIPER FULLSCREEN SLIDER
   ============================================================ */

.mySwiper {
    width: 100%;
    height: calc(100vh - 108px);
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    height: auto !important;
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

/* ============================================================
   HOME SLIDE — Adaptive Images
   ============================================================ */
.home-slide {
    position: relative;
    height: calc(100vh - 108px);
    overflow: hidden;
}


.home-bg {
    position: absolute;
    inset: 0; /* fills entire slide */
    background-image: url('../images/home_h680.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}




/* ============================================================
   ABOUT SLIDE — Scrollable Content
   ============================================================ */

.slide-content.scrollable {
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding: 40px;
    background: rgba(255,255,255,0.85);
}

.slide-content h2 {
    margin-top: 0;
    font-size: 42px;
    font-weight: bold;
}

.slide-content h3 {
    margin-top: 30px;
    font-size: 24px;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================================
   OTHER SLIDES (Blog, Moodboard, etc.)
   ============================================================ */

.slide-content {
    position: relative;
    z-index: 10;
    padding: 40px;
    color: #fff;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
}
/* ------------------------------------------------------------
   BLOG BOOK
------------------------------------------------------------ */
.blog-book {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 40px;
    padding: 40px;
    height: 100%;
    box-sizing: border-box;
    white-space: nowrap;
}


.blog-book::-webkit-scrollbar {
    height: 10px;
}

.blog-book::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}
.web {
    pointer-events: none;
}

.book-page {
    flex: 0 0 80%;
    scroll-snap-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    box-sizing: border-box;
}

.book-page::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.15), transparent);
    border-radius: 0 12px 12px 0;
}
.blog-slide {
    overflow: visible !important;
    touch-action: auto !important;
}
.blog-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    height: 54px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    box-shadow: 0 0 5px #0003;
}

