/*
Theme Name: v2025
Theme URI: https://www.kleinfeldbridal.com/
Author: Atelierul de IT
Author URI: https://www.kleinfeldbridal.com/
Description: Custom WordPress theme inspired by Kleinfeld Bridal, built with Bootstrap 5.3 and jQuery.
Version: 0.1.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.1
Text Domain: v2025
*/

/*
--------------------------------------------------------------------------------
Theme Tokens
--------------------------------------------------------------------------------
*/
:root {
    --v2025-gold-soft: #e4c7a7;
    --v2025-gold-deep: #c99f63;
    --v2025-gold-muted: #f2ddc3;
    
    --v2025-granite: #3f3a37;
    --v2025-ebony: #1f1b16;
    --v2025-cloud: rgba(255, 255, 255, 0.85);
    --v2025-shadow: rgba(22, 16, 10, 0.12);

    --lnv-page-bg-color: #fafafa;
    --lnv-page-bg-image:
        url("assets/images/textures/patina-dust-waves.svg"),
        url("assets/images/textures/patina-dust.svg"),
        radial-gradient(circle at 12% 20%, rgba(201, 159, 99, 0.12) 0%, rgba(201, 159, 99, 0.12) 18%, transparent 45%),
        radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 16%, transparent 40%),
        radial-gradient(circle at 24% 82%, rgba(63, 58, 55, 0.06) 0%, rgba(63, 58, 55, 0.06) 20%, transparent 48%);

    --lnv-body-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lnv-body-font-size: 0.85rem;
    --lnv-font-weight: 400;
    --lnv-body-line-height: 1.7;
    --lnv-body-font-color: var(--v2025-granite);

    --lnv-heading-font: "Playfair Display SC", serif;
    --lnv-heading-font-size: 1.5rem;

}

/* XS - implicit */
.vh-20 { height: 20vh; }
.vh-25 { height: 25vh; }
.vh-30 { height: 30vh; }
.vh-40 { height: 40vh; }
.vh-50 { height: 50vh; }
.vh-60 { height: 60vh; }
.vh-70 { height: 70vh; }
.vh-80 { height: 80vh; }
.vh-90 { height: 90vh; }
.vh-100 { height: 100vh; }

/* SM ≥576px */
@media (min-width: 576px) {
  .vh-sm-20 { height: 20vh; }
  .vh-sm-25 { height: 25vh; }
  .vh-sm-30 { height: 30vh; }
  .vh-sm-40 { height: 40vh; }
  .vh-sm-50 { height: 50vh; }
  .vh-sm-60 { height: 60vh; }
  .vh-sm-70 { height: 70vh; }
  .vh-sm-80 { height: 80vh; }
  .vh-sm-90 { height: 90vh; }
  .vh-sm-100 { height: 100vh; }
}

/* MD ≥768px */
@media (min-width: 768px) {
  .vh-md-20 { height: 20vh; }
  .vh-md-25 { height: 25vh; }
  .vh-md-30 { height: 30vh; }
  .vh-md-40 { height: 40vh; }
  .vh-md-50 { height: 50vh; }
  .vh-md-60 { height: 60vh; }
  .vh-md-70 { height: 70vh; }
  .vh-md-80 { height: 80vh; }
  .vh-md-90 { height: 90vh; }
  .vh-md-100 { height: 100vh; }
}

/* LG ≥992px */
@media (min-width: 992px) {
  .vh-lg-20 { height: 20vh; }
  .vh--lg-25 { height: 25vh; }
  .vh-lg-30 { height: 30vh; }
  .vh-lg-40 { height: 40vh; }
  .vh-lg-50 { height: 50vh; }
  .vh-lg-60 { height: 60vh; }
  .vh-lg-70 { height: 70vh; }
  .vh-lg-80 { height: 80vh; }
  .vh-lg-90 { height: 90vh; }
  .vh-lg-100 { height: 100vh; }
}

.dress-listing article { height: 45vh; position: relative; margin-bottom: 1.5rem; }
.dress-listing article figure { position: relative; overflow: hidden; }

