/*
Theme Name: Ultra Minimal Theme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: An ultra minimal WordPress theme with three editable image blocks
Version: 1.2
*/

@import url('https://fonts.googleapis.com/css2?family=Forum&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: "Forum", serif;
    background-color: beige;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
    color: #313128;
}

.texture {
    background-image: url('https://app.formcrafts.com/images/textures/pastel.jpg');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.08;
}

header {
    width: 100%;
    height: 65vh;
    padding: 0px;
    position: relative;
    overflow: hidden;
}
header.theme-color div.navs {
    background: #e9e9ce;
}
header.theme-color .hamburger-line {
    background-color: black;
}
header.theme-color .top-left-navigation li a,
header.theme-color .top-right-navigation li a,
header.theme-color .site-title a {
    transition: color 0.3s linear;
    color: black;
}
header.theme-color .site-title {
    text-shadow: none;
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.header-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body:not(.home) header .page-title {
    text-shadow: none;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

main.front-page {
    width: 100vw;
    position: relative;
}

.hero-section {
    position: relative;
    height: 30rem;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://via.placeholder.com/1920x1080/4a5568/ffffff?text=Primary+Splash+Image') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.content-section {
    position: relative;
    z-index: 10;
}

main.main-other {
    margin: 48px auto;
    width: 100%;
    max-width: min(48rem, 100%);
    padding: 0 32px;
    font-size: 18px;
}

main.front-page {
    margin: 48px auto;
    max-width: 48rem;
    padding: 0 32px;
}

main.front-page .text-sections {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    text-align: center;
    white-space: pre-line;
}

main.front-page .large-text {
    font-size: 2.25em;
    margin-bottom: 1.25rem;
}
main.front-page .description-text {
    font-size: 1.6em;
}

footer {
    width: 100%;
    font-size: 0.925em;
    text-align: center;
    background: #9a5745;
    color: #dbc2bc;
    background-image: url('https://app.formcrafts.com/images/textures/pastel.jpg');
    background-size: cover;
}

.footer-content {
    padding: 48px 24px;
    background-color: rgba(154, 87, 69, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
}

.footer-site-name {
    font-size: 2.5em;
    font-weight: 500;
    color: inherit;
    text-decoration: none;
}

.footer-logo {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.footer-logo > img {
    opacity: 0.70;
}

.footer-logo .site-logo {
    max-height: 72px;
    width: auto;
}

.footer-navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 0;
}

.footer-navigation ul li {
    display: inline;
    margin: 0;
}

.footer-navigation ul li::after {
    content: '|';
    padding: 6px 0;
    margin: 0 0;
    opacity: 0.25;
}

.footer-navigation ul li:last-child::after {
    content: '';
    margin: 0;
}

.footer-navigation ul li a {
    text-decoration: none;
    color: inherit;
    padding: 6px 10px;
    font-size: 0.925em;
    transition: color 0.2s ease;
}

.footer-navigation ul li a:hover {
    color: white;
}

.footer-text span:not(:last-child)::after {
    content: '|';
    padding: 6px 0;
    margin: 0 0;
    opacity: 0.25;
}

.footer-text a {
    color: inherit;
    text-decoration: none;
}

.site-branding {
    height: 4rem;
}

.font-accent {
    font-family: "Forum", 'Times New Roman', Times, serif;
}

.site-title {
    font-size: 2em;
    height: 4rem;
    margin: 0;
    font-weight: 600;
    font-style: normal;
    transition: all 0.1s ease;
    text-align: center;
    transform: translate3d(-50%, 0rem, 0px) scale(1);
    
    position: fixed;
    top: 0;
    left: 50%;    
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .site-title {
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .home .site-title {
        transform: translate3d(-50%, 30vh, 0px) scale(3.5);
        z-index: 100;
    }
}

.site-title a {
    text-decoration: none;
    color: white;
}

.page-title {
    width: min(48rem, 100%);
    font-size: 4.5em;
    margin: 1rem 0;
    padding: 0 32px;
    font-weight: 800;
    font-style: normal;
    text-align: left;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 100;
}

.site-branding {
    z-index: 1003;
    position: relative;
}

div.navs {
    font-family: system-ui, Helvetica, Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 24px;
    font-weight: 420;
    font-size: 15px;
    z-index: 1002;    
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    background-color: rgba(0,0,0,.2);
    color: white;
}

.top-left-navigation {
    height: 4rem;
    display: flex;
    align-items: center;
}

.top-right-navigation {
    height: 4rem;
    display: flex;
    align-items: center;
}

/* Legacy nav styling for backward compatibility */
nav {
    display: flex;
    align-items: center;
}

.top-left-navigation ul,
.top-right-navigation ul,
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top-left-navigation ul li,
.top-right-navigation ul li {
    display: inline;
    margin: 0;
}

.top-left-navigation ul li a,
.top-right-navigation ul li a {
    color: inherit;
    text-decoration: none;
    padding: 0 14px;
    -webkit-text-stroke: 0.15px;
}

.top-left-navigation ul li a:hover,
.top-right-navigation ul li a:hover {
    text-decoration: underline;
    -webkit-text-stroke: 0.4px;
}

.top-left-navigation ul li.current_page_item a,
.top-right-navigation ul li.current_page_item a,
.top-left-navigation ul li.current-lang a,
.top-right-navigation ul li.current-lang a {
    text-decoration: underline;
    -webkit-text-stroke: 0.4px;
}

.image-blocks {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 28rem;
    gap: 4px;
    max-width: 1600px;
    padding: 0;
    margin: 48px auto;
    align-items: stretch;
}

.image-block {
    display: flex;
    text-align: center;
    flex: 1;
    position: relative;
}

.image-block .image-text-inside {
    width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}

.image-block .arrow-right {
    width: 28px;
    height: 28px;
}

.image-block a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
}

.image-block img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.image-block .image-text {
    display: flex;
    position: absolute;
    bottom: 0%;
    right: 0%;
    left: 0%;
    top: 0%;
    padding: 18px 32px;
    color: white;
    font-size: 2em;
    align-items: end;
    justify-content: start;
    pointer-events: none;
    text-align: left;
    text-wrap: balance;
    line-height: 1.45;
    opacity: 0.95;
    background-color: rgba(0, 0, 0, 0.20);
    transition: opacity 0.3s ease;
}
.image-block:hover .image-text {
    background-color: rgba(0, 0, 0, 0.30);
    opacity: 1;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 21px;
    height: 2.5px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 20px;
    position: relative;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5em;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

.mobile-navigation {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-list li a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 300;
    padding: 10px 20px;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu-list li a:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    header {
        height: 55vh;
    }
    .top-left-navigation,
    .top-right-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
    
    .site-title {
        font-size: 1.6em;
        padding-top: 2px;
        text-shadow: none;
    }

    .home .site-title {
        text-shadow: none;
    }
    
    .page-title {
        font-size: 2.5em;
    }
    nav {
        font-size: 0.825rem;
        font-weight: 400;
        top: 10px;
        left: 10px;
        padding: 8px 12px;
    }
    nav ul li a {
        padding: 0 8px;
    }
    .image-block:hover .image-text {
        display: none;
    }
    .image-blocks {
        gap: 2px;
        height: 24rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .image-blocks .image-block:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .image-block .image-text {
        font-size: 1.25em;
        padding: 12px 16px;
        opacity: 1;
    }
    .image-block .arrow-right {
        width: 20px;
        height: 20px;
    }
    .hero-section {
        height: 70vh;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.75s ease-in forwards;
}

.image-1 { animation-delay: 0.5s; }
.image-2 { animation-delay: 1.5s; }
.image-3 { animation-delay: 1s; }
.image-4 { animation-delay: 2s; }

html .wpbc_container_booking_form .wpbc_booking_form_simple .wpbc__field label {
    line-height: inherit;
}

html .wpbc_container.wpbc_form .wpbc_r_submit button.wpbc_button_light {
    background: #222;
    color: white;
    border: 0px;
}