body {
  margin: 0;
  background-color: #151515;
  font-family: 'Obidee Sans';
}

#nav-bg {
  --nav-bg: #16318c;
  --nav-button-bg: #ffffff;
  --nav-button-fore: #0f172a;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nav-bg);
  padding: 0.85rem 1.5rem;
  gap: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.navbar .logo {
  color: var(--nav-button-bg);
  font-size: 1.5rem;
  font-weight: 800;
}

.navbar .links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.navbar .links a {
  display: inline-block;
  background: var(--nav-button-bg);
  color: var(--nav-button-fore);
  padding: 0.7rem 1.1rem;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.navbar .links a.active {
  outline: 3px solid rgba(255, 255, 255, 0.12);
}

.navbar .links a:hover {
  transform: translateY(-2px);
}

.profile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--nav-button-bg);
  color: var(--nav-button-fore);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--nav-button-bg);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar .links {
    flex-direction: column;
    display: none;
    width: 100%;
    background: var(--nav-bg);
  }

  .navbar .links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
/* end of navbar stuff */

.hero-main {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center center; /* Ensures the image is centered both vertically and horizontally */
  background-repeat: no-repeat; /* Prevents repeating of the image */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-begin {
  position: relative;
  width: 100%;
  height: 600px;
  background-image: url('../images/fish-bg-clay.png');
  background-size: cover;
  background-position: center center center; /* Ensures the image is centered both vertically and horizontally */
  background-repeat: no-repeat; /* Prevents repeating of the image */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.about-me {
  padding: 10%;
  padding-top: 0%;
  color: white;
  text-align: center;
}

.about-me h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-me p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 800px;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center everything horizontally */
  text-align: center; /* Center text within each block */
}

.footer-right {
  margin-top: 10px; /* Space between text and links */
}

.footer-right ul {
  list-style: none;
  padding: 0;
  display: inline-flex; /* Keeps the social media links in a row */
  gap: 15px;
}

.footer-right li {
  margin: 0;
}

.footer-right a {
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* CSS */
.button-6 {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family:
    system-ui,
    -apple-system,
    system-ui,
    'Helvetica Neue',
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #f0f0f1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}

.opening-hours {
  background-color: #333333;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  margin: 0 auto;
  text-align: center;
}

.opening-hours h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.opening-hours ul {
  list-style-type: none;
  padding: 0;
}

.opening-hours li {
  font-size: 1em;
  margin: 8px 0;
}

.opening-hours strong {
  font-weight: bold;
}

table {
  margin-left: 12.5%;
  position: relative;
  font-size: 125%;
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 75%;
  color: #726da8;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

html,
body {
  margin: 0px;
  padding: 0px;
  background: url('http://digital.bnint.com/filelib/s9/photos/white_wood_4500x3000_lo_res.jpg');
}

.carousel {
  position: relative;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.64);
  margin-top: 26px;
  margin-left: 15%;
  margin-right: 15%;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-open:checked + .carousel-item {
  position: static;
  opacity: 100;
}

.carousel-item {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}

.carousel-item img {
  display: block;
  height: auto;
  max-width: 100%;
}

.carousel-control {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 40px;
  height: 40px;
  line-height: 35px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  cursor: pointer;
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
  width: 40px;
  z-index: 10;
}

.carousel-control.prev {
  left: 2%;
}

.carousel-control.next {
  right: 2%;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #aaaaaa;
}

#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3 {
  display: block;
}

.carousel-indicators {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.carousel-indicators li {
  display: inline-block;
  margin: 0 5px;
}

.carousel-bullet {
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 35px;
}

.carousel-bullet:hover {
  color: #aaaaaa;
}

#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet {
  color: #428bca;
}

#title {
  width: 100%;
  position: absolute;
  padding: 0px;
  margin: 0px auto;
  text-align: center;
  font-size: 27px;
  color: rgba(255, 255, 255, 1);
  font-family: 'Open Sans', sans-serif;
  z-index: 9999;
  text-shadow:
    0px 1px 2px rgba(0, 0, 0, 0.33),
    -1px 0px 2px rgba(255, 255, 255, 0);
}

.gallery {
  --s: 25rem; /* control the size */
  --g: 8px; /* control the gap */

  display: grid;
  grid: auto-flow var(--s) / repeat(2, var(--s));
  gap: var(--g);
}
.gallery > img {
  width: 100%;
  aspect-ratio: 1;
  cursor: pointer;
  filter: grayscale();
  z-index: 0;
  transition:
    0.25s,
    z-index 0s 0.25s;
}
.gallery > img:hover {
  width: calc(200% + var(--g));
  filter: grayscale(0);
  z-index: 1;
  --_c: 50%;
  transition:
    0.4s,
    z-index 0s;
}
.gallery > img:nth-child(1) {
  clip-path: circle(var(--_c, 55% at 70% 70%));
  place-self: start;
}
.gallery > img:nth-child(2) {
  clip-path: circle(var(--_c, 55% at 30% 70%));
  place-self: start end;
}
.gallery > img:nth-child(3) {
  clip-path: circle(var(--_c, 55% at 70% 30%));
  place-self: end start;
}
.gallery > img:nth-child(4) {
  clip-path: circle(var(--_c, 55% at 30% 30%));
  place-self: end;
}

.flex-container {
  display: flex;
}
.flex-child {
  flex: 1;
  border: 200px solid black;
}
.flex-child:first-child {
  margin-right: 5%;
}
