/* YourBachParty.com — Main Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #FDFBF7;
  --dark:    #14121F;
  --accent:  #F0305E;
  --accentH: #d42252;
  --gold:    #C8943A;
  --light:   #F4F1EB;
  --border:  #E6E2D8;
  --text:    #252336;
  --muted:   #7A7990;
  --white:   #FFFFFF;
  --nav-h:   66px;
  --radius:  14px;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); font-size: 15.5px; line-height: 1.7; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.18; color: var(--dark); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 200; background: var(--dark); height: var(--nav-h); display: flex; align-items: center; padding: 0 28px; box-shadow: 0 2px 24px rgba(0,0,0,.35); }
.nav-inner { max-width: 1240px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 28px; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 5px; padding: 8px 13px; font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.78); border-radius: 7px; transition: all .18s; white-space: nowrap; }
.nav-links > li > a:hover { color: var(--white); background: rgba(255,255,255,.09); }
.nav-links > li > a svg { opacity:.5; transition: transform .2s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); opacity:1; }
.dropdown { position: absolute; top: calc(100% + 10px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 13px; padding: 7px; min-width: 210px; box-shadow: 0 16px 48px rgba(0,0,0,.14); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s; list-style: none; }
.nav-links > li:hover .dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.dropdown li a { display: block; padding: 8px 13px; font-size: 13.5px; color: var(--text); border-radius: 7px; transition: background .14s; }
.dropdown li a:hover { background: var(--light); color: var(--accent); }
.dropdown li:last-child a { color: var(--accent); font-weight: 600; }
.nav-search { margin-left: auto; display: flex; align-items: center; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 9px; overflow: hidden; transition: all .2s; }
.nav-search:focus-within { background: rgba(255,255,255,.14); border-color: var(--accent); }
.nav-search input { background: transparent; border: none; outline: none; padding: 8px 14px; font-size: 13.5px; color: var(--white); width: 174px; font-family: 'DM Sans', sans-serif; }
.nav-search input::placeholder { color: rgba(255,255,255,.35); }
.nav-search button { background: transparent; border: none; padding: 8px 12px; color: rgba(255,255,255,.5); cursor: pointer; transition: color .2s; }
.nav-search button:hover { color: var(--accent); }

/* HERO */
.hero { background: var(--dark); padding: 64px 28px 0; overflow: hidden; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 72% 40%, rgba(240,48,94,.13) 0%, transparent 58%), radial-gradient(ellipse at 20% 80%, rgba(61,44,141,.15) 0%, transparent 55%); pointer-events: none; }
.hero-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; position: relative; z-index: 1; }
.hero-text { padding-bottom: 64px; }
.hero-pill { display: inline-flex; align-items: center; gap: 7px; background: rgba(240,48,94,.14); border: 1px solid rgba(240,48,94,.28); color: #FF7DA0; font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 4.6vw, 62px); font-weight: 900; color: var(--white); line-height: 1.07; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-desc { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.72; margin-bottom: 34px; max-width: 400px; }
.hero-searchbar { display: flex; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.35); max-width: 470px; }
.hero-searchbar input { flex:1; border:none; outline:none; padding: 15px 20px; font-size: 14.5px; font-family: 'DM Sans', sans-serif; color: var(--text); }
.hero-searchbar input::placeholder { color: var(--muted); }
.hero-searchbar button { background: var(--accent); border: none; padding: 15px 22px; color: white; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .18s; white-space: nowrap; }
.hero-searchbar button:hover { background: var(--accentH); }
.hero-stats { display: flex; gap: 36px; margin-top: 32px; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--white); }
.stat-l { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 1px; }
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 215px 155px; gap: 10px; }
.mosaic-cell { border-radius: 14px 14px 0 0; overflow: hidden; position: relative; background: linear-gradient(145deg, #9B1B5A 0%, #5C1A8E 100%); }
.mosaic-cell:first-child { grid-row: span 2; }
.mosaic-cell img { width: 100%; height: 100%; object-fit: cover; }
.mc-label { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,.52); color: white; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; backdrop-filter: blur(6px); }

/* LAYOUT */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.col-layout { display: grid; grid-template-columns: 1fr 334px; gap: 48px; align-items: start; }

/* SECTION HEADINGS */
.sec-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.sec-title { font-size: 28px; font-weight: 700; }
.sec-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 26px; }
.sec-link { font-size: 13.5px; font-weight: 600; color: var(--accent); }
.sec-link:hover { text-decoration: underline; }

