/* ===============================================================
 * NEWSLETTER v2 — Premium magazine editorial
 * Split layout, Cormorant italic hero + value props + form
 * =============================================================== */

.newsletter-premium {
    background: #FAFAF5;
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;
    border-top: 1px solid #ECE8DC;
    font-family: 'Plus Jakarta Sans', 'Hind', sans-serif;
}

/* Decorative travertine pattern */
.newsletter-premium::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(194,88,47,.04) 0, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(232,223,207,.4) 0, transparent 45%);
    pointer-events: none;
    z-index: 0;
}
.newsletter-premium::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent 0%, rgba(194,88,47,.25) 30%, rgba(194,88,47,.25) 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 991px) { .newsletter-premium::after { display: none; } }

.newsletter-premium .container {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.newsletter-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: intro */
.newsletter-eyebrow {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #C2582F;
    margin-bottom: 20px;
    padding-bottom: 14px;
    position: relative;
}
.newsletter-eyebrow::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 1.5px;
    background: #C2582F;
}
.newsletter-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 44px !important;
    font-weight: 500 !important;
    font-style: italic !important;
    line-height: 1.08 !important;
    color: #1A1A1A !important;
    margin: 0 0 22px !important;
    letter-spacing: -0.015em !important;
    max-width: 100%;
}
.newsletter-lead {
    font-size: 15.5px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 460px;
}
.newsletter-values {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.newsletter-values li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #3A3A3A;
    line-height: 1.45;
}
.newsletter-values .nv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C2582F;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(194,88,47,.12);
}

/* Right: form */
.newsletter-form-wrap {
    max-width: 440px;
    width: 100%;
    justify-self: stretch;
}
.newsletter-form {
    background: #fff;
    padding: 28px 28px 24px;
    border-radius: 4px;
    box-shadow: 0 18px 44px rgba(20,20,20,.08);
    border: 1px solid #ECE8DC;
    position: relative;
}
.newsletter-field {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1.5px solid #E0DBCF;
    border-radius: 3px;
    overflow: hidden;
    transition: border-color .2s;
    background: #fff;
}
.newsletter-field:focus-within { border-color: #C2582F; }
.newsletter-field input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 14px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    outline: none;
    min-width: 0;
}
.newsletter-field input::placeholder { color: #9A9488; }
.newsletter-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: #1A1A1A;
    color: #fff;
    padding: 0 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s, padding .18s;
}
.newsletter-submit:hover {
    background: #C2582F;
    padding-right: 26px;
}
.newsletter-submit-arrow { transition: transform .2s; }
.newsletter-submit:hover .newsletter-submit-arrow { transform: translateX(3px); }

.newsletter-note {
    margin: 14px 2px 0;
    font-size: 11.5px;
    color: #9A9488;
    letter-spacing: 0.01em;
    line-height: 1.5;
}
.newsletter-success {
    display: none;
    margin: 14px 0 0;
    padding: 12px 14px;
    background: #E8DFCF;
    border-left: 3px solid #C2582F;
    color: #1A1A1A;
    font-size: 13px;
    font-weight: 500;
}
.newsletter-form.is-success .newsletter-success { display: block; }
.newsletter-form.is-success .newsletter-field,
.newsletter-form.is-success .newsletter-note { display: none; }

.newsletter-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    justify-content: flex-start;
}
.newsletter-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid #E0DBCF;
    border-radius: 50%;
    color: #6B6B6B;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.newsletter-social a:hover {
    background: #C2582F;
    color: #fff;
    border-color: #C2582F;
    transform: translateY(-2px);
}

/* Accessibility */
.newsletter-form .sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ===============================================================
 * MOBILE
 * =============================================================== */
@media (max-width: 991px) {
    .newsletter-premium { padding: 56px 0 64px; }
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .newsletter-title { font-size: 32px !important; }
    .newsletter-lead { font-size: 15px; }
    .newsletter-form-wrap { max-width: 100%; justify-self: stretch; }
    .newsletter-form { padding: 22px 20px; }
}
@media (max-width: 600px) {
    .newsletter-title { font-size: 28px !important; }
    .newsletter-field { flex-direction: column; }
    .newsletter-submit { justify-content: center; padding: 14px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .newsletter-submit,
    .newsletter-submit-arrow,
    .newsletter-social a { transition: none !important; }
}

/* ===============================================================
 * FOOTER v2 — Editorial aesthetic, tutarlı header-v2 ile
 * Warm charcoal ground + terracotta accents + travertine detaylar
 * =============================================================== */

#footer {
    background: #1A1A1A;
    color: rgba(255,255,255,.72);
    font-family: 'Plus Jakarta Sans', 'Hind', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    letter-spacing: 0.01em;
    margin-top: 80px;
    position: relative;
}

#footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(194,88,47,.6) 30%,
        rgba(194,88,47,.6) 70%,
        transparent 100%);
}

/* --- Top: Newsletter + Social --- */
#footer .footer_top {
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
#footer .footer_top .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

