/* =========================
   ROOT VARIABLES
========================= */
:root {
  --background: #F7F3ED;
  --foreground: #2E2318;
  --card: #FDFAF6;
  --border: #E5D9C8;
  --primary: #B8572A;
  --primary-light: rgba(184,87,42,0.12);
  --secondary: #C49A3C;
  --secondary-light: rgba(196,154,60,0.14);
  --muted-fg: #7A6552;
  --accent-bg: #F0E8DA;
  --living-bg: #8B3E1A;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 25px rgba(0,0,0,0.10);
  --shadow-xl: 0 15px 50px rgba(0,0,0,0.18);

  --transition: all 0.35s ease;
}

/* =========================
   RESET
========================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================
   LAYOUT
========================= */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  position: relative;
  margin-bottom: 80px;
}

section:last-of-type {
  margin-bottom: 0;
}

@media(max-width:700px){
  section{
    margin-bottom:60px;
  }
}

/* =========================
   NAVIGATION
========================= */

#lr-nav{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:65px;

    z-index:9999;

    background:rgba(247,243,237,.96);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.06);

    margin:0;
    padding:0;
}

/* INNER */
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;

  align-items: center;
  gap: 1.5rem;

  max-width: 1280px;
  margin: 0 auto;

  padding: 0 1.5rem;

  height: 65px;
}

/* LOGO */
.nav-brand img {
  height: 42px;
  width: auto;
  max-width: 160px;
}

/* LINKS */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;

  white-space: nowrap;
}

.nav-links a {
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);

  transition: var(--transition);
}

.nav-links a:hover {
  background: rgba(0,0,0,.04);
}

/* RIGHT SIDE */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* LANGUAGE */
.lang-switch {
  display: flex;
  gap: 10px;

  padding: 0.4rem 0.8rem;

  border-radius: 999px;
}

/* HAMBURGER */
.nav-toggle {
  display: none;

  flex-direction: column;
  gap: 6px;

  background: none;
  border: none;

  cursor: pointer;

  padding: 8px;

  z-index: 10001;
}

.nav-toggle span {
  width: 26px;
  height: 2px;

  background: #333;

  border-radius: 2px;

  display: block;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  #lr-nav{
    height:90px;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    height:90px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;

    background: rgba(247,243,237,0.98);

    padding: 1rem;
    gap: 1rem;

    box-shadow: var(--shadow-sm);
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   HERO
========================= */

#lr-hero{
  position: relative;

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  color: #fff;

  overflow: hidden;
}

/* BACKGROUND */
.hero-bg{
  position:absolute;
  inset:0;

  background:
  url('https://costablancarural.com/wp-content/uploads/2026/04/hero.png')
  center/cover no-repeat;

  transform:scale(1.05);

  animation:heroZoom 18s ease-in-out infinite alternate;
}

/* OVERLAY */
.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.25),
    rgba(0,0,0,.55)
  );
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:3;

  max-width:900px;

  padding:0 40px;
}

/* MINI TEXT */
.hero-mini{
  font-size:12px;
  letter-spacing:5px;
  text-transform:uppercase;

  color:#d6b98c;

  margin-bottom:22px;
}

/* TITLE */
.hero-title{
  font-size:clamp(50px,6.5vw,88px);

  line-height:.95;
  margin:0;

  font-family:'Playfair Display', serif;
  font-style:italic;
  font-weight:500;

  text-shadow:0 10px 40px rgba(0,0,0,.45);
}

/* SUBTITLE */
.hero-eyebrow{
  margin-top:20px;

  font-size:clamp(18px,2vw,28px);

  font-weight:300;
  letter-spacing:1px;

  color:rgba(255,255,255,.9);
}

/* EXTRA TEXT */
.hero-sub{
  margin:30px auto 0;

  max-width:700px;

  font-size:17px;
  line-height:1.9;

  color:rgba(255,255,255,.75);
}

/* BUTTON */
.hero-btn{
  display:inline-flex;

  margin-top:58px;

  padding:16px 34px;

  border-radius:999px;

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,.18);

  color:#fff;

  font-weight:600;
  letter-spacing:.5px;

  transition:.3s;
}

.hero-btn:hover{
  transform:translateY(-3px);

  background:#b78b56;
  border-color:#b78b56;
}

