:root {
  --gap: 1rem;
  --card-pad: 1.25rem;
  --hero-padding: 2rem;
  --chev-size: 88px;
  --topbar-height: 59px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.4;
  display: flex; /* Establishes a flex container */
  flex-direction: column; /* Stacks children vertically */
  min-height: 100vh; /* Sets a minimum height of 100% of the viewport height */
}

a {
  text-decoration: none;
  color: var(--light-bg);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Top bar menu */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-height);
  background: rgba(255,255,255,.95);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  z-index: 100;
}

.topbar a.active-page {
  color: #fff; /* White text for contrast */
  background-color: #F77B1A; /*#F7931A; A standard green color */
  border-radius: 5px; /* Optional: adds rounded corners */
  padding: 8px 12px;
}

.topbar a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.visible {
  opacity: 1!important;
  transform: translateY(0)!important;
}

#hamburger-button {
  display: none;
}

#hamburger-menu {
  display: none;
}

/*#hamburger-menu ul {
  display: inline-flex;
  margin-left: 5%;
}

#hamburger-menu ul li {
  margin: 0 20px;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: #f1f1f1;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--hero-padding);
  position: relative;
}

.hero-logo-container {
  max-width: 200px;
  display: block; /* Make it a block element to use margin: auto */
  width: fit-content; /* Shrink to the size of its content */
  margin: 0 auto; /* Center horizontally */
  margin-bottom: 30px; /* Add some space below the logo */
}

.hero-logo {
  max-width: 100%;
  height: auto; /* Maintain aspect ratio */
  margin-top: -100px;
}

.hero h1 {
  margin: 0 0 .5rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: black;
}

.hero h2 {
  margin: 0 0 .5rem;
  /*font-size: clamp(0.75rem, 2vw, 1.5rem);*/
  font-size: clamp(1.2rem, 2vw, 1.5rem); 
  font-weight: normal;
  color: black;
}

.hero p {
  margin: 0 auto;
  opacity: .92;
  max-width: 60ch;
}

/* Chevron */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 10%;
  /*bottom: 17.25rem;*/
  transform: translateX(-50%);
  width: var(--chev-size);
  height: var(--chev-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  /*animation: chevron-bounce 1.6s cubic-bezier(.25,.8,.25,1) infinite;*/
  animation: chevron-bounce 1.6s infinite;
}
.scroll-down svg { width: 100%; height: 100%; }
@keyframes chevron-bounce {
  0% { transform: translateX(-50%) translateY(0); }
  40%{ transform: translateX(-50%) translateY(16px); }
  /*70%{ transform: translateX(-50%) translateY(13px); }*/
  100%{transform: translateX(-50%) translateY(0); }
}

/* Content */
main.content {
  padding: 2rem;
  flex-grow: 1;
}

.grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(2,1fr);
  margin-bottom: 40px;
}

.highlighted-text {
  color: #000;
  font-size: 26px;
  font-weight: bold;
  display: inline-block; /* Enables margin-bottom to work */
  margin-bottom: 40px;
  margin-top: 40px;
}

.intro-text {
  color: #000;
  font-size: 20px;
  display: inline-block; /* Enables margin-bottom to work */
  margin-bottom: 50px; /* Add 20 pixels of space below the element */
}

.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  padding: var(--card-pad);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16,24,40,.04);

  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.00);
}

.image img {
    /* Set the image size to fit inside the placeholder */
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image fits without being distorted */
    margin-bottom: 10px;
}

.card h3 { margin: 0 0 .5rem; }
.card p { margin: 0; }