.dress-listing article figure:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/wp-content/themes/v2025/assets/images/textures/frame-bottom.png') no-repeat top left / 100% 100%;
    top: -1px; left: -1px; width: calc(100% + 2px); height: calc(100% + 2px);
    border-top: solid 2px #000;
    border-right: solid 2px #000;
}

.dress-listing article figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/wp-content/themes/v2025/assets/images/textures/frame-top.png') no-repeat top left / 100% 0%;
    top: -1px; 
    right: -1px; 
    width: calc(100% + 1px);
    height: calc(100% + 2px);
    opacity: 1;                
    transition: all 0.4s linear; 
    pointer-events: none;      
}

.dress-listing article:hover figure::after {
    opacity: 1;  
         
    background: url('/wp-content/themes/v2025/assets/images/textures/frame-top.png') no-repeat top left / 100% 100%;
    transition: all 0.4s linear;  
}

.dress-listing article h3 { font-size: clamp(0.75rem, 0.85rem, 0.9rem); position: absolute; bottom: -0.5rem; right: 2rem; width: 100%; text-align: right;  margin: 0; padding: 0; text-transform: uppercase; font-weight: 400; color: #274632; }
.dress-listing article:hover h3 { color: #b7410e; font-weight: 500;}
/*
--------------------------------------------------------------------------------
Base Styles
--------------------------------------------------------------------------------
*/
body {
    font-family: var(--lnv-body-font);
    font-size: var(--lnv-body-font-size);
    line-height: var(--lnv-body-line-height);
    color: var(--lnv-body-font-color);
    /* background: linear-gradient(var(--v2025-cloud), var(--v2025-cloud)); */
    background-color: var(--lnv-page-bg-color);
    
}

main {
    display: block;
}

p {
    margin-bottom: 1.25rem;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

.object-fit-cover {
    object-fit: cover;
}

.section-overlay {
    position: relative;
    isolation: isolate;
}

.section-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(24, 17, 9, 0.45), rgba(24, 17, 9, 0.15));
    z-index: -1;
}

/*
--------------------------------------------------------------------------------
Typography
--------------------------------------------------------------------------------
*/
:where(h1, h2, h3, h4, h5, h6) {
    font-family: "Roboto", "Montserrat", sans-serif;
    color: var(--v2025-ebony);
    letter-spacing: 0.02em;
}

.single :where(h1, h2, h3, h4, h5, h6),
.page :where(h1, h2, h3, h4, h5, h6) {
    font-family: "Playfair Display", "Times New Roman", serif;
    letter-spacing: 0.01em;
}

.single h1,
.page h1 {
    font-size: clamp(1.9rem, 2.5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: uppercase;  
}

.small-text {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lead {
    font-size: 0.95rem;
    font-weight: 400;
}

.text-soft {
    color: rgba(63, 58, 55, 0.72) !important;
}

/*
--------------------------------------------------------------------------------
Buttons & Links
--------------------------------------------------------------------------------
*/
.btn-primary,
.btn-dark {
    border-radius: 999px;
    padding: 0.65rem 1.85rem;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--v2025-gold-deep);
    border-color: var(--v2025-gold-deep);
    color: var(--v2025-ebony);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--v2025-gold-soft);
    border-color: var(--v2025-gold-soft);
    color: var(--v2025-ebony);
}

.btn-outline-dark {
    border-radius: 999px;
    border-color: var(--v2025-ebony);
    color: var(--v2025-ebony);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background-color: var(--v2025-ebony);
    color: #ffffff;
}

/*
--------------------------------------------------------------------------------
Header & Navigation
--------------------------------------------------------------------------------
*/
.site-header {
    background-color: rgba(255, 255, 255, 0.92);
    
    box-shadow: 0 1px 12px var(--v2025-shadow);
}

.site-header .navbar-brand {
    font-family: 'Goudy Bookletter 1911', 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    font-size: 1.8rem;
}

.site-header .navbar-brand span {
    font-weight: 400;
    color: var(--v2025-gold-deep)
}

.site-header .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;;
}

.dropdown-menu {
    --bs-dropdown-padding-y: 0;
    --bs-dropdown-font-size: 0.85rem;
    --bs-dropdown-bg: rgba(255, 255, 255, 0.92);
    --bs-dropdown-border-color:none;
    --bs-dropdown-border-radius: 0;
    --bs-dropdown-link-hover-bg: var(--v2025-gold-muted);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: var(--v2025-gold-deep);
}