/* SCROLL */
.hero-scroll{
  position:absolute;

  bottom:30px;
  left:50%;

  transform:translateX(-50%);

  display:flex;
  flex-direction:column;
  align-items:center;

  gap:10px;

  color:#fff;

  opacity:.8;

  transition:.3s;
}

.hero-scroll:hover{
  opacity:1;
  transform:translateX(-50%) translateY(3px);
}

.hero-scroll span{
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
}

/* ANIMATION */
@keyframes heroZoom{
  from{
    transform:scale(1.05);
  }
  to{
    transform:scale(1.12);
  }
}

/* MOBILE HERO */
@media(max-width:768px){

  #lr-hero{
    min-height:100vh;
  }

  .hero-content{
    padding:20px;
  }

  .hero-title{
    font-size:64px;
  }

  .hero-sub{
    font-size:16px;
  }
}



/* ─────────────────────────────────────────────
   ABOUT LA ROMANA — LUXURY STYLE CSS
──────────────────────────────────────────── */

/* Fonts (zorg dat deze geladen zijn in HTML) */
body {
  font-family: 'Inter', system-ui, sans-serif;
}

/* SECTION WRAP */
.lr-about-compact {
  padding: 120px 0;
  background: #F7F3ED;
  color: #2E2318;
}

/* CONTAINER */
.lr-about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.lr-video video,
.lr-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 12px;
    display: block;
}
.lr-media {
    display: flex;
    flex-direction: column;
    gap: 15px;
	width: 100%;
}

.lr-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.lr-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
}

/* HEADER */
.lr-about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lr-about-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.lr-about-header h2 {
    margin: 0;
    font-size: 42px;
    letter-spacing: 1px;
}

.lr-intro-text {
    max-width: 800px;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
}
/* GRID */
.lr-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD BASE */
.lr-about-card {
  background: #FDFAF6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
}

.lr-about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.lr-about-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lr-about-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.lr-about-content {
  padding: 22px;
}

.lr-about-content h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  margin-bottom: 12px;
  color: #2E2318;
}

.lr-about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #5c4d3f;
  margin-bottom: 12px;
}

/* QUOTE */
.lr-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #B8572A;
  margin-top: 10px;
}

/* WIDE CARD */
.lr-about-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}

.lr-about-wide img {
  height: 100%;
  min-height: 320px;
}

/* CTA */
.lr-about-cta {
  margin-top: 80px;
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, #ffffff, #f6efe6);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.lr-about-cta strong {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6d55;
}

.lr-about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 42px;
  margin: 10px 0;
}

.lr-cta-text {
  color: #6b5a4a;
  margin: 5px 0;
}

/* BUTTONS */
.lr-about-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.lr-about-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #B8572A;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lr-about-btn:hover {
  background: #a14b22;
  transform: translateY(-2px);
}

.lr-about-btn-light {
  background: transparent;
  border: 1px solid #B8572A;
  color: #B8572A;
}

.lr-about-btn-light:hover {
  background: #B8572A;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .lr-about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lr-about-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .lr-about-grid {
    grid-template-columns: 1fr;
  }

  .lr-about-wide {
    grid-column: span 1;
  }

  .lr-about-cta h2 {
    font-size: 32px;
  }
}

/* =========================
          REGION 
========================= */

.region-hero{
    width:100%;
    height:320px;

    position:relative;
    overflow:hidden;

    border-radius:0 0 32px 32px;

    margin:0 0 70px;
}

/* IMAGE */

.region-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    filter:brightness(.72);
}

/* OVERLAY */

.region-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;

    padding:20px;
}

/* SUBTITLE */

.region-subtitle{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;

    opacity:.9;
}

/* QUOTE */

.region-quote{
    margin-top:14px;

    font-size:clamp(26px,4vw,54px);
    line-height:1.2;

    font-style:italic;
    font-family:'Playfair Display',serif;

    max-width:900px;
}

/* =========================
TABLET
========================= */

@media(max-width:900px){
    .region-hero{
        height:260px;
        border-radius:0;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

    .region-section{
        padding:0 0 60px;
    }

    .region-hero{
        width:100%;
        height:320px;
        position:relative;
        overflow:hidden;
        border-radius:0;
        margin:0 0 70px;
    }

    .region-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }

    .region-quote{
        font-size:28px;
        padding:0 12px;
    }
}

