/* ============================= */
/* APARTMAN ULTRA OVERRIDE THEME */
/* ============================= */

/* GLOBAL */
body{
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto;
    background:#f6f7f8;
    color:#2c2c2c;
}

/* CONTAINER */
.container{
    max-width:1200px;
}

/* HEADER HERO */
header{
    position:relative;
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url('/images/hero_apartman.jpg');
    background-size:cover;
    background-position:center;
    color:white;
}

header .top-menu{
    background:transparent !important;
    box-shadow:none;
}

/* HERO TITLE */
header h1,
header h2{
    color:white;
}

/* NAV */
.top-menu a{
    color:white;
    font-weight:500;
}

.top-menu a:hover{
    opacity:.8;
}

/* HAMBURGER */
.hamburger{
    color:white;
}

/* BOOKING BUTTON */
#cart-link{
    background:#e6a24b;
    border-radius:30px;
    padding:10px 18px;
}

/* ============================= */
/* CONTENT BLOCKS */
/* ============================= */

.content-top-modules .container,
.content-under-modules .container{
    padding:50px 0;
}

/* APARTMAN CARDS (generic grid) */

main .module,
main article,
main .product,
main .item{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:all .3s ease;
}

main .module:hover,
main article:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* IMAGES */

main img{
    border-radius:6px;
}

/* ============================= */
/* 3 COLUMN SECTION */
/* ============================= */

.three-columns-grid{
    gap:30px;
}

.three-col{
    background:white;
    border-radius:10px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

/* ============================= */
/* BUTTON STYLE */
/* ============================= */

button,
.btn,
input[type=submit]{
    background:#e6a24b;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    color:white;
    font-weight:600;
    cursor:pointer;
}

button:hover{
    background:#d28c35;
}

/* ============================= */
/* FOOTER */
/* ============================= */

#footer{
    background:#1c1c1c;
    color:#ddd;
    padding:50px 0;
}

#footer a{
    color:#e6a24b;
}

/* ============================= */
/* MOBILE */
/* ============================= */

@media(max-width:900px){

.container{
    width:92%;
}

header{
    padding-bottom:40px;
}

.top-menu{
    flex-direction:column;
}

.menu-items{
    background:white;
}

.menu-items a{
    color:#333;
}

}

/* ============================= */
/* SCROLL ANIMATION */
/* ============================= */

.fadein{
    opacity:0;
    transform:translateY(40px);
    transition:all .7s ease;
}

.fadein.visible{
    opacity:1;
    transform:none;
}