/*
--------------------------------------------------------------------------------
Hero & Media Sections
--------------------------------------------------------------------------------
*/
.section-hero {
    position: relative;
    padding: clamp(4.5rem, 10vw, 7rem) 0;
    background-color: var(--v2025-ivory);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120'%3E%3Crect width='120' height='120' fill='%23fefaf2'/%3E%3Ccircle cx='18' cy='18' r='8' fill='rgba(201,159,99,0.08)'/%3E%3Ccircle cx='90' cy='30' r='9' fill='rgba(226,198,168,0.09)'/%3E%3Ccircle cx='42' cy='92' r='10' fill='rgba(63,58,55,0.05)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

.section-hero--slider {
    padding: 0;
    background-image: none;
}

.section-hero--slider .hero-slider {
    position: relative;
    visibility: hidden;
}

.section-hero--slider .hero-slider.is-ready {
    visibility: visible;
}

.hero-slider .hero-slide {
    position: relative;
    min-height: clamp(520px, 80vh, 840px);
    display: flex;
    align-items: stretch;
    color: #ffffff;
}

.hero-slide__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(22, 16, 10, 0.72) 0%, rgba(22, 16, 10, 0.12) 65%);
    z-index: 1;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    padding: clamp(4rem, 12vw, 6.5rem) 0;
}

.hero-slide__content h1,
.hero-slide__content .small-text {
    color: #ffffff;
}

.hero-slide__content .lead {
    color: rgba(255, 255, 255, 0.82) !important;
}

.hero-slide__divider {
    width: 34px;
    height: 2px;
    background-color: var(--v2025-gold-deep);
}

.hero-slider .slick-dots {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 3rem);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.hero-slider .slick-dots li button:before {
    content: '•';
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: #ffffff;
}

.hero-slide__content .btn-outline-dark {
    border-color: #ffffff;
    color: #ffffff;
}

.hero-slide__content .btn-outline-dark:hover,
.hero-slide__content .btn-outline-dark:focus {
    background-color: #ffffff;
    color: var(--v2025-ebony);
}

.section-bridal-categories {
    position: relative;
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    background-color: var(--v2025-ivory);
}

.bridal-card {
    min-height: clamp(320px, 60vw, 520px);
}

.bridal-card picture,
.bridal-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridal-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(24, 17, 9, 0.68) 0%, rgba(24, 17, 9, 0.35) 60%, rgba(24, 17, 9, 0.15) 100%);
    transition: opacity 220ms ease;
}

.bridal-card__content {
    position: absolute;
    inset: auto 0 0 0;
    padding: clamp(2rem, 6vw, 3rem);
    z-index: 2;
    color: #ffffff;
}

.bridal-card__divider {
    width: 32px;
    height: 1px;
    background-color: var(--v2025-gold-deep);
}

.bridal-card:hover .bridal-card__overlay,
.bridal-card:focus-visible .bridal-card__overlay {
    opacity: 0.8;
}

@media (max-width: 767.98px) {
    .hero-slide__content {
        padding: clamp(3.5rem, 20vw, 5rem) 0;
    }

    .hero-slider .slick-dots {
        bottom: 1rem;
    }
}

.featured-carousel img,
.gallery-grid img {
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(24, 17, 9, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.gallery-grid .tall {
    grid-row: span 2;
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 32px rgba(24, 17, 9, 0.22);
}

.video-frame iframe,
.video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
--------------------------------------------------------------------------------
Cards & Sections
--------------------------------------------------------------------------------
*/
.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(24, 17, 9, 0.08);
}

.overlay-light {
    background-color: var(--v2025-cloud);
    backdrop-filter: blur(6px);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 17, 9, 0.18), transparent);
}