/* DESTINATION TABS & GRID */
.dest-sec { padding: 68px 0 52px; }
.dest-tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 30px; }
.d-tab { padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--muted); border: none; background: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .18s; }
.d-tab.on { color: var(--accent); border-bottom-color: var(--accent); }
.d-tab:hover:not(.on) { color: var(--text); }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dest-card { border-radius: 16px; overflow: hidden; background: var(--white); box-shadow: 0 2px 14px rgba(0,0,0,.07); transition: transform .22s, box-shadow .22s; display: block; }
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,.12); }
.dc-img { height: 162px; position: relative; overflow: hidden; background: linear-gradient(145deg, #9B1B5A 0%, #5C1A8E 100%); }
.dc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.dest-card:hover .dc-img img { transform: scale(1.05); }
.dc-badge { position: absolute; top: 11px; left: 11px; background: var(--accent); color: white; font-size: 10px; font-weight: 700; padding: 3px 11px; border-radius: 100px; letter-spacing: .05em; text-transform: uppercase; }
.dc-body { padding: 15px 17px 17px; }
.dc-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dc-foot { display: flex; align-items: center; justify-content: space-between; }
.stars { color: var(--gold); font-size: 12.5px; letter-spacing: 1px; }
.dc-cta { font-size: 12.5px; font-weight: 700; color: var(--accent); }

/* ARTICLE LIST (homepage) */
.articles-sec { padding: 52px 0 72px; }
.art-list { display: flex; flex-direction: column; gap: 20px; }
.art-card { display: grid; grid-template-columns: 140px 1fr; column-gap: 16px; background: var(--white); border-radius: 14px; border: 1.5px solid var(--border); overflow: hidden; transition: border-color .18s, box-shadow .18s; }
.art-card:hover { border-color: var(--accent); box-shadow: 0 4px 22px rgba(240,48,94,.1); }
.ac-img { min-height: 110px; overflow: hidden; background: linear-gradient(145deg, #E8304A 0%, #F0950A 100%); flex-shrink: 0; }
.ac-img img { width: 100%; height: 100%; object-fit: cover; min-height: 110px; }
.ac-body { padding: 14px 20px 14px 4px; display: flex; flex-direction: column; gap: 5px; min-width: 0; overflow: hidden; }
.ac-tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); }
.ac-title { font-family: 'Playfair Display', serif; font-size: 16.5px; font-weight: 700; line-height: 1.3; color: var(--dark); transition: color .16s; word-break: break-word; overflow-wrap: break-word; }
.art-card:hover .ac-title { color: var(--accent); }
.ac-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ac-meta { font-size: 11.5px; color: var(--muted); margin-top: auto; padding-top: 4px; }

/* SIDEBAR */
.sidebar { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 20px; }
.sw { background: var(--white); border-radius: 16px; border: 1.5px solid var(--border); overflow: hidden; }
.lf-hd { background: var(--dark); padding: 20px 22px; }
.lf-hd h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.lf-hd p { color: rgba(255,255,255,.55); font-size: 12.5px; line-height: 1.5; }
.lf-body { padding: 18px 20px; }
.ff { margin-bottom: 12px; }
.ff label { display: block; font-size: 11px; font-weight: 700; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .05em; }
.ff input, .ff select, .ff textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 9px; padding: 8px 12px; font-size: 13.5px; font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--cream); outline: none; transition: border-color .18s; }
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--accent); background: var(--white); }
.ff textarea { resize: vertical; min-height: 72px; }
.btn-submit { display: block; width: 100%; padding: 13px; background: var(--accent); color: white; font-size: 14.5px; font-weight: 700; text-align: center; border: none; border-radius: 10px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .18s, transform .1s; }
.btn-submit:hover { background: var(--accentH); transform: translateY(-1px); }