/* =========================
GRID
========================= */

.region-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

@media(max-width:1000px){
    .region-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:700px){
    .region-grid{grid-template-columns:1fr;}
}

/* =========================
CARD
========================= */

.region-card{
    background:#fff;
    border-radius:22px;
    overflow:visible;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    cursor:pointer;
}

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

.region-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

/* bottom bar */

.region-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 18px;
}

.region-content h3{
    font-size:18px;
    margin:0;
}

.region-btn{
    background:#1f1f1f;
    color:#fff;
    padding:10px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.region-btn:hover{
    background:#b78b56;
}

/* =========================
POPUP OVERLAY
========================= */

.region-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    padding:20px;
    z-index:9999;
}

.region-card.active .region-popup{
    opacity:1;
    visibility:visible;
}

/* =========================
MODERN POPUP
========================= */

.region-modal{
    background:#fff;
    width:100%;
    max-width:900px;
    max-height:90vh;
    overflow:auto;
    border-radius:26px;
    padding:0;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

/* HERO */
.popup-hero{
    width:100%;
    height:240px;
    overflow:hidden;
    border-radius:26px 26px 0 0;
}

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

/* CLOSE */
.region-close{
    position:absolute;
    top:14px;
    right:16px;
    background:rgba(255,255,255,.9);
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
    cursor:pointer;
    z-index:10;
    transition:.2s;
}

.region-close:hover{
    transform:scale(1.05);
}

/* TEXT */
.region-modal h4,
.region-modal p,
.region-modal a,
.region-modal strong{
    padding:0 26px;
}

.region-modal h4{
    margin-top:18px;
    margin-bottom:10px;
    font-size:26px;
}

.region-modal p{
    color:#444;
    line-height:1.7;
    font-size:15px;
    margin-bottom:18px;
}

.region-modal a{
    color:#b78b56;
    font-weight:600;
    text-decoration:none;
}

.region-modal a:hover{
    text-decoration:underline;
}

/* LISTS */
.region-modal ul{
    list-style:none;
    padding:0 26px;
    margin:0 0 16px;
}

.region-modal ul li{
    background:#f7f7f7;
    padding:10px 12px;
    border-radius:12px;
    margin-bottom:8px;
    transition:.2s;
}

.region-modal ul li:hover{
    background:#eee;
}

/* =========================
🎬 VIDEO + 🗺️ MAP (NEW CARDS)
========================= */

.region-modal video,
.region-modal iframe{
    width:calc(100% - 52px);
    margin:18px 26px 26px;

    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

    overflow:hidden;
    background:#000;
    border:none;

    transition:.25s ease;
}

.region-modal video:hover,
.region-modal iframe:hover{
    transform:translateY(-2px);
}

/* =========================
MOBILE POPUP
========================= */

@media(max-width:700px){

    .region-modal{
        border-radius:18px;
    }

    .popup-hero{
        height:180px;
    }

    .region-modal h4,
    .region-modal p,
    .region-modal a,
    .region-modal strong{
        padding:0 18px;
    }

    .region-modal ul{
        padding:0 18px;
    }

    .region-modal video,
    .region-modal iframe{
        width:calc(100% - 36px);
        border-radius:14px;
    }
}


/* =========================
NATURE SECTION
FULL WIDTH CLEAN HEADER
========================= */

/* BASE */

.nature-section{
    font-family:'Inter',sans-serif;
    background:#f6f4ef;

    padding:0 0 80px;

    overflow:hidden;
}

.nature-section *{
    box-sizing:border-box;
}

/* =========================
FULL WIDTH HERO
========================= */

.nature-hero{

    width:100vw;

    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);

    height:320px;

    position:relative;
    overflow:hidden;

    border-radius:0;

    margin-bottom:70px;

    background-size:cover;
    background-position:center;
}

/* DARK OVERLAY */

.nature-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.42);
}

/* HERO CONTENT */

.nature-hero-content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;

    padding:20px;
}

/* HERO TEXT */

.nature-eyebrow{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;

    line-height:1.8;

    max-width:900px;
}

/* =========================
INTRO
========================= */

/* INTRO */

.nature-intro{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
    padding:0 20px;
}

