/* ===================================
   Dayz North Coast - Structural Styles Only
   Colors, fonts, sizes → managed by theme.json
   This file: transitions, hover, positioning only
   =================================== */

/* html scroll-behavior + scroll-padding-top → theme.json styles.css */

/* RTL base */
.dayz-landing-page {
    direction: rtl;
    text-align: right;
}

/* Section tag pill shape */
.dayz-section-tag {
    display: inline-block;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Centered section headers */
.dayz-seo-header {
    text-align: center;
}

/* ---- HERO FORM (structural only) ---- */
.dayz-hero-form {
    backdrop-filter: blur(24px);
    border-radius: 24px;
}

/* Contact Form 7 inside hero */
.dayz-hero-form .wpcf7 input[type="text"],
.dayz-hero-form .wpcf7 input[type="email"],
.dayz-hero-form .wpcf7 input[type="tel"],
.dayz-hero-form .wpcf7 textarea {
    width: 90%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 14px 18px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    text-align: right;
    margin-bottom: 12px;
}

.dayz-hero-form .wpcf7 input::placeholder,
.dayz-hero-form .wpcf7 textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.dayz-hero-form .wpcf7 input:focus,
.dayz-hero-form .wpcf7 textarea:focus {
    border-color: var(--wp--preset--color--gold);
    background: rgba(255, 255, 255, 0.12);
}

.dayz-hero-form .wpcf7 label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

.dayz-hero-form .wpcf7 input[type="submit"] {
    width: 100%;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: block;
    transition: background 0.25s, transform 0.25s;
    height: 50px;
    font-size: 1rem;
    background-color: rgb(113, 223, 3);


}

.dayz-hero-form .wpcf7 input[type="submit"]:hover {
    transform: translateY(-1px);
}

.dayz-hero-form .wpcf7-response-output {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.dayz-form-group {
    margin-bottom: 16px;
}

.dayz-form-group label {
    display: block;
    margin-bottom: 6px;
}

.dayz-form-group input {
    width: 100%;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    text-align: right;
}



/* Highlight bullet dots */
.dayz-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dayz-highlight-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wp--preset--color--gold);
    flex-shrink: 0;
}

/* ---- ABOUT (structural) ---- */
.dayz-about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.dayz-about-image img,
.dayz-about-image .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dayz-about-image:hover img {
    transform: scale(1.03);
}

.dayz-about-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    border-radius: 16px;
}

.dayz-stat-item {
    text-align: center;
}

/* ---- CARDS hover (structural) ---- */
.dayz-card {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dayz-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: var(--wp--preset--color--gold);
    transition: height 0.3s ease;
}

.dayz-card:hover::before {
    height: 100%;
}

.dayz-card:hover {
    transform: translateY(-4px);
}

/* ---- LOCATION (structural) ---- */
.dayz-map-img img,
.dayz-map-img .wp-block-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.4s;
}

.dayz-map-img:hover img {
    transform: scale(1.02);
}

.dayz-location-point {
    transition: transform 0.2s;
}

.dayz-location-point:hover {
    transform: translateX(-4px);
}

.dayz-loc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- UNIT CARDS (structural) ---- */
.dayz-unit-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dayz-unit-card:hover {
    transform: translateY(-8px);
}

.dayz-unit-image {
    overflow: hidden;
    position: relative;
}

.dayz-unit-image img,
.dayz-unit-image .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dayz-unit-card:hover .dayz-unit-image img {
    transform: scale(1.06);
}

.dayz-unit-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 50px;
}

/* ---- PRICING (structural) ---- */
.dayz-pricing-box {
    border-radius: 28px;
    text-align: center;
}

.dayz-pricing-cta-wrap {
    text-align: center;
}

/* ---- AMENITIES (structural) ---- */
.dayz-amenity-item {
    border-radius: 16px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    border: 2px solid transparent;
}

.dayz-amenity-item:hover {
    border-color: var(--wp--preset--color--sea-light);
    transform: translateY(-4px);
}


@keyframes dayzPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7);
    }
}

.dayz-sticky-wa:hover {
    transform: scale(1.1);
}

/* ---- RESPONSIVE (structural only) ---- */
@media(max-width:768px) {
    .dayz-final-form-grid {
        grid-template-columns: 1fr;
    }

    .dayz-final-form-grid .full,
    .dayz-btn-submit {
        grid-column: span 1;
    }
}

