/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Oxygen', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: #0A4254;
    background-color: #FFFFFF;
}
a { color: #6b6b6b; text-decoration: none; }
a:hover { color: #000000; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
p { margin-bottom: 0.8em; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rufina', serif;
    font-weight: 400;
    line-height: initial;
    margin-bottom: 0.7em;
    color: #0A4757;
}
h1 { font-size: 24px; }
h2 { font-size: 22px; }
h3 { font-size: 20px; }

/* Page Wrapper */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255,255,255,0.45);
    -webkit-box-shadow: 0 0 5px rgba(20,20,20,0.7);
    box-shadow: 0 0 5px rgba(20,20,20,0.7);
    position: relative;
}

/* Header / Keyvisual */
#head-wrapper { position: relative; }
.keyvisual {
    position: relative;
    height: 400px;
    overflow: visible;
}
.slideshow {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 3s ease;
}
.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

/* Logo */
.logo-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}
.logo-img {
    height: 150px;
    width: auto;
}

/* Navigation */
.navigation-wrapper {
    position: absolute;
    bottom: 211px;
    left: -20px;
    right: -20px;
    z-index: 10;
    background-color: rgba(5,63,78,0.9);
    padding: 0 20px;
    -webkit-box-shadow: 0 4px 7px -4px #444;
    box-shadow: 0 4px 7px -4px #444;
}
.navigation-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    border-bottom: 15px solid rgba(5,63,78,0.53);
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
}
.navigation-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 0;
    border-bottom: 15px solid rgba(5,63,78,0.53);
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
}
.main-nav { display: flex; align-items: center; justify-content: center; }
.main-navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    justify-content: center;
}
.main-navigation li a {
    display: block;
    padding: 16px 10px;
    color: #FFFFFF;
    font-family: 'Oxygen', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}
.main-navigation li a:hover,
.main-navigation li.cm_current a {
    color: rgba(5,63,78,0.53);
    background-color: #FFFFFF;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* Title Wrapper */
.title-wrapper {
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    z-index: 10;
    background-color: rgba(5,63,78,0.9);
    color: #FFFFFF;
    text-align: center;
    padding: 12px 20px;
}
.title-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    border-bottom: 15px solid rgba(5,63,78,0.53);
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
}
.title-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 0;
    border-bottom: 15px solid rgba(5,63,78,0.53);
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
}
.title-wrapper .title {
    font-family: 'Kaushan Script', sans-serif;
    font-size: 48px;
    line-height: 1.2;
}
.title-wrapper .subtitle {
    font-family: 'Rufina', serif;
    font-size: 22px;
    margin-top: 4px;
}

/* Content Area */
#container-content {
    display: flex;
    flex-wrap: wrap;
}
#content-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
}
.content-main {
    flex: 1;
    min-width: 0;
    padding-right: 30px;
    color: #0A4254;
}
.content-main h1, .content-main h2, .content-main h3 {
    color: #0A4757;
}

/* Sidebar */
#content-sidebar {
    width: 280px;
    border-left: 1px solid #0E4B57;
    padding-left: 20px;
    color: #0A4254;
}
#content-sidebar a { color: #0A4254; }
#content-sidebar h1, #content-sidebar h2, #content-sidebar h3 { color: #0A4757; }
.sidebar-section { margin-bottom: 20px; }
.sidebar-section img {
    width: 100%;
    cursor: pointer;
}
.sidebar-section img + span {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}
.sidebar-btn {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 10px 15px;
    width: 230px;
    max-width: 100%;
    margin: 10px auto;
    color: #fff !important;
    background-color: rgba(40,31,209,1);
    border: 1px solid rgba(0,0,0,1);
    text-decoration: none;
    transition: opacity 0.3s;
}
.sidebar-btn:hover { opacity: 0.85; }

/* Footer */
#footer-wrapper {
    background-color: rgba(5,63,78,0.53);
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 30px;
}
#footer-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    border-bottom: 15px solid rgba(5,63,78,0.53);
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
}
#footer-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    right: 0;
    border-bottom: 15px solid rgba(5,63,78,0.53);
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
}
#footer-wrapper a { color: #FFFFFF; }
.footer-title {
    font-family: 'Kaushan Script', sans-serif;
    font-size: 36px;
}

/* Booking Buttons */
.booking-btn {
    display: inline-block;
    border-radius: 15px;
    border: 1px solid rgba(255,0,0,1);
    background-color: rgba(0,12,255,1);
    padding: 15px 15px;
    width: 250px;
    font-size: 16px;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.3s;
    margin-bottom: 10px;
}
.booking-btn:hover {
    box-shadow: inset 0px 0px 0px 1px rgba(255,0,0,1);
}

