@charset "utf-8";

/* ================= RESET ================= */
*,
*::before,
*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  line-height:1.6;
  background:#ffffff;
  color:#0f172a;
}

img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }

html,body{ overflow-x:hidden; }




/* ================= VARIABILE ================= */
:root{
  --navy:#0f1e36;
  --navy2:#081225;

  --gold:#c8a045;
  --gold2:#a8802f;

  --bg:#ffffff;
  --alt:#f5f7fa;
  --line:rgba(0,0,0,.08);
  --text:#0f172a;
  --muted:#64748b;
}




/* ================= CONTAINER ================= */
.container{
  width:min(1200px,100%);
  margin:0 auto;
  padding:0 16px;
}




/* ================= HEADER ================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
  z-index:1000;
}

.header-inner{
  height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-weight:900;
  font-size:20px;
  color:var(--navy);
}

.logo span{ color:var(--gold); }




/* ================= NAV (mobile) ================= */
.nav{ position: relative; }

/* butoane */
.hamburger,
.close-btn{
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.hamburger{
  color: var(--navy2);
  display: block;
}

/* close ascuns implicit */
.close-btn{
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  color: #fff;
  z-index: 2100;
}

/* meniu overlay */
.nav-menu{
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--navy2), #050c1a);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;

  transform: translateY(-100%);
  transition: transform .35s ease;

  z-index: 2000;
  padding: 90px 18px 40px;
  min-height: 100vh;
}

.nav-menu a{
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .2px;
  padding: 10px 14px;
  border-radius: 12px;
}

.nav-menu a.active{
  background:var(--gold);
  color:#081225;
}

.nav-cta{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}

/* stare deschis */
.nav.is-open .nav-menu{ transform: translateY(0); }
.nav.is-open .hamburger{ display: none; }
.nav.is-open .close-btn{ display: block; }




/* ================= MAIN OFFSET (header fix) ================= */
main{
  padding-top: 66px;
}

/* ================= HERO ================= */
.hero{
  background:linear-gradient(135deg,var(--navy2),#0c1c34);
  color:#fff;
  padding:60px 0 50px;
}

.hero-inner{
  display:grid;
  gap:18px;
}

.badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  margin-bottom:12px;
}

.hero h1{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.15;
}

.lead{
  margin:0 0 16px;
  max-width:70ch;
  color:rgba(255,255,255,.9);
}

.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.hero-list{
  display:grid;
  gap:6px;
}

.hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  padding:16px;
}

.callout{
  background:rgba(0,0,0,.15);
  border-radius:12px;
  padding:10px;
  margin-bottom:12px;
}




/* ================= SECTIONS ================= */
.section{
  padding:48px 0;
}

.section.alt{ background:var(--alt); }

.section h2{
  margin:0 0 16px;
  font-size:26px;
  color:var(--navy);
}

.center{ text-align:center; margin-top:16px; }

.section.cta{
  background: linear-gradient(135deg, var(--navy2), #0c1c34);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

.section.cta h2{
  font-size: 32px;
  margin-bottom: 12px;
  color: #fff;
}

.section.cta p{
  max-width: 60ch;
  margin: 0 auto 18px;
  color: rgba(255,255,255,.9);
}

.section.cta h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  margin:14px auto 0;
  background: var(--gold);
  border-radius:2px;
}





/* ================= CARDS ================= */
.cards{
  display:grid;
  gap:14px;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  height:100%;
}

.card h3{
  margin:0 0 8px;
  color:var(--navy);
}




/* ================= ROOMS ================= */
.room-grid{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.room-img{
  height:160px;
  border-radius:14px;
  margin-bottom:12px;
  background:
    radial-gradient(120px 60px at 30% 40%, rgba(200,160,69,.25), transparent 60%),
    linear-gradient(135deg,#e5e7eb,#f8fafc);
}

.room-img-2{
  background:
    radial-gradient(120px 60px at 70% 60%, rgba(200,160,69,.25), transparent 60%),
    linear-gradient(135deg,#f1f5f9,#e2e8f0);
}

.room-img-3{
  background:
    radial-gradient(120px 60px at 40% 60%, rgba(200,160,69,.25), transparent 60%),
    linear-gradient(135deg,#f8fafc,#eef2f7);
}

.price{
  margin:6px 0 12px;
}




/* ================= BUTTONS ================= */
.btn{
  display:inline-block;
  background:var(--gold);
  color:#081225;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  transition:.2s ease;
}

.btn:hover{
  filter:brightness(.95);
}

.btn-ghost{
  background:transparent;
  border:2px solid rgba(255,255,255,.7);
  color:#fff;
}

.btn-ghost-dark{
  background:transparent;
  border:2px solid var(--gold);
  color:var(--navy);
}




/* ================= FOOTER ================= */
.site-footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  text-align:center;
}




.room-features{
  margin: 8px 0 10px;
  padding: 0;
  display: grid;
  gap: 6px;
  color: #334155;
}

.room-features li{ list-style: none; }




.wellness{
  display: grid;
  gap: 14px;
  align-items: start;
}

.wellness-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.bullet{
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
  color: #334155;
}

.bullet li{ list-style: none; }




/* ===== Formular rezervare ===== */
.label{ display:block; font-weight:900; margin: 12px 0 6px; }
.field{
  width:100%;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
  outline:none;
  font:inherit;
  background:#fff;
}

.field:focus{
  border-color: rgba(200,160,69,.65);
  box-shadow: 0 0 0 3px rgba(200,160,69,.16);
}

.form-msg{ margin: 10px 0 14px; font-weight:900; }
.form-msg.ok{ color:#166534; }
.form-msg.warn{ color:#92400e; }
.form-msg.err{ color:#b91c1c; }
.honeypot{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-note{ margin:12px 0 0; color:var(--muted); font-size:14px; }

.reserve-grid{
  display:grid;
  gap:14px;
  align-items:start;
}

.grid-2{
  display:grid;
  gap:12px;
  margin-top: 10px;
}

.reserve-side .spacer{ height: 10px; }






















































/* ================= DESKTOP ================= */
@media (min-width:768px){

.hamburger,.close-btn{ display:none !important; }
	
.nav-menu{
    position:static;
    transform:none;
    background:transparent;
    flex-direction:row;
    gap:18px;
    padding:0;
  }
	
.nav-menu a{
    color:var(--navy);
    font-size:16px;
  }
	
 .nav-menu a.active{
    background:transparent;
    color:var(--gold);
  }
	
.hero{
    padding:80px 0 60px;
  }
	
.hero-inner{
    grid-template-columns:1.2fr .8fr;
    gap:22px;
  }
	
.cards{
    grid-template-columns:1fr 1fr;
  }
	
.room-grid{
    grid-template-columns:1fr 1fr;
  }

	
	
	
	
.wellness{
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
  }
	
	
	
	
	.grid-2{ grid-template-columns: 1fr 1fr; }

	
	
	
	
	
}









@media (min-width:1024px){

  .cards{
    grid-template-columns:repeat(3,1fr);
  }

	.room-grid{
    grid-template-columns:repeat(3,1fr);
  }
	
	.reserve-grid{
    grid-template-columns: 2fr 1fr;
    gap:18px;
  }
	
	
	
	
}

























































































































































































































































