.dayz-header__lang-switcher {
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--wp--preset--color--gold, #e8c97b);
    color: var(--wp--preset--color--gold, #e8c97b) !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    line-height: 1;
    margin-right: 8px;
    background: transparent;
}

.dayz-header__lang-icon {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.dayz-header__lang-switcher:hover {
    background-color: var(--wp--preset--color--gold, #e8c97b) !important;
    color: #0d1b22 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(232, 201, 123, 0.2);
}

.dayz-header__lang-switcher:hover .dayz-header__lang-icon {
    transform: rotate(360deg);
}

.dayz-header--en .dayz-header__lang-switcher {
    margin-left: 8px;
    margin-right: 0;
}

.dayz-header__mobile-lang {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.dayz-header__mobile-lang .dayz-header__lang-switcher {
    padding: 10px 24px;
    font-size: 1rem;
    width: 80%;
    text-align: center;
    margin-right: 0;
}

/* English Header Layout overrides (LTR) */
.dayz-header--en {
    direction: ltr !important;
}

.dayz-header--en .dayz-header__inner {
    flex-direction: row !important;
}

.dayz-header--en .dayz-header__brand {
    margin-right: auto;
    margin-left: 0;
    flex-direction: row !important;
}

.dayz-header--en .dayz-header__nav {
    margin-left: auto;
    margin-right: auto;
}

.dayz-header--en .dayz-header__menu {
    flex-direction: row !important;
}

.dayz-header--en .dayz-header__menu-link {
    font-family: inherit !important;
}

.dayz-header--en .dayz-header__actions {
    margin-left: auto;
    margin-right: 0;
    flex-direction: row !important;
    gap: 12px;
}

.dayz-header--en .dayz-header__mobile {
    left: 0 !important;
    right: auto !important;
    transform: translateX(-100%) !important;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dayz-header--en .dayz-header__mobile[aria-hidden="false"] {
    transform: translateX(0) !important;
}

.dayz-header--en .dayz-header__mobile-inner {
    text-align: left !important;
}

.dayz-header--en .dayz-header__social {
    flex-direction: row !important;
    margin-left: 10px;
}

/* LTR Page Wrapper overrides */
.site-landing-en-wrapper,
.dayz-landing-page-en {
    direction: ltr !important;
    text-align: left !important;
}

.site-landing-en-wrapper h1,
.site-landing-en-wrapper h2,
.site-landing-en-wrapper h3,
.site-landing-en-wrapper h4,
.site-landing-en-wrapper h5,
.site-landing-en-wrapper h6,
.site-landing-en-wrapper p,
.site-landing-en-wrapper li,
.site-landing-en-wrapper a,
.site-landing-en-wrapper div,
.site-landing-en-wrapper section,
.site-landing-en-wrapper span,
.site-landing-en-wrapper hr,
.dayz-landing-page-en h1,
.dayz-landing-page-en h2,
.dayz-landing-page-en h3,
.dayz-landing-page-en h4,
.dayz-landing-page-en h5,
.dayz-landing-page-en h6,
.dayz-landing-page-en p,
.dayz-landing-page-en li,
.dayz-landing-page-en a,
.dayz-landing-page-en div,
.dayz-landing-page-en section,
.dayz-landing-page-en span,
.dayz-landing-page-en hr {
    direction: ltr !important;
    text-align: left !important;
}

.site-landing-en-wrapper .dayz-highlight-item,
.dayz-landing-page-en .dayz-highlight-item {
    flex-direction: row !important;
}

.site-landing-en-wrapper .dayz-highlight-item::before,
.dayz-landing-page-en .dayz-highlight-item::before {
    margin-right: 12px !important;
    margin-left: 0 !important;
}

.site-landing-en-wrapper .dayz-loc-text,
.dayz-landing-page-en .dayz-loc-text {
    text-align: left !important;
}

.site-landing-en-wrapper .dayz-about-badge,
.dayz-landing-page-en .dayz-about-badge {
    left: auto !important;
    right: 28px !important;
}

.site-landing-en-wrapper .dayz-card,
.dayz-landing-page-en .dayz-card {
    text-align: left !important;
}

.site-landing-en-wrapper .dayz-card::before,
.dayz-landing-page-en .dayz-card::before {
    right: auto !important;
    left: 0 !important;
}

.site-landing-en-wrapper .dayz-price-feature,
.dayz-landing-page-en .dayz-price-feature {
    text-align: left !important;
}

.site-landing-en-wrapper .dayz-pricing-box,
.dayz-landing-page-en .dayz-pricing-box {
    text-align: left !important;
}

.site-landing-en-wrapper .dayz-location-point,
.dayz-landing-page-en .dayz-location-point {
    flex-direction: row !important;
}

/* Flex centered structures in LTR */
.site-landing-en-wrapper .dayz-seo-header,
.dayz-landing-page-en .dayz-seo-header {
    text-align: center !important;
}

.site-landing-en-wrapper .dayz-seo-header h2,
.site-landing-en-wrapper .dayz-seo-header p,
.dayz-landing-page-en .dayz-seo-header h2,
.dayz-landing-page-en .dayz-seo-header p {
    text-align: center !important;
}

.site-landing-en-wrapper .dayz-pricing-box,
.dayz-landing-page-en .dayz-pricing-box {
    text-align: center !important;
}

.site-landing-en-wrapper .dayz-pricing-cta-wrap,
.dayz-landing-page-en .dayz-pricing-cta-wrap {
    text-align: center !important;
}

.site-landing-en-wrapper .dayz-amenity-item p,
.dayz-landing-page-en .dayz-amenity-item p {
    text-align: center !important;
}

.site-landing-en-wrapper .dayz-unit-body h3,
.site-landing-en-wrapper .dayz-unit-body p,
.dayz-landing-page-en .dayz-unit-body h3,
.dayz-landing-page-en .dayz-unit-body p {
    text-align: center !important;
}

/* ---- FLOATING ACTIONS (WhatsApp & Scroll to Top) ---- */
.dayz-floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.dayz-floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    text-decoration: none;
    color: #ffffff !important;
}

/* Scroll to Top button */
.dayz-floating-action--scroll-top {
    background-color: var(--wp--preset--color--gold, #C9A84C);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.dayz-floating-action--scroll-top.dayz-floating-action--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dayz-floating-action--scroll-top:hover {
    background-color: var(--wp--preset--color--gold-light, #E8C97A);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* WhatsApp button */
.dayz-floating-action--whatsapp {
    background-color: #25d366;
    animation: dayzPulseWa 2.5s infinite;
}

.dayz-floating-action--whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* WhatsApp pulse animation */
@keyframes dayzPulseWa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* LTR / English page positions override */
.site-landing-en-wrapper .dayz-floating-actions,
.dayz-landing-page-en .dayz-floating-actions {
    right: auto !important;
    left: 25px !important;
}

/* ---- SCROLL REVEAL ANIMATIONS (60FPS reveal presets) ---- */
.dayz-reveal {
    opacity: 0;
    transition-duration: 0.85s;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    transition-property: opacity, transform;
    will-change: opacity, transform;
}

.dayz-reveal.dayz-reveal--active {
    opacity: 1 !important;
    transform: none !important;
}

.dayz-reveal--fade-up {
    transform: translateY(40px);
}

.dayz-reveal--fade-in {
    transform: none;
}

.dayz-reveal--fade-right {
    transform: translateX(45px);
}

.dayz-reveal--fade-left {
    transform: translateX(-45px);
}

.dayz-reveal--zoom-in {
    transform: scale(0.93);
}

/* ---- FOOTER STYLE ---- */
.dayz-footer {
    background-color: #0d1b2a !important;
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 80px 24px 30px 24px !important;
    font-family: inherit;
    border-top: 1px solid rgba(251, 247, 239, 0.08);
}

.dayz-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.dayz-footer a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.dayz-footer a:hover {
    color: var(--wp--preset--color--gold, #C9A84C) !important;
    transform: translateX(-3px);
}

.dayz-footer--en a:hover {
    transform: translateX(3px) !important;
}

.dayz-footer h3.logo {
    font-family: 'Playfair Display', serif !important;
    color: var(--wp--preset--color--gold, #C9A84C) !important;
    font-size: 1.85rem !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px;
}

.dayz-footer h3.logo span {
    color: #fff !important;
}

.dayz-footer p.desc {
    line-height: 1.8;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 24px !important;
}

.dayz-footer h4 {
    color: #fff !important;
    font-size: 1.15rem !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    font-weight: 700 !important;
    position: relative;
    padding-bottom: 10px;
}

.dayz-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: var(--wp--preset--color--gold, #C9A84C);
}

.dayz-footer--en h4::after {
    right: auto !important;
    left: 0 !important;
}

.dayz-footer ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dayz-footer ul li {
    margin-bottom: 14px !important;
    font-size: 0.95rem;
}

.dayz-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.dayz-footer-social-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dayz-footer-social-link:hover {
    background: var(--wp--preset--color--gold, #C9A84C) !important;
    color: #0d1b2a !important;
    border-color: var(--wp--preset--color--gold, #C9A84C) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.dayz-footer-social-link svg {
    display: block;
}

.dayz-footer .contact-list li {
    margin-bottom: 16px !important;
}

.dayz-footer .contact-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8) !important;
}

.dayz-footer .contact-item .icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dayz-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 50px !important;
    padding-top: 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}

.dayz-footer-bottom p {
    margin: 0 !important;
    font-size: 0.88rem !important;
}

.dayz-footer-bottom p.copyright {
    color: rgba(255, 255, 255, 0.5) !important;
}

.dayz-footer-bottom p.disclaimer {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.85rem !important;
}

/* LTR / LTR Page Wrapper / English footer overrides */
.dayz-footer--en {
    direction: ltr !important;
    text-align: left !important;
}

.site-landing-en-wrapper .dayz-footer-bottom,
.dayz-landing-page-en .dayz-footer-bottom {
    flex-direction: row !important;
}

@media(max-width: 768px) {
    .dayz-footer {
        padding: 60px 16px 30px 16px !important;
    }
    
    .dayz-footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .dayz-footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 12px !important;
    }
}