/* AD BLOCKS */
.ad-wrap { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); }
.ad-lbl { font-size: 10px; text-align: center; color: var(--muted); padding: 5px; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .06em; background: var(--white); }
.ad-block { height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 16px; text-decoration: none; }
.ad-icon { font-size: 28px; line-height: 1; }
.ad-block-title { color: white; font-size: 20px; font-weight: 700; font-family: 'Playfair Display', serif; }
.ad-block-sub { color: rgba(255,255,255,.75); font-size: 12px; text-align: center; line-height: 1.4; }
.ad-block-btn { background: white; border: none; border-radius: 7px; padding: 7px 20px; font-size: 12.5px; font-weight: 700; cursor: pointer; margin-top: 4px; display: inline-block; }
.ad-hotels  { background: linear-gradient(135deg, #00307A 0%, #0057C2 100%); }
.ad-expedia { background: linear-gradient(135deg, #003580 0%, #1a6fd4 100%); }
.ad-vrbo    { background: linear-gradient(135deg, #1953a4 0%, #3879d8 100%); }
.ad-etsy    { background: linear-gradient(135deg, #E05000 0%, #F0741E 100%); }
.ad-tours   { background: linear-gradient(135deg, #1A6C3A 0%, #2d9e5c 100%); }
.ad-hotels .ad-block-btn  { color: #00307A; }
.ad-expedia .ad-block-btn { color: #003580; }
.ad-vrbo .ad-block-btn    { color: #1953a4; }
.ad-etsy .ad-block-btn    { color: #E05000; }
.ad-tours .ad-block-btn   { color: #1A6C3A; }

/* SIDEBAR LINKS */
.sl { padding: 18px 20px; }
.sl h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.sl ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sl li a { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 7px; transition: color .16s; line-height: 1.4; }
.sl li a::before { content: '\00BB'; color: var(--accent); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.sl li a:hover { color: var(--accent); }

/* ARTICLE / DESTINATION PAGE */
.breadcrumb-bar { background: var(--light); border-bottom: 1px solid var(--border); padding: 12px 28px; }
.bc-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
.bc-inner a { color: var(--muted); transition: color .15s; }
.bc-inner a:hover { color: var(--accent); }
.bc-sep { opacity: .5; }
.bc-inner span { color: var(--text); font-weight: 500; }
.page-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.article-layout { display: grid; grid-template-columns: 1fr 334px; gap: 52px; align-items: start; padding: 48px 0 72px; }
.article-header { margin-bottom: 32px; }
.art-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.art-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); background: rgba(240,48,94,.1); padding: 4px 12px; border-radius: 100px; }
.article-header h1 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.art-meta { display: flex; align-items: center; gap: 18px; font-size: 13px; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.share-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.share-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 7px 15px; border-radius: 8px; font-size: 12.5px; font-weight: 600; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; transition: opacity .18s; color: white; }
.share-btn:hover { opacity: .85; }
.sb-fb { background: #1877F2; } .sb-tw { background: var(--dark); } .sb-pin { background: #E60023; }
.sb-li { background: #0A66C2; } .sb-rd { background: #FF4500; }
.art-hero { border-radius: 18px; overflow: hidden; margin-bottom: 36px; }
.art-hero img { width: 100%; height: 400px; object-fit: cover; }
.disclosure { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; margin-bottom: 32px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.disclosure a { color: var(--accent); text-decoration: underline; }

/* ARTICLE BODY */
.art-body { font-size: 15.5px; line-height: 1.78; color: var(--text); }
.art-body p { margin-bottom: 20px; }
.art-body h2 { font-size: 26px; font-weight: 700; margin: 40px 0 16px; padding-top: 8px; }
.art-body h3 { font-size: 20px; font-weight: 700; margin: 30px 0 12px; }
.art-body ol, .art-body ul { padding-left: 22px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.art-body li { line-height: 1.7; }
.art-body a { color: var(--accent); text-decoration: underline; transition: color .15s; }
.art-body a:hover { color: var(--accentH); }
.art-body img { border-radius: 12px; margin: 24px 0; max-width: 100%; }
.aff-link { display: inline-flex; align-items: center; gap: 5px; background: rgba(240,48,94,.08); border: 1px solid rgba(240,48,94,.2); color: var(--accent) !important; text-decoration: none !important; padding: 2px 12px; border-radius: 100px; font-size: 14px; font-weight: 600; transition: background .15s; }
.aff-link:hover { background: rgba(240,48,94,.15); }
.art-bottom-share { border-top: 1.5px solid var(--border); padding-top: 28px; margin-top: 40px; }

/* INLINE BOOKING WIDGET */
.booking-widget { background: var(--dark); border-radius: 16px; padding: 22px 24px; margin: 36px 0; }
.bw-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.bw-icon { font-size: 28px; }
.bw-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); }
.bw-sub { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 3px; }
.bw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.bw-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 11px; padding: 14px 12px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; transition: all .18s; text-decoration: none; }
.bw-item:hover { background: rgba(240,48,94,.3); border-color: var(--accent); transform: translateY(-2px); }
.bw-item-icon { font-size: 24px; line-height: 1; display: block; }
.bw-item-label { font-size: 13px; font-weight: 700; color: var(--white); display: block; }
.bw-item-cta { font-size: 11px; color: #FF7DA0; font-weight: 600; display: block; }
.bw-disclaimer { font-size: 10.5px; color: rgba(255,255,255,.3); text-align: center; padding-top: 4px; }

/* TOC */
.toc-box { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; margin: 32px 0; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.toc-header { background: var(--dark); padding: 14px 22px; display: flex; align-items: center; gap: 10px; }
.toc-icon { font-size: 18px; }
.toc-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); }
.toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 8px; }
.toc-item-link { display: flex; align-items: flex-start; gap: 10px; padding: 9px 12px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.toc-item-link:hover { background: var(--light); }
.toc-h2-link .toc-item-num { width: 24px; height: 24px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.toc-h2-link .toc-item-text { font-size: 13.5px; font-weight: 600; color: var(--dark); line-height: 1.4; }
.toc-h2-link:hover .toc-item-text { color: var(--accent); }
.toc-h3-link { padding-left: 20px; }
.toc-h3-link .toc-item-dot { color: var(--accent); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.toc-h3-link .toc-item-text { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.toc-h3-link:hover .toc-item-text { color: var(--accent); }
@media (max-width: 600px) { .toc-grid { grid-template-columns: 1fr; } }

/* STAR RATING */
.star-rating { display: inline-flex; align-items: center; gap: 8px; background: var(--light); border: 1px solid var(--border); padding: 6px 14px; border-radius: 100px; margin: 12px 0; }
.star-rating .stars { color: var(--gold); font-size: 17px; }
.star-rating .rating-num { font-size: 13.5px; font-weight: 700; color: var(--dark); }

/* AMAZON BOX */
.amazon-box { background: var(--light); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; margin: 32px 0; }
.amazon-box-header { background: #FF9900; color: var(--dark); font-size: 14px; font-weight: 700; padding: 10px 18px; }
.amazon-box-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1px; background: var(--border); }
.amazon-item { background: var(--white); padding: 16px; display: flex; flex-direction: column; gap: 8px; transition: background .15s; text-decoration: none; }
.amazon-item:hover { background: var(--light); }
.amazon-item img { width: 100%; height: 120px; object-fit: contain; border-radius: 8px; }
.amazon-item-title { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; }
.amazon-item-price { font-size: 15px; font-weight: 700; color: var(--accent); }
.amazon-item-btn { font-size: 12px; font-weight: 700; color: #FF9900; }
.amazon-disclaimer { font-size: 10.5px; color: var(--muted); padding: 8px 18px; border-top: 1px solid var(--border); text-align: center; }

/* DESTINATION HERO */
.dest-hero { position: relative; height: 440px; overflow: hidden; }
.dest-hero img { width: 100%; height: 100%; object-fit: cover; }
.dest-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%); display: flex; align-items: flex-end; }
.dest-hero-content { max-width: 1240px; margin: 0 auto; padding: 40px 28px; width: 100%; }
.dest-hero-type { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 10px; }
.dest-hero-content h1 { color: white; font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.1; margin-bottom: 12px; }
.dest-hero-meta { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.7); font-size: 13.5px; }
.dest-stars { color: var(--gold); }
.booking-strip { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 28px; }
.booking-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 9px; font-size: 13.5px; font-weight: 600; transition: all .18s; color: white; }
.btn-hotels  { background: #0057C2; } .btn-hotels:hover  { background: #003f96; }
.btn-viator  { background: #1A3A6C; } .btn-viator:hover  { background: #0e2347; }
.btn-vrbo    { background: #1953a4; } .btn-vrbo:hover    { background: #103880; }
.dest-bottom-bookings { background: var(--light); border-radius: 16px; padding: 28px; margin: 40px 0; }
.dest-booking-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.dest-book-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; transition: transform .2s, box-shadow .2s; text-decoration: none; }
.dest-book-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.dbc-icon { font-size: 28px; }
.dbc-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--dark); }
.dbc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.dbc-btn { margin-top: auto; background: var(--accent); color: white; padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; }

/* RELATED */
.related-sec { padding: 0 0 72px; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rel-card { background: var(--white); border-radius: 14px; overflow: hidden; border: 1.5px solid var(--border); transition: transform .2s, box-shadow .2s; display: block; }
.rel-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.rc-img { height: 140px; overflow: hidden; background: linear-gradient(145deg, #1A52A8 0%, #0E3472 100%); }
.rc-img img { width: 100%; height: 100%; object-fit: cover; }
.rc-body { padding: 16px 18px; }
.rc-tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); margin-bottom: 6px; display: block; }
.rc-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; line-height: 1.28; transition: color .16s; color: var(--dark); }
.rel-card:hover .rc-title { color: var(--accent); }

/* PROMO */
.promo { background: linear-gradient(130deg, var(--dark) 0%, #251844 100%); padding: 72px 28px; text-align: center; }
.promo h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 12px; }
.promo p { color: rgba(255,255,255,.6); font-size: 16px; margin-bottom: 32px; }
.promo .cta-btn { display: inline-block; padding: 16px 44px; background: var(--accent); color: white; font-size: 15px; font-weight: 700; border-radius: 12px; transition: background .18s, transform .12s; }
.promo .cta-btn:hover { background: var(--accentH); transform: translateY(-2px); }

/* LOCATIONS + FOOTER */
.loc-strip { background: var(--light); padding: 48px 28px; border-top: 1.5px solid var(--border); }
.loc-inner { max-width: 1240px; margin: 0 auto; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.lc h5 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2.5px solid var(--accent); display: inline-block; font-family: 'DM Sans', sans-serif; }
.lc ul { list-style: none; columns: 2; column-gap: 8px; }
.lc li { break-inside: avoid; }
.lc li a { font-size: 12.5px; color: var(--muted); display: block; padding: 3.5px 0; transition: color .15s; }
.lc li a:hover { color: var(--accent); }
.footer { background: var(--dark); padding: 64px 28px 32px; }
.foot-inner { max-width: 1240px; margin: 0 auto; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
.fb p { font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.75; max-width: 280px; }
.fc h5 { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc li a { font-size: 13.5px; color: rgba(255,255,255,.8); transition: color .16s; }
.fc li a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; }
.foot-bottom p { font-size: 12.5px; color: rgba(255,255,255,.6); }
.foot-bottom a { color: rgba(255,255,255,.78); }
.socials { display: flex; gap: 10px; }
.soc { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: background .18s, color .18s; }
.soc:hover { background: var(--accent); color: white; }

/* MISC */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 36px 0 8px; }
.pg { width: 37px; height: 37px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border: 1.5px solid var(--border); color: var(--muted); transition: all .14s; background: var(--white); text-decoration: none; }
.pg.on { background: var(--accent); border-color: var(--accent); color: white; }
.pg:hover:not(.on) { border-color: var(--accent); color: var(--accent); }
.error-page { text-align: center; padding: 100px 28px; }
.error-page h1 { font-size: 80px; color: var(--accent); margin-bottom: 12px; }
.error-page h2 { font-size: 28px; margin-bottom: 16px; }
.error-page p { color: var(--muted); margin-bottom: 32px; }
.btn-primary { display: inline-block; padding: 14px 36px; background: var(--accent); color: white; border-radius: 10px; font-weight: 700; font-size: 15px; transition: background .18s; }
.btn-primary:hover { background: var(--accentH); }
h2[id], h3[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.fu { opacity:0; animation: fadeUp .55s ease forwards; }
.d1 { animation-delay:.08s; } .d2 { animation-delay:.18s; } .d3 { animation-delay:.28s; } .d4 { animation-delay:.38s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .loc-grid  { grid-template-columns: 1fr 1fr; }
  .bw-grid   { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-search { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mosaic { display: none; }
  .col-layout, .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .rel-grid  { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .loc-grid  { grid-template-columns: 1fr; }
  .lc ul { columns: 1; }
  .bw-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .art-card  { grid-template-columns: 1fr; }
  .ac-img    { min-height: 160px; }
  .bw-grid   { grid-template-columns: repeat(2,1fr); }
}

/* ── RESPONSIVE BANNER ADS ───────────────────────────────────── */
.banner-ad-wrap { margin: 36px auto; text-align: center; max-width: 728px; }
.banner-ad-label { font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 6px; }
.banner-ad-link { display: inline-block; }
.banner-ad-img { max-width: 100%; height: auto; border-radius: 6px; }
.banner-ad-wrap--sidebar { margin: 20px 0; max-width: 300px; }
.banner-ad-wrap--sidebar .banner-ad-img { max-width: 300px; }
/* Desktop: show 728x90, hide mobile */
.banner-728 { display: block; }
.banner-300 { display: none; }
@media (max-width: 768px) {
  /* Mobile: hide 728x90 leaderboard, show mobile version */
  .banner-728 { display: none; }
  .banner-300 { display: block; }
  .banner-ad-img { width: 100%; }
}


/* Logo styling */

/* ── Responsive ads ─────────────────────────────────────────── */
.ad-horizontal { display: block; }
.ad-mobile     { display: none;  }
@media (max-width: 640px) {
  .ad-horizontal { display: none;  }
  .ad-mobile     { display: block; }
}
/* Remove broken image placeholders */
img.broken-img { display: none !important; }

/* ── Dropdown headers & dividers ───────────────────────────── */
.dropdown-header { 
  font-size: 10px; font-weight: 700; text-transform: uppercase; 
  letter-spacing: 1px; color: rgba(255,255,255,.35); 
  padding: 8px 18px 4px; pointer-events: none; 
}
.dropdown-divider { border-top: 1px solid rgba(255,255,255,.1); margin-top: 4px; padding-top: 4px; }
.dropdown-wide { min-width: 280px; }

/* ── Logo ────────────────────────────────────────────────── */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
  flex-shrink: 0; font-family: 'Playfair Display', serif;
}
.logo-icon { display: flex; align-items: center; flex-shrink: 0; }
.logo-wordmark {
  font-size: 20px; font-weight: 700;
  color: var(--white); letter-spacing: -0.3px;
  white-space: nowrap; line-height: 1;
}
.logo-wordmark em { font-style: normal; color: var(--accent); }
.logo-dot { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 400; }
.fb .logo { font-size: 18px; margin-bottom: 16px; }

/* ── HomeAway responsive ads ────────────────────────────── */
.homeaway-desktop { display: block; }
.homeaway-mobile  { display: none;  }
@media (max-width: 640px) {
  .homeaway-desktop { display: none;  }
  .homeaway-mobile  { display: block; }
}

/* ── Bootstrap 3 responsive visibility classes ─────────── */
/* These are used in legacy WordPress content for Lyft/Airbnb ads */
/* Hide all by default */
.visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; }

/* Show only on specific breakpoints */
@media (max-width: 767px) {
  .visible-xs { display: block !important; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm { display: block !important; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md { display: block !important; }
}
@media (min-width: 1200px) {
  .visible-lg { display: block !important; }
}

/* Inline and inline-block variants */
@media (max-width: 767px) {
  .visible-xs-inline { display: inline !important; }
  .visible-xs-inline-block { display: inline-block !important; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline { display: inline !important; }
  .visible-sm-inline-block { display: inline-block !important; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline { display: inline !important; }
  .visible-md-inline-block { display: inline-block !important; }
}
@media (min-width: 1200px) {
  .visible-lg-inline { display: inline !important; }
  .visible-lg-inline-block { display: inline-block !important; }
}

/* Hidden classes - hide on specific breakpoints */
@media (max-width: 767px) {
  .hidden-xs { display: none !important; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm { display: none !important; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md { display: none !important; }
}
@media (min-width: 1200px) {
  .hidden-lg { display: none !important; }
}



/* ── Party Vibes Section ──────────────────────────────────── */
.party-vibes {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .party-grid { grid-template-columns: 1fr; gap: 24px; }
}
.party-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.party-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.pc-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.party-card:hover .pc-img img {
  transform: scale(1.05);
}
.pc-content {
  padding: 32px 28px;
}
.pc-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.pc-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.pc-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease;
}
.pc-cta:hover {
  background: #d63384;
}
.bachelorette-card .pc-cta {
  background: #e83e8c;
}
.bachelorette-card .pc-cta:hover {
  background: #d63384;
}
