*,
*::after,
*::before {
  box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    margin: 20px;
    background-image: url('Background5.png'); /* Replace 'your-background-image.jpg' with the path to your image */
    background-repeat: repeat; /* Repeat the background both horizontally and vertically */
    background-attachment: fixed; /* Fixed background, it will not scroll with the content */
}

/* This is for the pop up */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 6;
}

.popup-content {
    margin-bottom: 10px;
    z-index: 5;
}

button {
    padding: 10px;
    background: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 5;
}
/* Popup CSS done */

:root {
  --bar-width: 60px;
  --bar-height: 10px;
  --hamburger-gap: 8px;
  --foreground: #142A42;
  --background: white;
  --hamburger-margin: 8px;
  --animation-timing: 200ms ease-in-out;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}

.hamburger-menu {
  --x-width: calc(var(--hamburger-height) * 1.41421356237);

  display: flex;
  flex-direction: column;
  gap: var(--hamburger-gap);
  width: max-content;
  position: fixed;
  top: var(--hamburger-margin);
  left: var(--hamburger-margin);
  z-index: 4;
  cursor: pointer;
}

.hamburger-menu:has(input:checked) {
  --foreground: white;
  --background: #333;
}

.hamburger-menu:has(input:focus-visible)::before,
.hamburger-menu:has(input:focus-visible)::after,
.hamburger-menu input:focus-visible {
  border: 1px solid var(--background);
  box-shadow: 0 0 0 1px var(--foreground);
}

.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input {
  content: "";
  width: var(--bar-width);
  height: var(--bar-height);
  background-color: var(--foreground);
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing),
    rotate var(--animation-timing), translate var(--animation-timing),
    background-color var(--animation-timing);
}

.hamburger-menu input {
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}

.hamburger-menu:has(input:checked)::before {
  rotate: 45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / -2);
}

.hamburger-menu:has(input:checked)::after {
  rotate: -45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / 2);
}

.hamburger-menu input:checked {
  opacity: 0;
  width: 0;
}

.sidebar {
  position: fixed;
  margin: -20px;
  transition: translate var(--animation-timing);
  translate: -100%;
  padding: 0.5rem 1rem;
  padding-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 1rem);
  background-color: var(--foreground);
  color: var(--background);
  max-width: 14rem;
  min-height: 100rem;
  z-index: 3;
}

.hamburger-menu:has(input:checked) + .sidebar {
  translate: 0;
}



header {
    margin: auto;
    text-align: center;
max-width: 1000px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* White background with some transparency */
    border-radius: 10px; /* Rounded corners */
    position: relative; /* Add relative positioning to allow z-index to work */
    z-index: 1; /* Ensure the header stays above the background image */
}

section {
    margin: auto;
max-width: 1000px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9); /* White background with some transparency */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft box shadow */
    position: relative; /* Add relative positioning to allow z-index to work */
    z-index: 2; /* Ensure sections stay above the background image */
}

footer {
    margin: auto;
    text-align: center;
max-width: 1000px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9); /* White background with some transparency */
    border-radius: 10px; /* Rounded corners */
    margin-top: 20px;
    position: relative; /* Add relative positioning to allow z-index to work */
    z-index: 1; /* Ensure the footer stays above the background image */
}

@media screen and (max-width: 600px) {
    header {
        padding: 10px;
    }
}

/* Additional Styles */
h1, h2 {
    color: #89cff0; /* text color */
}

p {
    color: #555;
}

a {
    color: #990099; /* Purple link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #660066; /* Darker purple on hover */
}
/* Additional Styles for Portfolio Section */
#portfolio {
    text-align: center;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.lefty {
	float: left;
	min-height: 150px;
	min-width: 150px;
}
.righty {
	float: right;
	min-height: 150px;
	min-width: 150px;
}

.thumbnails a {
    display: block;
}

.thumbnails img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.thumbnails a:hover img {
    transform: scale(1.1);
}
/* This is for Age Verification */
