/* CSS Custom Properties (Variables) */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    /* Colors */
    --primary-dark: #070707;
    --primary-gray: #677C81;
	--main-font: 'Roboto', sans-serif;
    --font-family-sans: 'Hanken Grotesk', sans-serif;
}

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

* {
    margin: 0;
    padding: 0;
}

html,
body,
span,
div,
p,
h4,
h5,
h6,
a,
ul,
ol,
li {
    font-family: var(--font-family-sans) !important;
    line-height: inherit;
}

h1,
h2,
h3 {
	font-family: var(--main-font) !important;
	line-height: inherit;
}

body {
    background-color: #222629;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}


button,
a,
nav,
.nav,
.menu,
.btn,
.button,
.site-header,
.hero-section,
.hamburger-menu,
.yachts-btn,
.scroll-indicator,
.site-logo,
.menu-overlay,
img,
video,
svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

button,
a,
.btn,
.button,
[role="button"] {
    cursor: pointer;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    color: var(--gray-700);
}

a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

ul,
ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
    color: var(--gray-700);
}

.text-small {
    font-size: var(--text-sm);
}

.text-large {
    font-size: var(--text-lg);
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 600;
}

.text-muted {
    color: var(--gray-500);
}

@media (max-width: 1440px) {
    .container {
        max-width: 1120px;
        margin: 0 auto;
    }
}


/* Vertical Padding Utilities */

/* Small spacing */
.p-5 {
    padding: 5px 0;
}

.p-6 {
    padding: 6px 0;
}

.p-7 {
    padding: 7px 0;
}

.p-8 {
    padding: 8px 0;
}

.p-9 {
    padding: 9px 0;
}

.p-10 {
    padding: 10px 0;
}

.p-15 {
    padding: 15px 0;
}

.p-20 {
    padding: 20px 0;
}

.p-25 {
    padding: 25px 0;
}

.p-30 {
    padding: 30px 0;
}

/* Medium spacing */
.p-40 {
    padding: 40px 0;
}

.p-50 {
    padding: 50px 0;
}

.p-60 {
    padding: 60px 0;
}

.p-70 {
    padding: 70px 0;
}

.p-80 {
    padding: 80px 0;
}

.p-90 {
    padding: 90px 0;
}

.p-100 {
    padding: 100px 0;
}

/* Large spacing */
.p-120 {
    padding: 120px 0;
}

.p-150 {
    padding: 150px 0;
}

.p-180 {
    padding: 180px 0;
}

.p-200 {
    padding: 200px 0;
}

/* Padding Top Only */
.pt-5 {
    padding-top: 5px;
}

.pt-6 {
    padding-top: 6px;
}

.pt-7 {
    padding-top: 7px;
}

.pt-8 {
    padding-top: 8px;
}

.pt-9 {
    padding-top: 9px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-150 {
    padding-top: 150px;
}

.pt-180 {
    padding-top: 180px;
}

.pt-200 {
    padding-top: 200px;
}

/* Padding Bottom Only */
.pb-5 {
    padding-bottom: 5px;
}

.pb-6 {
    padding-bottom: 6px;
}

.pb-7 {
    padding-bottom: 7px;
}

.pb-8 {
    padding-bottom: 8px;
}

.pb-9 {
    padding-bottom: 9px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pb-180 {
    padding-bottom: 180px;
}

.pb-200 {
    padding-bottom: 200px;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .p-mobile-20 {
        padding: 20px 0;
    }

    .p-mobile-30 {
        padding: 30px 0;
    }

    .p-mobile-40 {
        padding: 40px 0;
    }

    .p-mobile-50 {
        padding: 50px 0;
    }

    .pt-mobile-20 {
        padding-top: 20px;
    }

    .pt-mobile-30 {
        padding-top: 30px;
    }

    .pt-mobile-40 {
        padding-top: 40px;
    }

    .pt-mobile-50 {
        padding-top: 50px;
    }

    .pb-mobile-20 {
        padding-bottom: 20px;
    }

    .pb-mobile-30 {
        padding-bottom: 30px;
    }

    .pb-mobile-40 {
        padding-bottom: 40px;
    }

    .pb-mobile-50 {
        padding-bottom: 50px;
    }
}

/* HEADER CSS */
.header-container {
    padding: 0 30px;
}

.site-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-light .yachts-btn {
    color: white;
}

.header-dark .yachts-btn {
    color: #F6FFFF;
}

/* Hamburger Menu */
.hamburger-menu {
    background: none;
    border: none;
    color: white;
    position: relative;
    text-align: center;
}

.header-light .hamburger-line {
    background: #222629;
}

.hamburger-line {
    width: 100%;
    height: 1px;
    background: #F6FFFF;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.logo-image {
    max-height: 30px;
    width: auto;
}

.logo-star {
    font-size: 16px;
    font-weight: 300;
}

.site-logo {
    padding: 27.5px 0px;
}

/* Yachts Button */
.yachts-btn {
    background: none;
    color: white;
    padding: 20px;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

/* ===================================

/* Container must be full height */
.menu-overlay .container-fluid {
    height: 100vh;
    max-width: 100%;
    padding: 0;
}

.menu-overlay .row {
    height: 100vh;
    margin: 0;
}

/* Left side - Navigation */
.menu-nav-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 30px;
    background: #070707;
    position: relative;
}

/* Header section */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    padding: 30px;
}

.menu-logo {
    padding: 15px 0;
}

.menu-logo-image {
    height: auto;
    width: auto;
}

.menu-close {
    background: none;
    border: none;
    color: white;
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
}

/* Main navigation - takes available space */
.menu-main-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 0 30px;
}

.menu-nav {
    list-style: none;
    margin: 0;
}

.menu-nav>li:last-child {
    margin-bottom: 0;
}

.menu-nav>li>a {
    color: #677C81;
    text-decoration: none;
    font-size: 22px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 300;
}

.menu-nav>li:hover>a {
    color: white;
}

/* Footer section */
.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 30px 70px;
}

.menu-footer-logo {
    max-height: 30px;
    width: auto;
}

/* Right side - Image */
.menu-image-side {
    height: 100vh;
    background: #070707;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.menu-yacht-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Menu Image Side */
.menu-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.menu-yacht-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: #888;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .menu-overlay .row {
        flex-direction: column;
    }
    .menu-nav-side {
        height: 60vh;
        padding: 0px 30px;
    }
    .menu-image-side {
        height: 40vh;
        order: -1;
    }
    .menu-yacht-image {
        width: 95%;
        height: 90%;
    }
	
	.menu-nav>li>a {
		font-size: 19px;
		line-height: 28px;
	}
	
	.menu-nav-side {
        height: 60vh;
        padding: 0px 24px;
    }
	.menu-header {
		padding: 24px;
	}
	
	.menu-main-nav {
		padding: 0 24px;
	}
	.menu-footer-logo {
		height: 23px;
	}
	.corp-website a {
		font-size: 13px;
		line-height: 14px;
	}
	.menu-nav-side .menu-footer {
		align-content: space-around;
    	flex-wrap: wrap;
		gap: 28px;
	}
}

@media (max-width: 480px) {
    .menu-overlay .row {
        flex-direction: column;
    }
    .menu-footer {
        flex-wrap: wrap;
        gap: 23px;
    }
	.menu-footer-logo {
		height: 19px;
	}
}