/* SMALL LUXURY TEXT */

.nature-mini-title{
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;

    color:#b78b56;

    margin-bottom:18px;

    opacity:.9;
}

/* MAIN TITLE */

.nature-title{
    font-size:clamp(38px,5vw,68px);

    line-height:1.08;

    margin-bottom:22px;

    font-family:'Playfair Display', serif;
    font-style:italic;
    font-weight:500;

    color:#1f1f1f;
}

/* SUBTEXT */

.nature-lead{
    max-width:760px;

    margin:auto;

    font-size:18px;
    line-height:1.9;

    color:#5c5c5c;

    font-style:italic;
}

/* MOBILE */

@media(max-width:700px){

    .nature-title{
        font-size:42px;
    }

    .nature-lead{
        font-size:16px;
        line-height:1.8;
    }

    .nature-mini-title{
        letter-spacing:3px;
        font-size:11px;
    }

}

/* =========================
MAIN LAYOUT
========================= */

.nature-wrapper{
    max-width:1100px;

    margin:0 auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:16px;

    padding:0 20px;
}

/* LEFT COLUMN */

.nature-left{
    display:grid;

    grid-template-rows:1fr 1fr;

    gap:16px;
}

/* IMAGES */

.nature-img{
    width:100%;

    height:100%;

    min-height:240px;

    object-fit:cover;

    border-radius:16px;

    display:block;
}

/* TEXT BLOCK */

.nature-text{
    background:#fff;

    padding:32px;

    border-radius:16px;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.nature-text p{
    color:#333;

    line-height:1.8;

    font-size:15px;
}

.nature-highlight{
    color:#c47a5a;

    font-style:italic;

    font-weight:600;
}

/* =========================
BOTTOM IMAGE
========================= */

.nature-bottom{
    max-width:1100px;

    margin:18px auto 0;

    padding:0 20px;
}

.nature-bottom img{
    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:16px;

    display:block;
}

/* =========================
TABLET
========================= */

@media(max-width:900px){

    .nature-hero{
        height:260px;
    }

    .nature-wrapper{
        grid-template-columns:1fr;
    }

    .nature-left{
        grid-template-rows:auto;
    }

    .nature-img{
        height:240px;
    }

    .nature-bottom img{
        height:260px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

    .nature-section{
        padding:0 0 60px;
    }

    .nature-hero{
        height:210px;

        margin-bottom:40px;
    }

    .nature-eyebrow{
        font-size:11px;

        letter-spacing:2px;

        padding:0 12px;
    }

    .nature-title{
        font-size:40px;
    }

    .nature-lead{
        font-size:15px;
    }

    .nature-wrapper{
        padding:0 16px;
    }

    .nature-text{
        padding:24px;
    }

    .nature-text p{
        font-size:14px;
    }

    .nature-bottom{
        padding:0 16px;
    }

    .nature-bottom img{
        height:220px;
    }

}




/* =========================
4. LOCAL LIFE & CULTURE
FULL WIDTH HERO + MOBILE
========================= */

/* BASE */

.culture-section{
    font-family:'Inter',sans-serif;
    background:#f6f4ef;

    padding:0 0 80px;

    color:#1f1f1f;

    overflow:hidden;
}

.culture-section *{
    box-sizing:border-box;
}

/* =========================
FULL WIDTH HERO
========================= */

.culture-hero{

    width:100vw;

    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);

    height:320px;

    position:relative;

    overflow:hidden;

    border-radius:0;

    margin-bottom:70px;

    background:url('https://costablancarural.com/wp-content/uploads/2026/04/flamingo.jpg') center/cover no-repeat;
}

/* OVERLAY */

.culture-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);
}

/* HERO CONTENT */

.culture-hero-content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;

    padding:20px;
}

/* HERO TITLE */

.culture-hero-content h2{
    font-family:'Playfair Display',serif;

    font-size:clamp(40px,6vw,72px);

    line-height:1.1;

    margin:0 0 10px;
}

/* HERO SUBTITLE */

.culture-hero-content p{
    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

    opacity:.9;
}

/* =========================
CONTAINER
========================= */

.culture-container{
    max-width:1100px;

    margin:0 auto;

    padding:0 20px;
}

/* =========================
BLOCKS
========================= */

