/* ══════════════════════════════════════════════════
   PURA VIDA CASAS — attraction-details.css (Premium Version)
   New Discovery Layout — Replicating Reference Style
   ══════════════════════════════════════════════════ */

:root {
    --text-dark: #121212;
    --text-mid: #4a4a4a;
    --brand-teal: #008080;
    --brand-cream: #fbf9f4;
    --accent-gold: #c5a059;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'Raleway', sans-serif;
    --ls-1: 1px;
    --ls-2: 2px;
}

body {
    font-family: var(--sans);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #fff;
}

/* --- Hero Section --- */
.attr-hero-new {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.attr-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.attr-hero-content {
    position: relative;
    z-index: 10;
}

.attr-main-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    margin: 0;
}

/* --- Breadcrumb Bar --- */
.attr-breadcrumb-bar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.attr-breadcrumb-bar .breadcrumb-item {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: var(--ls-1);
}

.attr-breadcrumb-bar .breadcrumb-item a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
}

.attr-breadcrumb-bar .breadcrumb-item a:hover {
    color: var(--brand-teal);
}

.attr-breadcrumb-bar .breadcrumb-item.active {
    color: var(--brand-teal);
    font-weight: 600;
}

.attr-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    font-size: 0.8rem;
    color: #ccc;
}

/* --- Details Section --- */
.attr-details-main {
    background-color: #fff;
    overflow: hidden;
}

.attr-main-img-wrap {
    position: relative;
    z-index: 5;
}

/* --- Info Box --- */
.attr-info-box-luxury {
    border: 1px solid #eeeeee;
    padding: 50px 40px;
    background: #fff;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.info-box-line {
    width: 40px;
    height: 1px;
    background: #000;
    margin-bottom: 30px;
}

.attr-description {
    font-size: 1.05rem;
    line-height: 1.8;
}

.attr-visit-link a {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.attr-visit-link a:hover {
    color: var(--brand-teal);
    transform: translateX(5px);
}

/* --- Decorative Dot Patterns --- */
.dot-pattern {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 12px 12px;
    z-index: 1;
}

.dot-pattern.top-right {
    top: -40px;
    right: -40px;
}

.dot-pattern.bottom-right {
    bottom: -40px;
    right: -40px;
}

/* --- Gallery & Features Reset --- */
.attr-story-title {
    font-family: var(--serif);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .attr-hero-new {
        height: 250px;
    }
    
    .attr-info-box-luxury {
        padding: 40px 25px;
    }
    
    .dot-pattern {
        display: none;
    }
}
