/* ==========================================
   Asmi on mic — Matte Rose & Dusty Mauve Theme
   Full replacement styles.css (UPDATED: no hero background image)
========================================== */

:root{
  --bg-rose: #e7c6c6;
  --bg-rose-2:#dcb1b1;
  --surface: #edd2d2;
  --surface-2:#f3dede;

  --mauve: #9b6d6d;
  --text: #3b2f2f;
  --text-soft: rgba(59,47,47,0.72);
  --stroke: rgba(155,109,109,0.35);
  --shadow: rgba(0,0,0,0.10);

  --btn: #b78484;
  --btn-2:#caa4a4;

  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 16px;

  --max-width: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background: radial-gradient(1200px 500px at 20% 0%, #f4dfdf 0%, var(--bg-rose) 45%, var(--bg-rose-2) 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
p{ margin: 0; color: var(--text-soft); line-height: 1.6; }

/* -----------------------------
   Common layout
------------------------------ */
.section{
  width: min(var(--max-width), 92%);
  margin: 18px auto;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 55px rgba(0,0,0,0.07);
  padding: 22px;
}

/* Cards */
.card{
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  padding: 14px;
}

.pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  background: rgba(155,109,109,0.10);
  border: 1px solid rgba(155,109,109,0.18);
}

/* -----------------------------
   Global header/nav for all pages
------------------------------ */
.site-header{
  width: 100%;
  background: rgba(243,222,222,0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav-wrap{
  width: min(var(--max-width), 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.nav-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 16px;
  font-weight: 700;
}

.nav-links a{ opacity: 0.78; }
.nav-links a.active, .nav-links a:hover{ opacity: 1; }

.nav-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  color: #2b1e1e;
  background: linear-gradient(135deg, var(--btn-2), var(--btn));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 22px rgba(155,109,109,0.20);
  transition: transform 0.2s ease;
}
.nav-cta:hover{ transform: translateY(-1px); }

/* mini logo in nav (prevents huge logo) */
.brand-mini img{
  width: 110px;
  height: auto;
}

/* -----------------------------
   NON-HOME PAGES: small top banner
------------------------------ */
.page-hero{
  width: min(var(--max-width), 92%);
  margin: 18px auto 0;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(243,222,222,0.45);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.page-hero-inner{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
}

.page-hero-brand{
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-brand img{
  width: 180px;
  height: auto;
  object-fit: contain;
}

.page-hero-text h1{
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
}

.page-hero-text p{
  margin: 0;
  font-size: 17px;
}

/* -----------------------------
   HOME PAGE ONLY
------------------------------ */
body.home .site-header,
body.home .page-hero{
  display: none;
}

.home-wrap{
  width: 100%;
}

.home-mock{
  width: min(var(--max-width), 92%);
  margin: 34px auto 18px;
  background: radial-gradient(1200px 500px at 20% 0%, #f4dfdf 0%, var(--bg-rose) 45%, var(--bg-rose-2) 100%);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.25);
}

.mock-navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 6px 18px;
  border-bottom: 1px solid var(--stroke);
}

.mock-links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 800;
}

.mock-links a{ opacity: 0.78; }
.mock-links a.active, .mock-links a:hover{ opacity: 1; }

.mock-book-btn{
  /* display: inline-flex; */
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  /* color: #2b1e1e; */
  color: #181103;
  /* background: linear-gradient(135deg, var(--btn-2), var(--btn)); */
  background-color: #aa7905;
  border: 1px solid rgba(255,255,255,0.35);
  /* box-shadow: 0 8px 22px rgba(155,109,109,0.20); */
}

/* ==============================
   HOME HERO — BANNER LOGO STYLE
   Matches reference image exactly
============================== */

.mock-hero-image{
  position: relative;
  margin-top: 18px;
  height: 320px;          /* INCREASED from 260 */
  border-radius: 18px;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Inner frame */
.mock-hero-image::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.55);
  pointer-events:none;
}

/* Logo acts as a wide hero banner */
.mock-hero-banner{
  width: 100%;
  height: 110%;
  object-fit: cover;                 /* THIS is the key */
  object-position: center;
  display: block;
}

@media (max-width: 900px){
  .mock-hero-image{
    height: 200px;
  }
}


.mock-left{ flex: 1; }
.mock-right{ flex: 0.9; 
  /* max-width: 420px;  */
  padding-top: 15px;
}

.mock-welcome{
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(59,47,47,0.65);
}

.mock-brand{
  margin: 0 0 8px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0.3px;
  color: #ab5852;
  font-weight: 800;
  font-family: "Playfair Display", Georgia, serif;
  padding-top: 3%;
}

/* .mock-brand span{ color: var(--mauve); } */

.mock-tagline{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #906b12
}

.mock-desc{
  font-size: 18px;
  color: #2b1e1e;
  width: 100%;
}

/* home features */
.what-you-get{
  margin-top: 26px;
  padding: 10px 6px 0;
}

/* NEW: card container for the whole section (like reference image) */
.what-you-get-card{
  background: rgba(245, 235, 235, 0.60);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.section-title{ margin:0 0 6px; font-size:22px; font-weight:900; }
.section-subtitle{ margin:0 0 18px; font-size:17px; }

.feature-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Make the grid cards look like "real cards" */
.feature-card{
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

/* Optional: keep pill aligned like the reference */
.feature-card .pill{
  margin-bottom: 10px;
}

/* Keep your headings/paragraph sizing stable */
.feature-card h4{
  margin: 10px 0 6px;
  font-size: 15px;
  font-weight: 900;
}
.feature-card p{
  font-size: 17px;
}

.stats-row{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap: nowrap;
  margin-top:18px;
  justify-content: flex-start;
  overflow: auto;
}
.stat{
  display:flex;
  gap:10px;
  align-items:center;
  background: rgba(243,222,222,0.7);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}
.stat-num{ font-weight:900; }
.stat-text{ font-size:16px; }
.stat-pill{
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(155,109,109,0.12);
  border: 1px solid rgba(155,109,109,0.20);
  white-space: nowrap;
  flex-shrink: 0;
}

/* footer */
footer{
  width: min(var(--max-width), 92%);
  margin: 20px auto 40px;
  color: rgba(59,47,47,0.65);
  font-size: 16px;
  text-align: center;
}

/* -----------------------------
   Booking form helpers
------------------------------ */
.form-fieldset{
  border: 1px solid rgba(155,109,109,0.25);
  border-radius: 16px;
  padding: 14px;
  margin-top: 14px;
  background: rgba(243,222,222,0.35);
}

.form-legend{
  padding: 0 10px;
  font-weight: 900;
  color: var(--text);
}

.form-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin-top: 10px;
}

.form-row label{
  display:block;
  margin-bottom: 6px;
  font-size: 16px;
}

textarea{
  resize: vertical;
}

/* Basic input styling (helps look consistent) */
input, select, textarea{
  width: 100%;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(155,109,109,0.25);
  background: rgba(255,255,255,0.55);
  color: var(--text);
  outline: none;
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(155,109,109,0.45);
  box-shadow: 0 0 0 3px rgba(155,109,109,0.12);
}

/* Responsive */
@media (max-width: 900px){
  .page-hero-inner{
    grid-template-columns: 1fr;
  }
  .page-hero-brand img{
    width: 160px;
  }
  .mock-hero-text{
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-grid{
    grid-template-columns: 1fr;
  }
  .mock-brand{ font-size: 40px; }
  .form-grid-2{
    grid-template-columns: 1fr;
  }
}

/* Instagram gallery: 2 columns on desktop, 1 on mobile */
.gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

/* Make each grid item behave */
.gallery .g-item{
  min-width: 0;
}

/* Force IG embed to fit the column */
.gallery .instagram-media{
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

/* Mobile: stack */
@media (max-width: 900px){
  .gallery{
    grid-template-columns: 1fr;
  }
}
.g-left{
  justify-self: start;
  margin-left: 0;
}

@media (max-width: 900px){
  .mock-hero-overlay{
    width: 300px;
    top: -20px;
    bottom: -20px;
  }
}