#footer .mailchimp h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.005em;
}
#footer .mailchimp-form form {
    display: flex;
    gap: 8px;
    max-width: 520px;
    flex-wrap: wrap;
}
#footer .mailchimp-form input.input-text {
    flex: 1 1 280px;
    min-width: 240px;
    padding: 12px 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 2px;
    color: #fff;
    font-family: inherit;
    font-size: 13.5px;
    letter-spacing: 0.02em;
    transition: border-color .2s, background .2s;
}
#footer .mailchimp-form input.input-text::placeholder {
    color: rgba(255,255,255,.5);
}
#footer .mailchimp-form input.input-text:focus {
    outline: none;
    border-color: #C2582F;
    background: rgba(255,255,255,.08);
}
#footer .mailchimp-form button.awe-btn {
    padding: 12px 24px;
    background: #C2582F;
    color: #fff;
    border: 0;
    border-radius: 2px;
    font-family: inherit;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s, transform .18s;
}
#footer .mailchimp-form button.awe-btn:hover {
    background: #9E4222;
    transform: translateY(-1px);
}

/* --- Social icons --- */
#footer .social-content {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
#footer .social-content a {
    display: inline-flex;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: rgba(255,255,255,.78);
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
#footer .social-content a:hover {
    background: #C2582F;
    color: #fff;
    border-color: #C2582F;
    transform: translateY(-2px);
}

/* --- Center: Logo/info + Widgets --- */
#footer .footer_center {
    padding: 54px 0 48px;
}
#footer .widget-logo { }
#footer .widget-logo .img img {
    max-height: 52px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
}
#footer .widget-logo .text p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 10px;
    color: rgba(255,255,255,.72);
    font-size: 13.5px;
    line-height: 1.55;
}
#footer .widget-logo .text i {
    color: #C2582F;
    margin-top: 3px;
    flex-shrink: 0;
    min-width: 16px;
    text-align: center;
}
#footer .widget-logo .text a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: color .15s;
}
#footer .widget-logo .text a:hover {
    color: #C2582F;
}

#footer .widget { }
#footer .widget-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
    padding-bottom: 14px;
    position: relative;
}
#footer .widget-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 28px; height: 1.5px;
    background: #C2582F;
}
#footer .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#footer .widget ul li {
    margin-bottom: 10px;
}
#footer .widget ul li a {
    color: rgba(255,255,255,.68);
    text-decoration: none;
    font-size: 13.5px;
    transition: color .15s, padding-left .2s;
    display: inline-block;
    position: relative;
}
#footer .widget ul li a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background: #C2582F;
    vertical-align: middle;
    margin-right: 0;
    transition: width .2s, margin-right .2s;
}
#footer .widget ul li a:hover {
    color: #fff;
}
#footer .widget ul li a:hover::before {
    width: 14px;
    margin-right: 8px;
}

/* --- Tripadvisor widget --- */
#footer .widget_tripadvisor .tripadvisor {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
#footer .widget_tripadvisor img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1) opacity(.72);
    transition: opacity .2s;
}
#footer .widget_tripadvisor img:hover { filter: brightness(0) invert(1) opacity(1); }
#footer .widget_tripadvisor .tripadvisor-circle {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}
#footer .widget_tripadvisor .tripadvisor-circle i {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #2BAE3A;
    position: relative;
}
#footer .widget_tripadvisor .tripadvisor-circle i.part {
    background: linear-gradient(90deg, #2BAE3A 50%, rgba(255,255,255,.15) 50%);
}

/* --- Bottom: Copyright --- */
#footer .footer_bottom {
    background: rgba(0,0,0,.3);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
#footer .footer_bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255,255,255,.55);
    letter-spacing: 0.02em;
    text-align: center;
}

/* ===============================================================
 * MOBILE
 * =============================================================== */
@media (max-width: 991px) {
    #footer { margin-top: 60px; }
    #footer .footer_top {
        padding: 40px 0 32px;
    }
    #footer .footer_top .row {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }
    #footer .footer_top .col-lg-3 {
        max-width: 100%;
    }
    #footer .mailchimp h4 { font-size: 22px; }
    #footer .social-content { justify-content: flex-start; }
    #footer .footer_center { padding: 40px 0 32px; }
    #footer .footer_center .row {
        display: flex;
        flex-wrap: wrap;
        gap: 28px 0;
    }
    #footer .footer_center .col-xs-4,
    #footer .footer_center .col-xs-12,
    #footer .footer_center .col-lg-2,
    #footer .footer_center .col-lg-3,
    #footer .footer_center .col-lg-5 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    #footer .widget-logo { padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
    #footer .widget-title { margin-bottom: 14px; }
}

@media (min-width: 768px) and (max-width: 991px) {
    #footer .footer_center .col-xs-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    #footer .widget-logo { padding-bottom: 0; border-bottom: 0; margin-bottom: 30px; }
}