.site-footer {
    background: var(--v2025-ebony);
    color: rgba(255, 255, 255, 0.9);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover,
.site-footer a:focus {
    color: #ffffff;
}

/*
--------------------------------------------------------------------------------
Utilities
--------------------------------------------------------------------------------
*/
.bg-ivory {
    background-color: var(--v2025-ivory);
}

.bg-gold-soft {
    background-color: var(--v2025-gold-soft);
}

.text-gold {
    color: var(--v2025-gold-deep);
}

.shadow-soft {
    box-shadow: 0 18px 38px rgba(24, 17, 9, 0.14) !important;
}

/*
--------------------------------------------------------------------------------
Product Gallery
--------------------------------------------------------------------------------
*/
.slick-gallery {
    position: relative;
}

.slick-gallery__viewport {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    border-radius: 0.5rem;
    max-height: var(--slick-gallery-max-height, 100vh);
}

.slick-gallery__item {
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slick-gallery__img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: var(--slick-gallery-max-height, 100vh);
    object-fit: cover;
    background-color: #fefaf2;
    transition: opacity 0.3s ease;
}

/* Hover to zoom cue --------------------------------------------------- */
.slick-gallery__hover-cta {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.68);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 999px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.slick-gallery__item:hover .slick-gallery__hover-cta,
.slick-gallery__item:focus-within .slick-gallery__hover-cta {
    opacity: 0;
}

.slick-gallery__zoom {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.slick-gallery__zoom.is-active {
    opacity: 1;
}

.slick-gallery__zoom-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: scale(1);
    transform-origin: 50% 50%;
    will-change: transform;
    transition: transform 0.15s ease;
}

.slick-gallery__zoom.is-active .slick-gallery__zoom-img {
    transform: scale(var(--zoom-scale, 1.2));
}

.slick-gallery__frame {
    position: absolute;
    inset: 0.5rem 1.3rem;
    pointer-events: none;
    z-index: 3;
    display: block;
}

.slick-gallery__corner {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    border-color: #fff;
    border-style: solid;
    border-width: 0;
}

.slick-gallery__corner.is-top-left {
    top: 0;
    left: 0;
    border-top-width: 3px;
    border-left-width: 3px;
}

.slick-gallery__corner.is-top-right {
    top: 0;
    right: 0;
    border-top-width: 3px;
    border-right-width: 3px;
    
}

.slick-gallery__corner.is-bottom-left {
    bottom: 0.15rem;
    left: 0;
    border-bottom-width: 3px;
    border-left-width: 3px;
    
}

.slick-gallery__corner.is-bottom-right {
    bottom: 0.15rem;
    right: 0;
    border-bottom-width: 3px;
    border-right-width: 3px;
    
}

.slick-links__list {
    display: grid;
    gap: 0.75rem;
    max-height: 100%;
    overflow-y: auto;
    
}

.slick-links__item {
    display: block;
    border: solid 1px var(--v2025-gold-deep);     
    cursor: pointer;
    position: relative;
    padding: 0.2rem;
    background: #FFF; 
    transition: all 0.18s ease;
    position: relative;
}

.slick-links__item:before {
    content: none;
    background: rgba(255,255,255,0.5);
    position: absolute; inset: 0; 
}

.slick-links__item img {
    display: block;
    width: 100%;
    height: auto;
}

.slick-links__item.is-active,
.slick-links__item:focus-visible {
    
}   
.slick-links__item.is-active:before,
.slick-links__item:focus-visible:before {
    content: '';
}
.slick-links__item.is-active:after {
    content: '+';
    position: absolute;
    font-size: 2rem;
    display: flex; 
    align-items: center;
    justify-content: center;    
    inset: 50%;
    width: 3rem;
    height: 3rem; 
    border: solid 1px #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: +1;
}

.slick-links__item:hover {
   
}
.share {  }
.share a {  font-size: 32px; display:flex; width: 32px; height: 32px; justify-content: center; align-items: center; text-decoration: none; 
    background: url('/wp-content/themes/v2025/assets/images/social-media.png') no-repeat;
}
.share a.like-item { background-position: 0 0; /* Keeps height consistent */ }
.share a.like-item:hover, .share a.like-item.active { background-position: 0 -32px; }

.share a.probelist-item { background-position: -32px 0; /* Keeps height consistent */ }
.share a.probelist-item:hover, .share a.probelist-item.active { background-position: -32px -32px; /* Keeps height consistent */ }

.share a.facebook-item { background-position: -64px 0; /* Keeps height consistent */ }
.share a.facebook-item:hover { background-position: -64px -32px; /* Keeps height consistent */ }

.share a.instagram-item { background-position: -96px 0; /* Keeps height consistent */ }
.share a.instagram-item:hover { background-position: -96px -32px; /* Keeps height consistent */ }

.share a.youtube-item { background-position: -160px 0; /* Keeps height consistent */ }
.share a.youtube-item:hover { background-position: -160px -32px; /* Keeps height consistent */ }


.entry-title { position: relative; padding: 0; margin: 0; }
.entry-title:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    height: 1px;
    background-color: #fafafa;;
}