.culture-block{
    margin-bottom:60px;
}

.culture-block h2{
    font-family:'Playfair Display',serif;

    font-size:32px;

    line-height:1.2;

    margin-bottom:16px;
}

.culture-block p{
    color:#555;

    line-height:1.8;

    font-size:15px;
}

/* =========================
GRID
========================= */

.culture-grid{
    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:16px;

    margin-top:20px;
}

/* =========================
CARD
========================= */

.culture-card{
    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 6px 20px rgba(0,0,0,.06);

    display:flex;
    flex-direction:column;

    transition:.3s ease;
}

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

/* IMAGE */

.culture-card img{
    width:100%;

    height:210px;

    object-fit:cover;

    display:block;
}

/* CARD TITLE */

.culture-card h3{
    margin:14px 16px 8px;

    font-size:18px;
}

/* CARD TEXT */

.culture-card p{
    margin:0 16px 18px;

    font-size:14px;

    color:#555;
}

/* =========================
IMAGE + STORY BLOCK
========================= */

.culture-hero-img{
    width:100%;

    height:360px;

    object-fit:cover;

    border-radius:18px;

    margin-top:20px;

    display:block;
}

/* STORY TEXT */

.culture-text{
    background:#fff;

    border-radius:18px;

    padding:28px;

    margin-top:16px;

    overflow:hidden;
}

.culture-text p{
    color:#555;

    line-height:1.8;

    font-size:15px;
}

.culture-text hr{
    border:none;

    border-top:1px solid #eee;

    margin:20px 0;
}

/* =========================
TABLET
========================= */

@media(max-width:900px){

    .culture-hero{
        height:260px;
    }

    .culture-grid{
        grid-template-columns:1fr;
    }

    .culture-hero-img{
        height:280px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

    .culture-section{
        padding:0 0 60px;
    }

    /* HERO */

    .culture-hero{
        height:210px;

        margin-bottom:40px;
    }

    .culture-hero-content h2{
        font-size:42px;
    }

    .culture-hero-content p{
        font-size:11px;

        letter-spacing:2px;

        padding:0 12px;
    }

    /* CONTAINER */

    .culture-container{
        padding:0 16px;
    }

    /* BLOCKS */

    .culture-block{
        margin-bottom:44px;
    }

    .culture-block h2{
        font-size:28px;
    }

    .culture-block p{
        font-size:14px;
    }

    /* CARDS */

    .culture-card{
        border-radius:16px;
    }

    .culture-card img{
        height:220px;
    }

    /* STORY IMAGE */

    .culture-hero-img{
        height:220px;

        border-radius:16px;
    }

    /* STORY TEXT */

    .culture-text{
        padding:22px;

        border-radius:16px;
    }

    .culture-text p{
        font-size:14px;
    }

}




/* =========================
LIVING SECTION
FULL WIDTH HERO + PREMIUM LOOK
========================= */

.living-section{
    font-family:'Inter',sans-serif;
    background:#f6f4ef;
    padding:0 0 80px;
    color:#1f1f1f;
    overflow:hidden;
}

.living-section *{
    box-sizing:border-box;
}

/* =========================
FULL WIDTH HERO (PREMIUM)
========================= */

.living-hero{
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    height:340px;
    position:relative;
    overflow:hidden;
    border-radius:0;
    margin-bottom:70px;
}

/* BACKGROUND IMAGE (premium depth) */

.living-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:url('https://costablancarural.com/wp-content/uploads/2026/04/landschap.jpg') center/cover no-repeat;

    transform:scale(1.05);

    filter:saturate(1.05) contrast(1.05);
}

/* PREMIUM FADE OVERLAY */

.living-hero .overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.30),
        rgba(0,0,0,.20),
        rgba(0,0,0,.45)
    );
}

/* =========================
HERO CONTENT (GLASS EFFECT)
========================= */

/* =========================
HERO CONTENT
========================= */

.hero-inner{
    position:absolute;
    inset:0;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:20px;

    /* donkere cinematic fade */
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.25),
        rgba(0,0,0,.25),
        rgba(0,0,0,.25)
    );
}

/* =========================
TOP TEXT
========================= */

.eyebrow{
    font-size:13px;
    font-weight:600;

    letter-spacing:4px;
    text-transform:uppercase;

    color:#d79a7f;

    margin-bottom:200px;

  
}