/* Smart Access */
.smart-access-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(5,63,78,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}
.smart-access-button:hover { transform: scale(1.1); }
.smart-access-button i { color: #fff; font-size: 20px; }
.smart-access-menu {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 8px;
}
.smart-access-menu.active { display: flex; }
.smart-access-menu .tile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(5,63,78,0.95);
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.smart-access-menu .tile:hover { transform: translateX(-5px); }
.smart-access-menu .tile i { font-size: 16px; }
.smart-access-menu .tile span { font-size: 14px; white-space: nowrap; }

/* Galerie Images */
.galerie-image {
    margin: 0 0 15px 15px;
    cursor: pointer;
    max-width: 45%;
}
.galerie-image.float-right {
    float: right;
}
.galerie-image img {
    display: block;
    width: 100%;
    border-radius: 2px;
    transition: opacity 0.3s;
}
.galerie-image img:hover { opacity: 0.9; }
.galerie-caption {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
    text-align: center;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* FAQ Accordion */
.faq-accordion {
    margin: 15px 0 25px;
}
.faq-item {
    border: 1px solid rgba(10,66,84,0.2);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: rgba(5,63,78,0.05);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0A4254;
    transition: background 0.3s;
}
.faq-question:hover {
    background: rgba(5,63,78,0.1);
}
.faq-question i {
    font-size: 12px;
    transition: transform 0.3s;
    color: #0A4757;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 14px 18px;
}
.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #333333;
    margin: 0;
    line-height: 1.6;
}

/* Social Bookmarks */
.social-bookmarks {
    display: flex;
    list-style: none;
    gap: 16px;
    padding: 10px 0;
    margin: 0;
    justify-content: center;
}
.social-bookmarks li a {
    font-size: 32px;
    text-decoration: none;
    transition: opacity 0.3s;
}
.social-bookmarks li a:hover { opacity: 0.7; }

/* Contact Form */
.contact-form-wrapper {
    background: #f9f9f9;
    border: 1px solid rgba(10,66,84,0.2);
    border-radius: 4px;
    padding: 25px;
    margin: 20px 0;
}
.contact-form-wrapper .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.contact-form-wrapper .form-group {
    flex: 1;
}
.contact-form-wrapper .form-group.full-width {
    flex: 0 0 100%;
}
.contact-form-wrapper label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #0A4254;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    border: 1px solid rgba(10,66,84,0.45);
    color: #0A4254;
    border-radius: 2px;
    padding: 11px 12px;
    background-color: rgba(10,66,84,0.03);
    font-family: 'Oxygen', sans-serif;
    font-size: 14px;
    transition: border 0.3s, box-shadow 0.3s;
}
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: 0;
    border: 1px solid #0A4254;
    box-shadow: 0 0 6px rgba(10,66,84,0.4);
}
.contact-form-wrapper textarea { resize: vertical; }
.btn-submit {
    background-color: rgba(10,66,84,0.08);
    border: 1px solid rgba(10,66,84,0.35);
    color: #0A4254;
    padding: 10px 20px;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Oxygen', sans-serif;
    font-size: 14px;
    box-shadow: 0 3px 3px -2px rgba(10,66,84,0.5);
    transition: transform 0.1s, box-shadow 0.2s;
}
.btn-submit:hover { border-color: rgba(10,66,84,0.8); }
.btn-submit:active { transform: translateY(2px); box-shadow: 0 2px 3px -2px rgba(10,66,84,0.4); }

/* Responsive */
@media only screen and (max-width: 1023px) {
    .keyvisual { height: auto; min-height: 200px; }
    .slideshow { position: relative; height: 200px; }
    .navigation-wrapper {
        position: absolute;
        top: 10px;
        right: 10px;
        left: auto;
        bottom: auto;
        background-color: transparent;
        z-index: 20;
        box-shadow: none;
        padding: 0;
    }
    .navigation-wrapper::before,
    .navigation-wrapper::after { display: none; }
    .title-wrapper {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
    }
    .title-wrapper::before,
    .title-wrapper::after { display: none; }
    .title-wrapper .title { font-size: 26px; }
    .nav-toggle { display: block; }
    .main-nav {
        position: relative;
        flex-direction: column;
        align-items: flex-end;
    }
    .main-navigation {
        display: none;
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        background-color: rgba(5,63,78,0.95);
        z-index: 30;
    }
    .main-navigation.active { display: flex; }
    .main-navigation li a {
        border-top: 1px solid rgba(255,255,255,0.2);
        padding: 12px 20px;
    }
    .main-navigation li:first-child a { border-top: 0; }
    .main-navigation li.cm_current a {
        color: #FFFFFF;
        background-color: rgba(5,63,78,0.7);
    }
    #content-wrapper { flex-direction: column; }
    .content-main { padding-right: 0; margin-bottom: 30px; }
    #content-sidebar {
        width: 100%;
        border-left: 0;
        border-top: 1px solid #0E4B57;
        padding-left: 0;
        padding-top: 20px;
    }
    .contact-form-wrapper .form-row { flex-direction: column; gap: 10px; }
    .galerie-image { max-width: 100%; float: none !important; margin: 15px 0; }
    #footer-wrapper { margin-left: 0; margin-right: 0; }
}
@media only screen and (max-width: 767px) {
    .logo-img { height: 70px; }
    .slideshow { height: 180px; }
    .title-wrapper .title { font-size: 20px; }
    .booking-btn { width: 100%; }
}