.btn-lnv {
    border: none;  
    text-align: center;
    padding: 0; 
    cursor: pointer;
    position:relative;
    background-color: transparent;
    color: #000;
    border: solid 1px transparent;
    transition: all 0.6s ease;
    
}
.btn-lnv span {
    border: solid 1px rgba(0,0,0,0.0);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease;
    padding: 0.5rem 2rem;
    
}

.btn-lnv:hover span {
    transition: all 0.4s ease;

    letter-spacing: 1px;    
}

.btn-lnv:before {
    content: '';
    position: absolute;
    top:0; left: 0; width: 30%; height: 10px; 
    border-top: solid 1px #000;
    border-left: solid 1px #000;
    transition: all 0.6s ease;
    
}

.btn-lnv:after {
    content: '';
    position: absolute;
    bottom:0; right: 0; ;width: 30%; height: 10px;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    transition: all 0.6s ease;
    
}

.btn-lnv:hover:before {
    width: 90%; height: 90%;
    transition: all 0.6s ease;
}
.btn-lnv:hover:after {
    width: 90%; height: 90%;
    transition: all 0.6s ease;
}




@media (max-width: 991.98px) {
    .slick-links__list {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0.5rem;
    }

    .slick-links__item {
        flex: 0 0 auto;
        width: 6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slick-gallery__img,
    .slick-gallery__zoom,
    .slick-gallery__zoom-img,
    .slick-links__item {
        transition: none !important;
    }
}

/*
--------------------------------------------------------------------------------
Category archive media optimizations
--------------------------------------------------------------------------------
*/
.category-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(20rem, 45vw, 34rem);
    color: #fff;
}

.category-hero__media,
.category-hero__overlay {
    position: absolute;
    inset: 0;
}

.category-hero__media {
    z-index: 0;
}

.category-hero__overlay {
    background: linear-gradient(130deg, rgba(24, 17, 9, 0.6), rgba(24, 17, 9, 0.25));
    pointer-events: none;
    z-index: 1;
}

.category-hero > .container {
    position: relative;
    z-index: 2;
}

.category-hero__image,
.category-hero__fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-hero__fallback {
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.25), transparent 55%),
        linear-gradient(140deg, rgba(36, 32, 28, 0.65), rgba(36, 32, 28, 0.35));
}

.product-card__media {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(204, 204, 204, 0.45), rgba(170, 170, 170, 0.25));
}

.modal-lnv {}

.modal-lnv .modal-content { width: 95%; background: transparent; border-radius: 0; border: solid 2px #fafafa; padding: 4px;  gap: 4px; }
.modal-lnv .modal-content > .logo { 
    position: absolute; top: 0; left: 50%; transform: translate(-50%, calc(-100% + 5px)); 
    font-family: 'Goudy Bookletter 1911', 'Playfair Display', serif;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      font-size: 1.8rem;
      color: #FFF;
      text-shadow: 1px 1px 2px #000; 
      margin: 0; padding: 0; 
      line-height: 1;
}
.modal-lnv .btn-close { content: 'x'; position: absolute; z-index: +2; opacity: 1; top: 0; right: 0; transform: translate(50%, -50%); background: #fafafa; border-radius: 0; display: flex; align-items: center; justify-content: center; color: #000; font-size: 1.5rem; padding: 0;  }
.modal-lnv .modal-content:before { 
   
}
.modal-lnv .modal-header, .modal-lnv .modal-footer, .modal-lnv .modal-body { 
    border-radius: 0;
    background: #fafafa;
    border: none;    
}