/* =========================
MAIN TEXT
========================= */

.sub{
    font-family:'Playfair Display',serif;

    font-size:24px;
    font-weight:400;

    line-height:1.5;
    letter-spacing:.5px;

    color:#e2aa8f;

    max-width:760px;

    text-shadow:
        0 3px 12px rgba(0,0,0,.85),
        0 8px 30px rgba(0,0,0,.55);
}

/* =========================
CONTAINER
========================= */

.living-section .container{
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
}

/* =========================
BLOCKS
========================= */

.living-section .block{
    margin-bottom:60px;
}

.living-section h2{
    font-family:'Playfair Display',serif;
    font-size:30px;
    margin-bottom:16px;
    line-height:1.2;
}

.living-section p2{
    color:#e2aa8f;
    line-height:1.8;
    font-size:15px;
}


.living-section p{
    color:#0a0000;
    line-height:1.8;
    font-size:15px;
}

.living-section .center{
    text-align:center;
}

/* =========================
QUOTE
========================= */

.living-section .quote{
    font-style:italic;
    color:#c47a5a;
    font-weight:600;
    margin-top:16px;
}

/* =========================
IMAGE + TEXT ROW
========================= */

.living-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    align-items:center;
}

/* IMAGE */

.card2 img{
    width:100%;
    border-radius:16px;
    object-fit:cover;
    display:block;
}

/* =========================
GRID CARDS
========================= */

.living-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    margin-top:20px;
}

/* CARD */

.living-card{
    background:#fff;
    border-radius:16px;
    padding:26px;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
    text-align:center;
    font-weight:500;
    color:#333;
}

/* =========================
TABLET
========================= */

@media(max-width:900px){

    .living-hero{
        height:260px;
    }

    .living-row{
        grid-template-columns:1fr;
    }

    .living-grid{
        grid-template-columns:1fr;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

    .living-section{
        padding:0 0 60px;
    }

    .living-hero{
        height:220px;
        margin-bottom:40px;
    }

    .eyebrow{
        font-size:11px;
        letter-spacing:2px;
    }

    .sub{
        font-size:14px;
    }

    .living-section .container{
        padding:0 16px;
    }

    .living-section .block{
        margin-bottom:44px;
    }

    .living-section h2{
        font-size:26px;
    }

    .living-section p{
        font-size:14px;
    }

    .living-grid{
        gap:12px;
    }

    .living-card{
        padding:22px;
        border-radius:14px;
    }
}






/* =========================
HOMES SECTION
FULL WIDTH HERO + MOBILE FIX
========================= */

.homes-section{
    font-family:'Inter',sans-serif;
    background:#f6f4ef;

    padding:0 0 80px;

    color:#1f1f1f;

    overflow:hidden;
}

.homes-section *{
    box-sizing:border-box;
}

/* =========================
FULL WIDTH HERO
========================= */

.homes-hero{

    width:100vw;

    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);

    height:320px;

    position:relative;

    overflow:hidden;

    border-radius:0;

    margin-bottom:70px;

    background:url('https://costablancarural.com/wp-content/uploads/2026/04/hero.png') center/cover no-repeat;
}

/* OVERLAY */

.homes-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);
}

/* HERO CONTENT */

.homes-hero-content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;

    padding:20px;
}

/* TEXT */

.homes-hero-content p{
    margin:0;

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;
}

/* QUOTE */

.homes-hero-content .quote{
    margin-top:10px;

    font-style:italic;

    opacity:.9;
}

/* =========================
CONTAINER
========================= */

.homes-container{
    max-width:1100px;

    margin:0 auto;

    padding:0 20px;
}

/* =========================
FILTER
========================= */

.homes-filter{
    display:flex;

    gap:10px;

    justify-content:center;

    margin-bottom:40px;
}

.homes-filter select,
.homes-filter button{
    padding:10px 14px;

    border-radius:8px;

    border:1px solid #ddd;

    font-family:'Inter',sans-serif;
}

.homes-filter button{
    background:#c47a5a;

    color:#fff;

    cursor:pointer;

    border:none;
}

/* =========================
LUX BLOCK
========================= */

