/* CSS Document */

#page-nav {
    overflow-x: auto;
    box-shadow: 5px 5px 10px rgba(0,0,0,.05);
}

#page-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
}

#page-overview .logo img {
    max-width: 300px;
}

#page-contact .logo img {
    max-width: 300px;
}

.video-fancybox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}
.video-fancybox:hover {
    background: rgba(0, 0, 0, 0.7);
}

#page-gallery .carousel .item picture {
    height: 225px;
}
#page-gallery .carousel .item picture img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.image-box {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.image-box img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.promo-slides-container .item picture {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.promo-slides-container .item picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************************************************** MEDIA QUERRIES ******************************************************************/

/* Phone (landscape) */
@media (min-width: 576px){

	

}

/* Tablet (portrait) */
@media(min-width:768px){

	#page-gallery .carousel .item picture {
        height: 275px;
    }
	
}

/* Tablet (landscape) */
@media(min-width:992px){

	#page-overview .logo img {
        max-width: 250px;
    }

    #page-overview picture,
    #page-overview picture img {
        height: 100%;
    }
    #page-overview picture img {
        object-fit: cover;
    }

    #page-contact .logo img {
        max-width: 250px;
    }

    #page-contact picture,
    #page-contact picture img {
        height: 100%;
    }
    #page-contact picture img {
        object-fit: cover;
    }

    #page-about .content {
        margin-top: -50px;
    }
	
}

/* Desktop */
@media(min-width:1200px){

	#page-nav {
        overflow: hidden
    }

    #page-nav.sticky {
        height: 80px;
    }

    #page-overview .logo img {
        max-width: 300px;
    }

    #page-contact .logo img {
        max-width: 300px;
    }

    #page-gallery .carousel .item picture {
        height: 300px;
    }
	
}

@media(min-width:1400px){

    #page-overview .logo img {
        max-width: 350px;
    }

    #page-contact .logo img {
        max-width: 350px;
    }

    #page-gallery .carousel .item picture {
        height: 325px;
    }
	
}

@media(min-width:1600px){

    #page-overview .logo img {
        max-width: 375px;
    }

    #page-content .logo img {
        max-width: 375px;
    }

    #page-gallery .carousel .item picture {
        height: 350px;
    }
	
}

@media(min-width:1800px){

    #page-overview .logo img {
        max-width: 400px;
    }

    #page-gallery .carousel .item picture {
        height: 425px;
    }

    #page-about .content {
        margin-top: -75px;
    }
	
}

@media(min-width:1900px){

    #page-gallery .carousel .item picture {
        height: 450px;
    }
	
}

@media(min-width:2000px){

    #page-gallery .carousel .item picture {
        height: 475px;
    }
	
}

/* DEMO INDICATOR BANNER */
.demo-banner {
    background: linear-gradient(90deg, #dc2323, #8b0000);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.demo-banner a {
    color: white;
    text-decoration: underline;
}
/* body padding removed - demo banner hidden */

/* CONTACT MODAL STYLES */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.contact-modal-overlay.active {
    display: flex;
}
.contact-modal {
    background: white;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.contact-modal-close:hover {
    opacity: 1;
}

.boat-interest-badge {
    background: #f5f5f5;
    border-left: 4px solid #dc2323;
    padding: 10px 15px;
    margin-bottom: 20px;
    font-size: 14px;
}
.boat-interest-badge strong {
    color: #dc2323;
}