/* ====== Base ====== */
:root{
  --bg: #fbf5ea;            /* crem */
  --card: #f3ede2;          /* crem mai inchis */
  --text: #1f1f1f;
  --muted: #6f6a60;
  --border: rgba(0,0,0,.10);
  --bronze: #c6a75e;
  --bronze-dark: #b59345;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --radius: 18px;
  --container: 1120px;

  /* hero images sizing (Flights/Stays/Things/Plan) */
  --hero-max: 900px;
  --hero-height: 380px;
  --hero-height-tall: 520px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
}

img{ max-width:100%; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* ====== Header ====== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,245,234,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

/* Compat: you used .logo in blog pages, .brand in main pages */
.brand,
.logo a{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .3px;
  font-size: 22px;
  color: var(--bronze-dark);
  white-space: nowrap;
  text-decoration: none;
}
.logo a:hover{ text-decoration: none; opacity:.95; }

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Compat: <ul class="menu"> in some pages */
.menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  align-items: center;
}
.menu li{ margin:0; padding:0; }

.nav-link,
.nav a,
.menu a{
  color: #3e3a33;
  font-size: 16px;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
}

.nav-link:hover,
.nav a:hover,
.menu a:hover{
  background: rgba(0,0,0,.05);
  text-decoration: none;
}

.nav-link.active{
  font-weight: 700;
  background: rgba(0,0,0,.04);
}

.header-right{
  display:flex;
  align-items:center;
  gap: 14px;
}

.lang{
  display:flex;
  align-items:center;
  gap: 8px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
}

.lang-link{
  color:#111;
  text-decoration:none;
}

.lang-link.is-active{
  font-weight: 700;
}

.lang-sep{ opacity:.5; }

/* Social buttons (compat: social-btn + icon-btn) */
.social{
  display:flex;
  align-items:center;
  gap: 8px;
}

.social-btn,
.icon-btn{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.35);
  text-decoration:none;
  font-size: 12px;
  line-height: 1;
}

.social-btn:hover,
.icon-btn:hover{
  background: rgba(255,255,255,.65);
  text-decoration:none;
}

.social-btn svg,
.icon-btn svg{
  width: 18px;
  height: 18px;
  fill: #2a2823;
  opacity: .9;
}

/* ====== Buttons ====== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 16px;
  border: 1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: var(--bronze);
  color: #fff;
}
.btn.primary:hover{
  background: var(--bronze-dark);
  text-decoration:none;
}

.btn.ghost{
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn.ghost:hover{
  background: rgba(255,255,255,.35);
  text-decoration:none;
}

/* Compat: some pages use btn-small */
.btn.small,
.btn-small{
  padding: 9px 14px;
  font-size: 13px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  color: #2a2823;
}
.btn.small:hover,
.btn-small:hover{
  background: rgba(0,0,0,.06);
  text-decoration:none;
}

/* Outline button (you use btn-outline in blog cards) */
.btn-outline{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
  color: #2a2823;
}
.btn-outline:hover{
  background: rgba(0,0,0,.06);
  text-decoration:none;
}

/* ====== Page titles (Flights / Stays / Things / Plan / Guides) ====== */
.page-title,
h1{
  margin: 0 0 8px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: .2px;
  color: #151515;
}

.page-subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

/* ====== Hero (homepage) ====== */
.hero{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("images/hero.jpg"); /* ✅ corect: style.css e în /assets */
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-content{
  position: relative;
  padding: 90px 0 70px;
  text-align: center;
  color: #fff;
}

.hero h1{
  margin: 0 0 12px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  letter-spacing: .2px;
  color: #fff;
}

.hero p{
  margin: 0 auto 22px;
  max-width: 760px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
}

.hero-actions{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}


.card + .card {
  margin-top: 24px;
}



/* ===== LUX HERO – CONTAINER VERSION ===== */
.lux-hero{
  position: relative;
  width: 100%;
  margin: 32px 0;
  border-radius: 20px;
  overflow: hidden;
  max-height: 480px;
}

.lux-hero img{
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.lux-hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 60%);
}

.lux-hero-inner{
  max-width: 760px;
  color: #fff;
}

.lux-title{
  font-size: 32px;
  margin: 8px 0;
}

.lux-kicker{
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9;
}

.lux-sub{
  font-size: 16px;
  opacity: .95;
}

.lux-line{
  width: 60px;
  height: 2px;
  background: #fff;
  margin: 12px 0;
}




/* ====== Sections ====== */
.section{
  padding: 54px 0;
}

.section h2{
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: .1px;
}

.sub{
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
}

/* ====== Generic hero media card (Flights/Stays/Things/Plan) ====== */
/* Supports BOTH:
   - <img class="flights-hero"...>
   - <div class="flights-hero"><img ...></div>
*/
.hero-media,
.flights-hero,
.stays-hero,
.things-hero,
.plan-hero{
  max-width: var(--hero-max);
  margin: 22px auto 18px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(0,0,0,.08);
}

/* If class is on IMG directly */
img.hero-media,
img.flights-hero,
img.stays-hero,
img.things-hero,
img.plan-hero{
  display:block;
  width: 100%;
  height: var(--hero-height);
  object-fit: cover;
  object-position: center;
}

/* If class is on wrapper DIV */
.hero-media img,
.flights-hero img,
.stays-hero img,
.things-hero img,
.plan-hero img{
  width: 100%;
  height: var(--hero-height);
  display:block;
  object-fit: cover;
  object-position: center;
}