.lux-block{
    background:#fff;

    border-radius:16px;

    padding:30px;

    margin-bottom:60px;

    box-shadow:0 0px 0px rgba(0,0,0,.06);
}

.lux-inner .eyebrow{
    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    color:#c47a5a;
}

.lux-inner h2{
    font-family:'Playfair Display',serif;

    font-size:28px;

    margin:10px 0 20px;

    line-height:1.2;
}

.lux-content{
    display:grid;

    grid-template-columns:1fr 2fr;

    gap:20px;
}

.lux-highlight{
    background:#f6f4ef;

    padding:20px;

    border-radius:12px;
}

.lux-address{
    margin-top:10px;

    font-style:italic;

    color:#c47a5a;
}

.lux-description p{
    color:#555;

    line-height:1.8;

    font-size:15px;
}

/* =========================
GRID
========================= */

.homes-grid{
    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:20px;
}

/* =========================
CARD
========================= */

.home-card{
    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 6px 20px rgba(0,0,0,.06);

    display:flex;
    flex-direction:column;
}

/* =========================
SLIDER
========================= */

.slider-container{
    position:relative;

    overflow:hidden;
}

.slider-wrapper{
    display:flex;

    transition:transform .4s ease;
}

.slider-wrapper img{
    width:100%;

    flex-shrink:0;

    object-fit:cover;

    height:300px;

    display:block;
}

/* NAV */

.nav{
    position:absolute;

    top:50%;

    transform:translateY(-50%);

    background:rgba(255,255,255,.85);

    border:none;

    padding:8px 12px;

    cursor:pointer;

    z-index:2;
}

.nav.prev{ left:10px; }
.nav.next{ right:10px; }

/* =========================
CONTENT
========================= */

.home-content{
    padding:20px;
}

.price{
    color:#c47a5a;

    font-weight:600;
}

.location{
    color:#777;

    font-size:14px;
}

.desc{
    margin-top:10px;

    color:#555;

    font-size:14px;

    line-height:1.6;
}

/* =========================
BUTTONS
========================= */

.btn-view,
.btn-sell{
    display:inline-block;

    margin-top:12px;

    padding:10px 14px;

    border-radius:8px;

    text-decoration:none;

    font-size:14px;
}

.btn-view{
    background:#c47a5a;

    color:#fff;
}

.btn-sell{
    background:#1f1f1f;

    color:#fff;
}

/* =========================
TABLET
========================= */

@media(max-width:900px){

    .homes-hero{
        height:260px;
    }

    .homes-grid{
        grid-template-columns:1fr;
    }

    .lux-content{
        grid-template-columns:1fr;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

    .homes-section{
        padding:0 0 60px;
    }

    /* HERO */

    .homes-hero{
        height:210px;

        margin-bottom:40px;
    }

    .homes-hero-content p{
        font-size:11px;

        letter-spacing:2px;
    }

    /* CONTAINER */

    .homes-container{
        padding:0 16px;
    }

    /* LUX */

    .lux-block{
        padding:22px;

        border-radius:14px;
    }

    .lux-inner h2{
        font-size:24px;
    }

    .lux-content{
        gap:16px;
    }

    .lux-description p{
        font-size:14px;
    }

    /* GRID */

    .homes-grid{
        gap:16px;
    }

    /* CARD */

    .home-card{
        border-radius:14px;
    }

    /* SLIDER */

    .slider-wrapper img{
        height:220px;
    }

    /* BUTTONS */

    .btn-view,
    .btn-sell{
        width:100%;

        text-align:center;
    }

}








/* =========================
INFO SECTION
FULL WIDTH HERO + MOBILE FIX
========================= */

.info-section{
    font-family:'Inter',sans-serif;
    background:#f6f4ef;

    padding:0 0 80px;

    color:#1f1f1f;

    overflow:hidden;
}

.info-section *{
    box-sizing:border-box;
}

/* =========================
FULL WIDTH HERO
========================= */

.info-hero{

    width:100vw;

    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);

    height:320px;

    position:relative;

    overflow:hidden;

    border-radius:0;

    margin-bottom:70px;

    background:url('https://costablancarural.com/wp-content/uploads/2026/04/laromana.jpg') center/cover no-repeat;
}

/* OVERLAY */

.info-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);
}

/* HERO CONTENT */

.info-hero-content{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:#fff;

    padding:20px;
}

