/* style.css */

/* font converted using font-converter.net. thank you! */
@font-face {
  font-family: "futura_md_bt_medium";
  src: url("../fonts/futura/futura_md_bt_medium-webfont.eot"); /* IE9 Compat Modes */
  src: url("../fonts/futura/futura_md_bt_medium-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/futura/futura_md_bt_medium-webfont.svg") format("svg"), /* Legacy iOS */
    url("../fonts/futura/futura_md_bt_medium-webfont.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../fonts/futura/futura_md_bt_medium-webfont.woff") format("woff"), /* Modern Browsers */
    url("../fonts/futura/futura_md_bt_medium-webfont.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "futura_md_bt_bold";
  src: url("../fonts/futura/futura_md_bt_bold-webfont.eot"); /* IE9 Compat Modes */
  src: url("../fonts/futura/futura_md_bt_bold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/futura/futura_md_bt_bold-webfont.svg") format("svg"), /* Legacy iOS */
    url("../fonts/futura/futura_md_bt_bold-webfont.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../fonts/futura/futura_md_bt_bold-webfont.woff") format("woff"), /* Modern Browsers */
    url("../fonts/futura/futura_md_bt_bold-webfont.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "samaro";
  src: url("../fonts/samaro/samaro-webfont.eot"); /* IE9 Compat Modes */
  src: url("../fonts/samaro/samaro-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/samaro/samaro-webfont.svg") format("svg"), /* Legacy iOS */
    url("../fonts/samaro/samaro-webfont.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../fonts/samaro/samaro-webfont.woff") format("woff"), /* Modern Browsers */
    url("../fonts/samaro/samaro-webfont.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "florencescript";
  src: url("../fonts/florencescript/florencescript-webfont.eot"); /* IE9 Compat Modes */
  src: url("../fonts/florencescript/florencescript-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../fonts/florencescript/florencescript-webfont.svg") format("svg"), /* Legacy iOS */
    url("../fonts/florencescript/florencescript-webfont.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../fonts/florencescript/florencescript-webfont.woff") format("woff"), /* Modern Browsers */
    url("../fonts/florencescript/florencescript-webfont.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #faf6f2;
  color: #3a2a1c;
  line-height: 1.6;
}

header.hero {
  background: linear-gradient(135deg, #8b4a2b, #d49a6a);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

header.hero .logo {
  width: 80px;
  display: block;
  margin: 0 auto 1rem;
}

header.hero h1 {
  font-family: "florencescript", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  margin: 0;
}

header.hero p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

main.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.column h2, .column h3 {
  font-family: 'Cinzel', serif;
  color: #8b4a2b;
}

.column ul {
  list-style: none;
  padding: 0;
}

.column ul li {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.column ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #d49a6a;
}

.note {
  color: #b22222;
  font-weight: bold;
}

.card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-top: 1rem;
  text-align: center;
}

.card img {
  width: 100%;
  display: block;
  height: auto;
}

.card figcaption {
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

footer {
  background: #3a2a1c;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}

footer a {
  color: #f4d19a;
  text-decoration: none;
}

footer button {
  margin-top: 1rem;
  background: #d49a6a;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  color: #3a2a1c;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

footer button:hover {
  background: #c0804f;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #3a2a1c;
  color: #fff;
  padding: 1rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #f4d19a;
  text-decoration: underline;
}

.cookie-banner button {
  background: #d49a6a;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  color: #3a2a1c;
}

/* Responsive Layout */
@media (min-width: 768px) {
  main.content {
    flex-direction: row;
  }
  .column {
    flex: 1;
  }
  .image-grid {
    grid-template-columns: 1fr 1fr;
  }
}