@media (max-width:768px) {
  .grid { grid-template-columns: 1fr; }

  .topbar {
    /*height: 21%;*/
    /*height: 100%;*/
  }

  #hamburger-button {
    opacity: 1;
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    margin: 0 0 0 80%;

    width: 40px;         /* Set the button's width */
    height: 40px;        /* Set the button's height */
    padding: 4px;        /* Adds space around the SVG icon */
  }

  #hamburger-button img {
    width: 100%;         /* Make the image fill the button's content area */
    height: 100%;
  }

  #hamburger-menu {
    /*opacity: 0;*/
    transform: translateY(-100000000px);
    display: block;
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,.95);
    height: 100%;

    padding-left: 11%;
    padding-top: 20%;
    font-size: 18pt;
    line-height: 60px;
  }

  #hamburger-menu ul {
    display: block;
  }

  #hamburger-menu ul li {
    margin: 10px 0;
  }

  .topbar a {
    display: none;
  }

  /*.scroll-down { bottom: 3.25rem; --chev-size: 88px; }*/
  /*.scroll-down { bottom: 1%; --chev-size: 88px; }*/
}

@media (max-height:670px) {
  .scroll-down { bottom: 2%; --chev-size: 88px; }
}

.container { max-width: 1100px; margin: 0 auto; }

.container_small { max-width: 800px; margin: 0 auto; }

/* Booking Button */

.friendly-button-container {
  /* Remove text-align; not needed for Flexbox centering */
  display: flex; /* Enable Flexbox on the container */
  justify-content: center; /* Center child elements horizontally */
  margin-bottom: 50px;
  gap: 20px; /* Adjust this value to your desired gap size */
}

.friendly-button {
  padding: 12px 24px;
  font-size: 16px;
  font-family: sans-serif;
  color: #fff;
  background-color: #F77B1A; /*pleasant green #0f9e06*/
  border: none;
  border-radius: 10px; /* Rounded corners */
  cursor: pointer;

  /* Shadow for depth */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  /* Smooth transitions for hover effects */
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.friendly-button:hover {
  background-color: #F7931A ; /* Darken on hover #0f9e06*/
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); /* Slight lift on hover */
}

.friendly-button:active {
  transform: translateY(0); /* Press down effect */
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #f1f1f1;
    padding: 10px 0 20px;
    /*border-top: 1px solid #222;*/
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    margin: 0 5.5%;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #222;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #222;
    transition: color 0.3s;
    /*text-decoration: none;*/
}

.footer-col a:hover {
    color: #999;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon-placeholder {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

icon-link{
  display: block;
  width: 30px;
  height: 30px;
  text-decoration: none;
}

.icon-x { background-image: url("images/x-logo-round.webp"); }   
.icon-nostr { background-image: url("images/nostr.png"); } 
.icon-instagram { background-image: url("images/Insta.png"); } 


.footer-bottom {
    text-align: center;
    /*border-top: 1px solid #222;*/
    padding-top: 20px;
    color: #222;
    font-size: 0.9rem;
}



/* Style for the double-wide card on index page */
@media (min-width: 768px) {
  /* Make the card span two columns */
  .grid .double-wide-card {
    grid-column: span 2; /* Span two columns in the grid */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Create two equal columns inside the card */
    gap: var(--gap); /* Use the global gap variable for spacing */
  }

  /* Adjust existing card hover to prevent issues with new layout */
  .grid .double-wide-card:hover {
    transform: scale(1.00); /* Disable scale effect for this card */
  }


  /* Container for the left side of the card */
  .double-wide-card .card-left {
    text-align: left;
    padding: var(--card-pad);
  }

  /* Container for the right side of the card */
  .double-wide-card .card-right {
    text-align: left;
    padding: var(--card-pad);
  }
}

/*scroll down index middle*/
.container-scroll-down {
  position: relative; /* Make this the positioning context for the child */
  height: 100px;      /* Give it a height equal to the viewport */
  /* If you don't want a full-height container, you can set a fixed height like 'height: 500px;' */
}

/*Video container*/
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* Style for links within the content-with-image container */
.content-with-image a {
  text-decoration: none; /* Remove the default underline */
  font-weight: bold; /* Make the link text bold */
  color: #F77B1A; /* Use the same orange as your button for consistency */
}

/* Add an underline on hover for better user feedback */
.content-with-image a:hover {
  text-decoration: underline; /* Add underline only when hovering */
}