/* TITLE */

.info-hero-content h2{
    font-family:'Playfair Display',serif;

    font-size:clamp(34px,5vw,60px);

    margin:0;

    line-height:1.1;
}

/* SUBTITLE */

.info-hero-content p{
    margin-top:10px;

    font-size:14px;

    opacity:.9;

    letter-spacing:2px;
}

/* =========================
CONTAINER
========================= */

.info-container{
    max-width:1100px;

    margin:0 auto;

    padding:0 20px;
}

/* =========================
CARD WRAPPER
========================= */

.info-card{
    background:#fff;

    border-radius:16px;

    padding:30px;

    box-shadow:0 6px 20px rgba(0,0,0,.06);
}

/* =========================
GRID
========================= */

.info-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;
}

/* =========================
BLOCKS
========================= */

.info-block{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* =========================
ITEM
========================= */

.info-item{
    padding-bottom:18px;

    border-bottom:1px solid #eee;
}

.info-label{
    font-weight:600;

    color:#c47a5a;

    margin-bottom:8px;

    font-size:14px;
}

.info-item p{
    margin:0;

    color:#555;

    font-size:14px;

    line-height:1.7;
}

/* =========================
EMERGENCY
========================= */

.info-emergency{
    margin-top:30px;

    padding:20px;

    border-radius:12px;

    background:#f6f4ef;

    font-size:14px;

    line-height:1.8;

    color:#333;
}

.info-emergency strong{
    color:#c47a5a;
}

/* =========================
TABLET
========================= */

@media(max-width:900px){

    .info-hero{
        height:260px;
    }

    .info-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

    .info-section{
        padding:0 0 60px;
    }

    /* HERO */

    .info-hero{
        height:210px;

        margin-bottom:40px;
    }

    .info-hero-content h2{
        font-size:34px;
    }

    .info-hero-content p{
        font-size:12px;

        letter-spacing:1.5px;
    }

    /* CONTAINER */

    .info-container{
        padding:0 16px;
    }

    /* CARD */

    .info-card{
        padding:22px;

        border-radius:14px;
    }

    /* GRID */

    .info-grid{
        gap:20px;
    }

    /* EMERGENCY */

    .info-emergency{
        padding:16px;

        border-radius:12px;
    }

}




/* =========================
Footer
========================= */





#lr-footer{
    position: relative;

    background:
    linear-gradient(
        180deg,
        #1c1c1c 0%,
        #111 100%
    );

    color: #f5f1ea;

    padding: 90px 24px 40px;

    overflow: hidden;
}

/* CONTAINER */

.footer-container{
    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TOP */

.footer-top{
    display: flex;
    justify-content: space-between;
    gap: 80px;

    padding-bottom: 60px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* BRAND */

.footer-brand{
    max-width: 420px;
}

.footer-brand h2{
    font-size: clamp(32px,4vw,52px);
    line-height: 1.1;
    margin-bottom: 22px;

    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-brand p{
    color: rgba(255,255,255,.72);
    line-height: 1.9;
    font-size: 15px;
}

/* LINKS */

.footer-links{
    display: flex;
    gap: 70px;
}

.footer-column{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4{
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 14px;

    color: #c6a77d;
}

.footer-column a,
.footer-column span{
    color: rgba(255,255,255,.72);

    text-decoration: none;

    transition: .3s;

    font-size: 15px;
}

.footer-column a:hover{
    color: #fff;
    transform: translateX(4px);
}

/* BOTTOM */

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 30px;

    color: rgba(255,255,255,.5);

    font-size: 13px;
}

.footer-quote{
    font-style: italic;
    color: rgba(255,255,255,.38);
}

/* MOBILE */

@media(max-width:900px){

    .footer-top{
        flex-direction: column;
        gap: 50px;
    }

    .footer-links{
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-bottom{
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

}

@media(max-width:700px){

    #lr-footer{
        padding: 70px 20px 30px;
    }

    .footer-brand h2{
        font-size: 36px;
    }

    .footer-links{
        flex-direction: column;
        gap: 30px;
    }

}



/* =========================
SLIDER
========================= */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.slider-wrapper img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.slider-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
}

.slider-container .nav.prev {
  left: 10px;
}

.slider-container .nav.next {
  right: 10px;
}






