/*
Theme Name: 
Description: Custom travel theme for Holidays Destination
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: holidays-destination
*/

*{margin:0;padding:0;box-sizing:border-box}
:root{
  --red:#E8294A;
  --dark:#0D0D0D;
  --text:#1a1a2e;
  --muted:#6b7280;
  --light:#f8f9fa;
  --white:#ffffff;
  --radius:14px;
  --nav-h:72px;
}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:#fff;overflow-x:hidden}

/* ── NAV ── */
.site-nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:0 60px;height:var(--nav-h);
  position:fixed;top:0;left:0;right:0;z-index:200;
  transition:background 0.3s,box-shadow 0.3s;
}
.site-nav--transparent{background:transparent}
.site-nav--solid{background:var(--dark);box-shadow:0 2px 20px rgba(0,0,0,0.2)}

.site-logo{font-family:'DM Sans',sans-serif;font-size:20px;font-weight:700;color:#fff;letter-spacing:-0.5px;text-decoration:none;white-space:nowrap}
.site-logo span{color:var(--red)}
.nav-links{display:flex;gap:28px;list-style:none}
.nav-links a{color:rgba(255,255,255,0.88);text-decoration:none;font-size:14px;font-weight:400;transition:color 0.2s;white-space:nowrap}
.nav-links a:hover{color:#fff}
.nav-right{display:flex;align-items:center;gap:14px;flex-shrink:0}
.btn-book{background:var(--red);color:#fff;border:none;padding:10px 22px;border-radius:50px;font-size:13px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;text-decoration:none;transition:all 0.2s;white-space:nowrap;display:inline-block}
.btn-book:hover{background:#c91f3a;transform:scale(1.03)}

/* ── HERO (homepage) ── */
.hero{position:relative;height:100vh;min-height:640px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:linear-gradient(160deg,rgba(10,10,30,0.55) 0%,rgba(10,10,30,0.35) 60%,rgba(10,10,30,0.65) 100%),url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat;z-index:0}
.hero-content{position:relative;z-index:2;max-width:700px;padding:0 20px}
.hero h1{font-family:'Playfair Display',serif;font-size:clamp(42px,6vw,72px);font-weight:800;color:#fff;line-height:1.1;margin-bottom:18px;letter-spacing:-1px}
.hero p{color:rgba(255,255,255,0.82);font-size:15px;font-weight:300;margin-bottom:36px;letter-spacing:0.3px}
.btn-hero{background:var(--white);color:var(--text);border:none;padding:18px 52px;border-radius:50px;font-size:16px;font-weight:700;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all 0.25s;box-shadow:0 8px 32px rgba(0,0,0,0.25);text-decoration:none;display:inline-block;min-width:220px;text-align:center}
.btn-hero:hover{transform:translateY(-3px);box-shadow:0 16px 48px rgba(0,0,0,0.35)}

/* ── INNER PAGE HERO ── */
.inner-hero{
  background:linear-gradient(160deg,rgba(10,10,30,0.72) 0%,rgba(10,10,30,0.55) 100%),
    url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&q=80') center/cover no-repeat;
  padding:calc(var(--nav-h) + 60px) 60px 64px;
  text-align:center;
  margin-top:0;
}
.inner-hero h1{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,52px);font-weight:800;color:#fff;letter-spacing:-0.5px;line-height:1.2;margin-bottom:14px}
.inner-hero .breadcrumb{font-size:13px;color:rgba(255,255,255,0.65);display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:16px}
.inner-hero .breadcrumb a{color:rgba(255,255,255,0.65);text-decoration:none;transition:color 0.2s}
.inner-hero .breadcrumb a:hover{color:#fff}
.inner-hero .breadcrumb span{color:rgba(255,255,255,0.4)}

/* ── SEARCH BAR ── */
.search-wrap{position:relative;z-index:10;margin-top:-56px;padding:0 60px}
.search-box{background:#fff;border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,0.12);padding:0 32px 28px;max-width:900px;margin:0 auto}
.search-tabs{display:flex;gap:0;padding:20px 0 18px;border-bottom:1px solid #f0f0f0;margin-bottom:20px}
.search-tab{display:flex;align-items:center;gap:8px;padding:8px 18px;border-radius:50px;font-size:13px;font-weight:500;cursor:pointer;color:var(--muted);border:none;background:none;font-family:'DM Sans',sans-serif;transition:all 0.2s}
.search-tab.active{background:#fff0f3;color:var(--red)}
.search-fields{display:grid;grid-template-columns:1fr 1fr 1fr 1fr auto;gap:12px;align-items:end}
.field-group label{display:block;font-size:11px;color:var(--muted);font-weight:500;margin-bottom:6px;text-transform:uppercase;letter-spacing:0.5px}
.field-group input{width:100%;border:1.5px solid #eee;border-radius:12px;padding:11px 14px;font-size:14px;font-family:'DM Sans',sans-serif;color:var(--text);outline:none;transition:border-color 0.2s}
.field-group input:focus{border-color:var(--red)}
.search-btn{background:var(--red);color:#fff;border:none;padding:12px 28px;border-radius:12px;font-size:14px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;white-space:nowrap;transition:all 0.2s;height:46px}
.search-btn:hover{background:#c91f3a}

/* ── SECTIONS ── */
.section{padding:70px 60px}
.section-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:36px}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(26px,3vw,36px);font-weight:700;color:var(--text);letter-spacing:-0.5px}

.filter-tabs{display:flex;gap:10px;flex-wrap:wrap}
.filter-tab{padding:9px 22px;border-radius:50px;font-size:14px;font-weight:500;cursor:pointer;border:1.5px solid #e5e7eb;background:#fff;color:var(--muted);font-family:'DM Sans',sans-serif;transition:all 0.2s;text-decoration:none;display:inline-block}
.filter-tab.active,.filter-tab:hover{background:var(--red);color:#fff;border-color:var(--red)}

.arrows{display:flex;gap:8px;flex-shrink:0}
.arrow-btn{width:38px;height:38px;border-radius:50%;border:1.5px solid #e5e7eb;background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--text);transition:all 0.2s;font-size:16px}
.arrow-btn:hover{background:var(--red);border-color:var(--red);color:#fff}

/* ── DESTINATION CARDS ── */
.dest-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.dest-card{border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:0 4px 24px rgba(0,0,0,0.06);transition:transform 0.25s,box-shadow 0.25s;text-decoration:none;display:block;color:inherit}
.dest-card:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,0,0.12)}
.dest-img{width:100%;height:210px;object-fit:cover;display:block}
.dest-body{padding:16px 18px}
.dest-rating{display:flex;align-items:center;gap:6px;margin-bottom:8px}
.star{color:#f59e0b;font-size:14px}
.rating-val{font-size:13px;font-weight:600;color:var(--text)}
.rating-cnt{font-size:12px;color:var(--muted)}
.dest-name{font-size:16px;font-weight:600;color:var(--text);margin-bottom:4px}
.dest-loc{font-size:13px;color:var(--muted);margin-bottom:10px}
.dest-footer{display:flex;align-items:center;justify-content:space-between}
.dest-dur{font-size:12px;color:var(--muted)}
.dest-price{font-size:19px;font-weight:700;color:var(--text)}
.dest-price span{font-size:12px;font-weight:400;color:var(--muted)}
.read-more{font-size:13px;font-weight:600;color:var(--red)}

/* ── POST CARDS (archive) ── */
.posts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.post-card{border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:0 4px 24px rgba(0,0,0,0.06);transition:transform 0.25s,box-shadow 0.25s;text-decoration:none;display:block;color:inherit}
.post-card:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,0,0.12)}
.post-thumb{width:100%;height:200px;object-fit:cover;display:block}
.post-thumb-placeholder{width:100%;height:200px;background:#f0f4ff;display:flex;align-items:center;justify-content:center;font-size:48px}
.post-body{padding:18px 20px}
.post-cat{font-size:11px;font-weight:700;color:var(--red);text-transform:uppercase;letter-spacing:0.8px;margin-bottom:8px}
.post-title{font-size:16px;font-weight:600;color:var(--text);line-height:1.4;margin-bottom:10px}
.post-excerpt{font-size:13px;color:var(--muted);line-height:1.7;margin-bottom:14px}
.post-meta{font-size:12px;color:var(--muted)}

/* ── STORY ── */
.story-section{background:var(--light);padding:70px 60px}
.story-inner{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;max-width:1100px;margin:0 auto}
.story-tags{display:flex;gap:8px;margin-bottom:20px;flex-wrap:wrap}
.tag{padding:5px 14px;border-radius:50px;font-size:12px;font-weight:500;border:1.5px solid #e5e7eb;color:var(--muted)}
.story-text h2{font-family:'Playfair Display',serif;font-size:clamp(24px,3vw,36px);font-weight:700;color:var(--text);margin-bottom:18px;line-height:1.2}
.story-text p{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:24px}
.btn-more{background:var(--red);color:#fff;border:none;padding:12px 28px;border-radius:50px;font-size:14px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all 0.2s;text-decoration:none;display:inline-block}
.btn-more:hover{background:#c91f3a}
.story-imgs{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.story-img{border-radius:var(--radius);width:100%;object-fit:cover}
.story-img:first-child{height:220px;grid-column:1/-1}
.story-img:not(:first-child){height:150px}

/* ── TRUST ── */
.trust-section{padding:70px 60px;text-align:center}
.trust-sub{font-size:14px;color:var(--muted);margin-top:8px;margin-bottom:48px}
.trust-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;max-width:860px;margin:0 auto}
.trust-item{text-align:left;padding-left:20px;border-left:3px solid var(--red)}
.trust-num{font-family:'Playfair Display',serif;font-size:36px;font-weight:700;color:var(--red);margin-bottom:10px}
.trust-label{font-size:16px;font-weight:600;color:var(--text);margin-bottom:8px}
.trust-desc{font-size:13px;color:var(--muted);line-height:1.7}

/* ── REVIEWS ── */
.reviews-section{background:var(--light);padding:70px 60px}
.review-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.review-card{background:#fff;border-radius:var(--radius);padding:28px;box-shadow:0 4px 20px rgba(0,0,0,0.05);display:grid;grid-template-columns:130px 1fr;gap:20px;align-items:start}
.review-img{width:130px;height:150px;object-fit:cover;border-radius:12px}
.review-body{display:flex;flex-direction:column;justify-content:space-between;min-height:150px}
.review-stars{color:#f59e0b;font-size:16px;margin-bottom:10px}
.review-text{font-size:14px;color:var(--text);line-height:1.7;font-style:italic;margin-bottom:14px}
.review-author{font-size:14px;font-weight:600;color:var(--text)}
.review-country{font-size:12px;color:var(--muted);margin-top:2px}

/* ── CTA ── */
.cta-section{padding:70px 60px;text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80') center/cover;opacity:0.07;z-index:0}
.cta-inner{position:relative;z-index:1}
.cta-section h2{font-family:'Playfair Display',serif;font-size:clamp(26px,3.5vw,42px);font-weight:700;color:var(--text);margin-bottom:12px;line-height:1.2}
.cta-section p{font-size:14px;color:var(--muted);margin-bottom:28px}
.btn-cta{background:var(--red);color:#fff;border:none;padding:14px 36px;border-radius:50px;font-size:15px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;transition:all 0.2s;text-decoration:none;display:inline-block}
.btn-cta:hover{background:#c91f3a;transform:translateY(-2px)}
.cta-photos{display:flex;justify-content:center;gap:12px;margin-top:48px;flex-wrap:wrap}
.cta-photo{width:150px;height:105px;object-fit:cover;border-radius:12px;transition:transform 0.25s}
.cta-photo:nth-child(2),.cta-photo:nth-child(4){margin-top:18px}
.cta-photo:hover{transform:scale(1.04)}

/* ── FOOTER ── */
.site-footer{background:var(--dark);padding:56px 60px 32px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
.footer-brand-logo{font-family:'DM Sans',sans-serif;font-size:20px;font-weight:700;color:#fff;display:block;margin-bottom:14px;text-decoration:none}
.footer-brand-logo span{color:var(--red)}
.footer-brand p{font-size:13px;line-height:1.8;color:rgba(255,255,255,0.45);max-width:240px}
.footer-col h4{font-size:14px;font-weight:600;color:#fff;margin-bottom:16px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-col ul a{font-size:13px;color:rgba(255,255,255,0.45);text-decoration:none;transition:color 0.2s}
.footer-col ul a:hover{color:#fff}
.footer-contact{display:flex;flex-direction:column;gap:10px}
.footer-contact span{font-size:13px;color:rgba(255,255,255,0.45)}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,0.25)}

/* ── SINGLE POST ── */
.single-post-wrap{max-width:820px;margin:0 auto 80px;padding:0 40px 0}
.single-post-wrap h1{font-family:'Playfair Display',serif;font-size:clamp(28px,4vw,46px);font-weight:700;color:var(--text);margin-bottom:20px;line-height:1.2}
.post-featured-img{width:100%;border-radius:var(--radius);margin-bottom:32px;max-height:480px;object-fit:cover}
.post-content{font-size:16px;line-height:1.85;color:#2d2d2d}
.post-content h2{font-family:'Playfair Display',serif;font-size:26px;font-weight:700;margin:36px 0 16px;color:var(--text)}
.post-content h3{font-size:20px;font-weight:600;margin:28px 0 12px;color:var(--text)}
.post-content p{margin-bottom:20px}
.post-content ul,.post-content ol{margin:0 0 20px 24px}
.post-content li{margin-bottom:8px}
.post-content a{color:var(--red)}
.post-content blockquote{border-left:4px solid var(--red);padding:16px 24px;margin:28px 0;background:var(--light);border-radius:0 12px 12px 0;font-style:italic}
.post-meta-bar{display:flex;align-items:center;gap:12px;margin-bottom:24px;font-size:13px;color:var(--muted);flex-wrap:wrap}
.cat-badge{background:#fff0f3;color:var(--red);padding:4px 12px;border-radius:50px;font-weight:700;font-size:11px;text-transform:uppercase;letter-spacing:0.5px}

/* ── ARCHIVE WRAP ── */
.archive-wrap{max-width:1200px;margin:0 auto 80px;padding:0 60px}

/* ── PAGINATION ── */
.nav-links a,.nav-links span{display:inline-block;padding:8px 14px;border:1.5px solid #e5e7eb;border-radius:8px;margin:2px;font-size:14px;color:var(--text);text-decoration:none;transition:all 0.2s}
.nav-links .current{background:var(--red);color:#fff;border-color:var(--red)}
.nav-links a:hover{border-color:var(--red);color:var(--red)}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .site-nav{padding:0 20px}
  .nav-links{display:none}
  .section,.story-section,.reviews-section,.cta-section,.trust-section{padding:50px 20px}
  .search-wrap{padding:0 20px}
  .search-fields{grid-template-columns:1fr 1fr}
  .dest-grid,.posts-grid,.trust-grid{grid-template-columns:1fr}
  .story-inner,.review-grid,.footer-grid{grid-template-columns:1fr}
  .archive-wrap{padding:0 20px}
  .single-post-wrap{padding:0 20px}
  .inner-hero{padding:calc(var(--nav-h) + 40px) 20px 48px}
}