/* Taller but controlled */
.stays-hero img,
.plan-hero img{
  height: var(--hero-height-tall);
}

/* ====== Guides cards (blog.html) ====== */
.destinations-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.destination-card{
  background: var(--card);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  min-height: 250px;
}

.destination-img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display:block;
}

.destination-body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  flex:1;
}

.destination-title{
  margin:0;
  font-size: 16px;
}

.destination-text{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  flex:1;
}

/* ====== Older grid/card system (homepage sections etc.) ====== */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card{
  background: var(--card);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  min-height: 250px;
}

.card img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  display:block;
}

.card-body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction:column;
  gap: 8px;
  flex:1;
}

.card h3{
  margin:0;
  font-size: 20px;
}

.card p{
  margin:0;
  color: var(--muted);
  font-size: 15px;
  flex:1;
}

/* ====== Country pages (France/Italy/Greece/Spain) ====== */
.btn-group{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-top: 18px;
}

.card-content{
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.coming{
  color: var(--muted);
  font-size: 13px;
}

/* ====== Featured (optional blocks) ====== */
.section-featured{
  padding-top: 10px;
}

.featured{
  margin-top: 14px;
  max-width: 820px;
  margin-left:auto;
  margin-right:auto;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.featured img{
  width: 100%;
  height: auto;
  display:block;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.featured-actions{
  padding: 14px;
  display:flex;
  justify-content:flex-start;
}

/* ====== Footer / Newsletter ====== */
.site-footer{
  padding: 42px 0 26px;
  border-top: 1px solid var(--border);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-copy{
  color: rgba(0,0,0,.65);
  font-size: 13px;
}

.footer-right{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.footer-link{
  color: rgba(0,0,0,.65);
  text-decoration:none;
  font-size: 13px;
}
.footer-link:hover{ text-decoration: underline; }

.newsletter{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
}

.newsletter-bg{
  width:100%;
  height: 210px;
  object-fit: cover;
  display:block;
  filter: saturate(.95) contrast(.98);
}

.newsletter-overlay{
  position:absolute;
  inset:0;
  padding: 26px 26px 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(251,245,234,.82), rgba(251,245,234,.55), rgba(251,245,234,.20));
}

.newsletter-overlay h3{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  color: var(--bronze-dark);
  font-size: 20px;
  font-weight: 800;
}

.newsletter-overlay p{
  margin:0;
  color: #6a6256;
  font-size: 13px;
}

.newsletter-form{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.newsletter-form input{
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.75);
  min-width: 240px;
  outline: none;
}
.newsletter-form input:focus{
  border-color: rgba(198,167,94,.9);
  box-shadow: 0 0 0 4px rgba(198,167,94,.18);
}

.small-note{
  margin-top: 8px !important;
  font-size: 12px !important;
  color: rgba(60,55,48,.75) !important;
}

/* ====== Responsive ====== */
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .destinations-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }

  .nav{ display:none; } /* tablet/phone */
  .hero{ min-height: 480px; }

  :root{
    --hero-max: 760px;
    --hero-height: 320px;
    --hero-height-tall: 420px;
  }
}

@media (max-width: 520px){
  .brand,
  .logo a{ font-size: 18px; }

  .hero-content{ padding: 74px 0 54px; }
  .newsletter-bg{ height: 240px; }
  .newsletter-overlay{ padding: 18px; }
  .newsletter-form input{ min-width: 100%; }

  .card-grid{ grid-template-columns: 1fr; }

  :root{
    --hero-max: 100%;
    --hero-height: 240px;
    --hero-height-tall: 320px;
  }
}

/* ===== MINI FEATURE BLOG BLOCK ===== */

.mini-feature{
  margin: 60px 0 30px;
  text-align: center;
}

.mini-feature-inner{
  max-width: 760px;
  margin: 0 auto;
}

.mini-kicker{
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}

.mini-title{
  font-size: 34px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

.mini-title span{
  font-size: 18px;
  font-weight: 400;
  color: #666;
}

.mini-line{
  width: 70px;
  height: 2px;
  background: #111;
  margin: 20px auto;
}

.mini-description{
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}


.cards-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1100px){
  .cards-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .cards-grid{
    grid-template-columns: 1fr;
  }
}

.mini-guides-section {
margin-top: 100px;
padding-top: 60px;
border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-links a::after{
  content:"•";
  margin-left:12px;
}

.footer-links a:last-child::after{
  content:"";
}

.about h2{
  margin-top:40px;
}

.about h3{
  margin-top:18px;
}

.about p{
  margin-bottom:12px;
}

.flight-tips,
.popular-flights,
.flight-timing{
margin-top:60px;
}

.flight-timing ul{
margin-top:15px;
padding-left:18px;
line-height:1.6;
}




.grid{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:24px;
margin-top:20px;
}

@media (max-width:1000px){
.grid{
grid-template-columns: repeat(2,1fr);
}
}

@media (max-width:600px){
.grid{
grid-template-columns: 1fr;
}
}

.card{
background:white;
border-radius:12px;
box-shadow:0 2px 10px rgba(0,0,0,0.06);
overflow:hidden;
}
.card img{
width:100%;
height:180px;
object-fit:cover;
display:block;
}
.card:hover{
transform:translateY(-4px);
transition:0.3s;
}

.card-body{
padding:18px;
}
.card{
min-height:140px;
}
.card h3{
margin-bottom:8px;
font-size:16px;
}
section{
margin-top:60px;
}

.container{
max-width:1100px;
margin:0 auto;
padding:0 20px;
}