/* --- 1. Font Imports & Global Styles --- */

/* Importing the custom fonts used on your Wix site */
@font-face {
    font-display: block;
    font-family: 'Nimbus-Sans-TW01Con';
    src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/8fb1090e-b4d0-4685-ac8f-3d0c29d60130.woff") format("woff");
}
@font-face {
    font-display: block;
    font-family: 'Mr De Haviland';
    src: url("//static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/mrdehaviland/v8/OpNVnooIhJj96FdB73296ksbOg3F60P3NilA.woff2") format('woff2');
}
@font-face {
    font-display: block;
    font-family: 'DIN-Next-W01-Light';
    src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/bc176270-17fa-4c78-a343-9fe52824e501.woff") format("woff");
}

/* Defining global styles for the page */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Nimbus-Sans-TW01Con', sans-serif;
    background-color: #FFFFFF; /* Page background color */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- 2. Header and Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 77px;
    background-color: #FFFFFF;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container {
    width: 980px;
    display: flex;
    /* This is the changed line: it centers the navigation block */
    justify-content: center; 
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 30px; /* Increased gap for better spacing */
}

.nav-link {
    font-size: 18px;
    color: #333333;
    text-decoration: none;
    padding: 10px 5px;
    border-top: 1px solid transparent;
    transition: color 0.4s ease, border-top-color 0.4s ease;
    text-align: center; /* Ensures text inside is centered */
}

.nav-link:hover {
    color: #E2705A; 
    border-top: 4px solid #E2705A;
}

.nav-link.nav-link-selected {
    color: #333333;
    border-top: 4px solid #333333;
}

/* --- 3. Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 795px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the area without distortion */
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.8);
    border: 3px solid #333333;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 664px;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-family: 'Mr De Haviland', cursive;
    font-weight: 400;
    font-size: 80px;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 10px 0;
}

.hero-content .separator {
    border: 0;
    border-top: 3px solid #000000;
    width: 391px;
    margin: 15px auto;
}

.hero-sub-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.hero-divider {
    width: 3px;
    height: 106px;
    background-color: #000000;
}

.hero-text-left h2 {
    font-size: 23px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
}

.hero-text-right img {
    display: block;
}

.menu-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    border: 3px solid #000000;
    font-size: 23px;
    text-decoration: none;
    padding: 10px 30px;
    margin-top: 25px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.menu-button:hover {
    background-color: transparent;
    color: #000000;
}

/* --- 4. Footer --- */
.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 0;
    width: 100%;
}

.site-footer p {
    font-family: 'DIN-Next-W01-Light', sans-serif;
    font-size: 12px;
    color: #333333;
    margin: 0;
}