/* =========================================================
   Frangipani Apartments — Base / Global
   ========================================================= */

/* ---------- Variables (quickly adjustable) ---------- */
:root{
	--content-width: 1200px; /* TODO: adjust */
	--gutter: 20px;

	--header-height: 150px;
	--header-height-scrolled: 100px;

	--color-text: #111;
	--color-bg: #fff;
	--color-alt: #f2f2f2;  /* light grey section background */
	--color-footer: #d9d9d9;

	--transition: 220ms ease;
	--font-body: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
--font-heading: "mencken-std", sans-serif;

--body-size: 14px;
--body-color: #707070;

--heading-color: #454545;
--h1-size: 56px; /* falls du nur H1 so groß willst */
	
	--color-accent: #22c55e; /* dein dunkles Grün */
}

/* ---------- Reset-ish ---------- */
*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
img, video{ max-width:100%; height:auto; display:block; }
a{ color:#6A7D56; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }

.screen-reader-text{
	position:absolute !important;
	width:1px; height:1px;
	padding:0; margin:-1px;
	overflow:hidden; clip:rect(0,0,0,0);
	white-space:nowrap; border:0;
}

/* ---------- Layout ---------- */
body{
  font-family: var(--font-body);
  font-size: var(--body-size);
  color: var(--body-color);
  background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-heading);
  font-weight: 700;         /* Bold */
  font-style: normal;
  color: var(--heading-color);
}

h1, h2, h3, h4, h5, h6{
  font-size: 40px;
  line-height: 1.1;
}
h2 {
  margin: 0 0 24px 0;
}
h3 {
  margin: 0;
	font-size: 30px;
}
h5 {
	margin: 0;
	font-size: 20px;
}
    
.container{
	max-width: var(--content-width);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

.site-content{
	/* because header is fixed */
	/*padding-top: var(--header-height);*/
}

/* ---------- Sections ---------- */
.section{
	padding: 70px 0;
	background: var(--color-bg);
}

.section--alt{
	background: var(--color-alt);
}

.section-title{
	margin: 0 0 24px 0;
	font-size: 40px;
	line-height: 1.2;
}

.content h1{ margin-top:0; }
.content p{ line-height:1.7; }

/* ---------- Common components ---------- */
.placeholder{
	min-height: 240px;
	border: 2px dashed rgba(0,0,0,.25);
	background: rgba(0,0,0,.03);
}

/* Card/grid baseline used by apartments & news */
.cards{
	display:grid;
	gap: 22px;
}
.card{
	background:#fff;
	border:1px solid rgba(0,0,0,.08);
	overflow:hidden;
}
.card__media img{
	width:100%;
	height: auto;
}
.card__body{
	padding: 16px;
}
.card__title{
	margin:0 0 10px 0;
	font-size: 18px;
}
.card__title a{
	color: #454545;
}
.card__meta{
	margin: 0;
	padding-left: 18px;
	list-style: disc;
}
.card__excerpt{ margin:0; line-height:1.6; }

/* =========================================================
   Responsive — Base (global)
   NOTE: You asked for “full size first, then breakpoints”.
   ========================================================= */

/* ---------- <= 1024px ---------- */
@media (max-width: 1024px){
	:root{ --gutter: 18px; }
	.section{ padding: 55px 0; }
	.section-title{ font-size: 24px; }
}

/* ---------- <= 768px ---------- */
@media (max-width: 768px){
	:root{ --gutter: 16px; }
	.section{ padding: 44px 0; }
	.section-title{ font-size: 22px; }
}


/* =========================================================
   Global Typography helpers
   ========================================================= */
/* H4 Subtitel (global) */
.section h4,
.content h4{
  color: #4DE0FF;
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
	text-transform: uppercase;
}

/* =========================================================
   Global Button: Circle Button
   Usage: <a class="btn-circle">...</a>
   ========================================================= */
.btn-circle{
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: #6A7D56; /* TODO: Grün anpassen */
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
	padding-top: 10px;
  text-align: center;
	cursor: pointer;
}

/* Circle Button Variante: Pfeil nach rechts */
.btn-circle--right .btn-circle__icon{
  background-image: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/arrow-right.svg");
}

.btn-circle__text{
  font-size: 15px; /* TODO */
  line-height: 1.5;
}

.btn-circle__icon{
  width: 18px;
  height: 18px;
  background: center / contain no-repeat url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/icons/arrow-left.svg");
  filter: invert(1);
  opacity: .95;
}

/* ---------- Responsive (Circle Button) ---------- */
@media (max-width: 768px){
  .btn-circle{
    width: 140px;   /* TODO */
    height: 140px;  /* TODO */
  }
  .btn-circle__text{ font-size: 14px; }
}


html body div.gwolle-gb div.gwolle-gb-write-button input[type="button"].button {
  font-size: 15px;
    padding: 10px 30px;
    border-radius: 5px;
    border: 1px solid #6A7D56;
    color: #6A7D56;
    background-color: #fff;
	transition-duration: 0.4s;
	cursor: pointer;
}
html body div.gwolle-gb div.gwolle-gb-write-button input[type="button"].button:hover {
  
    color: #fff;
    background-color: #6A7D56;
}


@media (max-width: 768px){
  html, body{ overflow-x: hidden; }
}