/* Define custom CSS variables */
:root {
  --primary-color: #8399dd;           
  --secondary-color: #8399dd;         
  --background-color: #1D3557;        /* Define background color */
  --accent-color: #FFD166;            /* Define accent color */
  --text-color: #8399dd;              /* Define text color */
  --gallery-background: #1D3557;      /* Define gallery background color */
  --border-color: #000000;            /* Define border color */
  --footer-bg: #18e8f3;               /* Define footer background color */
}

/* Global styles for the entire page */
body {
  background-color: var(--background-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

/* Styles for headings */
h1 {
  font-size: 36px;
  color: var(--primary-color);
}

h2 {
  font-size: 24px;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

/* Style for the search bar */
.search-bar {
  margin-top: 20px; /* Adjust the margin as needed */
  text-align: center;
}

#search-input {
  padding: 10px;
  width: 300px; /* Adjust the width as needed */
  border: 1px solid #ccc;
  border-radius: 5px;
}

#search-button {
  padding: 10px 20px;
  background-color: #007bff; /* Adjust the color as needed */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Style for the search bar on hover */
#search-button:hover {
  background-color: #0056b3; /* Adjust the hover color as needed */
}

/* Styles for navigation menu */
nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

nav li {
  display: inline;
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-color);
}

/* Styles for sections */
section {
  padding: 20px;
  margin-bottom: 30px;
  background-color: rgba(57, 11, 243, 0.1);
  border-radius: 10px;
}

#portfolio {
  background-color: var(--gallery-background);
  border-radius: 10px;
  padding: 20px;
}


/* Styles for the footer */
footer p {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  background-color: var(--footer-bg);
  padding: 10px 0;
  text-align: center;
}

/* Styles for the main content area */
main {
  margin-bottom: 60px;
}

/* Styles for the header */
header {
  background-color: var(--primary-color);
  text-align: center;
  padding: 20px;
  border-bottom: 5px solid var(--secondary-color);
}

header img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Styles for canvas backgrounds */
.canvas-bg-container {
  position: relative;
}

.canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
}

/* Styles for the video section */
#video {
  background-color: var(--gallery-background);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

/* Styles for the video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

/* Styles for the video player */
video {
  max-width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}


/* Styles for artist bio images */
.artist-bio img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}


#content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 60px 40px;
  min-height: 100dvh;
  overflow: hidden;
}

.card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 50% 50%;
  border: 1px solid #000;
  width: 300px;
  aspect-ratio: 1/1;
  color: #8399dd;
  border-radius: 20px;
  box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.03),
    0 22.3px 17.9px rgba(0, 0, 0, 0.05);
}

a:link,
a:visited,
a:hover,
a:active {
  background-color: transparent;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8399dd;
  background: #000;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.more {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  background-color: #8399dd;
  border-radius: 0 0 20px 20px;
}

.open-icon {
  font-size: 1.25rem;
  color: #000;
  transform: translateY(3px);
  margin-left: 3px;
  z-index: 1;
}

.modal-open {
  text-transform: uppercase;
  color: #000;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  grid-area: 1 / 2 / span 1 / span 1;
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: 50% 50%;
  z-index: 2;
  transition: all 0.6s ease-in;
}

.card:hover > .card-img {
  width: 50%;
  height: 50%;
  top: 50%;
  border-radius: 0 0 0 20px;
}


body.prevent-background-scroll {
  min-height: 100dvh;
  overflow-y: hidden;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20;
  animation: openModal 0.5s ease 1 normal;
}

@keyframes openModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #8399dd;
  width: 50%;
  border-radius: 4px;
  z-index: 30;
}

.modal-header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  padding: 15px 20px 10px;
  font-size: 1.2rem;
}

.modal-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #8399dd;
}

.modal-header .modal-close {
  background: #8399dd;
  border: 0;
  outline: 0;
  transform: translateY(3px);
  background-color: transparent;
  cursor: pointer;
}

.close-icon {
  font-size: 1.6rem;
  color: #000;
}

.modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 50px 10px;
  height: 70vh;
  overflow-y: auto;
}

.modal-one {
  padding: 70px 50px 10px;
}

.modal-body > img {
  max-width: 100%;
  width: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 20px;
}


@media (max-width: 1100px) {
  .beer {
    width: 200px;
  }

  #content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  #intro {
    padding: 30px;
  }

  .beer {
    width: 150px;
  }

  .info {
    gap: 20px;
    padding: 30px 30px;
  }

  .info h1 {
    font-size: 2.5rem;
  }

  .info p {
    font-size: 1rem;
  }

  #content {
    gap: 30px;
    padding: 60px 20px;
  }

  .card {
    width: 250px;
  }

  .modal-content {
    width: 80%;
  }

  footer {
    padding: 20px 80px 60px;
  }

  footer > p {
    font-size: 1.1rem;
  }
}

@media (max-width: 550px) {
  #intro {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "split-beer"
      "info";
  }

  .info {
    grid-area: info;
  }

  .split-beer {
    grid-area: split-beer;
    margin: 20px auto;
  }

  .beer {
    width: 100px;
  }

  #content {
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 40px;
  }

  footer {
    padding: 20px 30px 60px;
  }

  footer > p {
    font-size: 1rem;
  }
}

#testimonials, #contact {
  background-color: #1D3557;
  color: #cfd3da;
}

/* Common styles for h2 within #testimonials and #contact */
#testimonials h2, #contact h2 {
  color: #cfd3da;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Common styles for .testimonial and .contact-form */
.testimonial, .contact-form {
  border: 2px solid #0066cc;
  padding: 20px;
  margin: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Common styles for p within .testimonial and .contact-form */
.testimonial p, .contact-form p {
  color: #cfd3da;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Styles for input fields and textarea within .contact-form */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  background-color: #1D3557;
  border: 1px solid #0066cc;
  color: #8399dd;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Styles for the submit button within .contact-form */
.contact-form button {
  background-color: #0066cc;
  color: #1D3557;
  transition: background-color 0.3s ease;
}

/* Hover Effect for Testimonial Boxes and Contact Form */
.testimonial:hover, .contact-form:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Hover Effect for Submit Button */
.contact-form button:hover {
  background-color: #005599;
}

/* Button Grow Effect on Click */
.contact-form button:active {
  transform: scale(1.1);
}

/* Text Fade-in Effect for Paragraphs */
.testimonial:hover p, .contact-form:hover p {
  opacity: 1;
}

/* Limit the maximum width and height of profile images */
.testimonial img {
  max-width: 100px; /* Set your desired maximum width */
  max-height: 100px; /* Set your desired maximum height */
}

/* Styles for #contact (Contact Us) */
#contact {
  background-color: #1D3557;
  color: #8399dd;
  padding: 40px; /* Add some padding for spacing */
}

/* Styles for h2 within #contact */
#contact h2 {
  color: #8399dd;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 24px; /* Increase the font size for emphasis */
  margin-bottom: 20px; /* Add some spacing between the title and form */
}

/* Styles for .contact-form */
.contact-form {
  border: 2px solid #8399dd;
  padding: 20px;
  margin: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color:  #8399dd/* Change the background color for the form */
}

/* Styles for p within .contact-form */
.contact-form p {
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-bottom: 10px; /* Add spacing between paragraphs */
}

/* Styles for input fields and textarea within .contact-form */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  background-color: #cfd3da;
  border: 1px solid #0066cc;
  color: #0066cc;
  padding: 10px; /* Add padding to input fields for better readability */
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin-bottom: 10px; /* Add spacing between input fields */
  width: 100%; /* Make the input fields 100% width of the container */
}

/* Styles for the submit button within .contact-form */
.contact-form button {
  background-color: #130cee;
  color: #cfd3da;
  padding: 10px 20px; /* Increase padding for a more modern button style */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover Effect for .contact-form */
.contact-form:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Hover Effect for Submit Button */
.contact-form button:hover {
  background-color: #0066cc;
}

/* Button Grow Effect on Click */
.contact-form button:active {
  transform: scale(1.1);
}

/* Text Fade-in Effect for Paragraphs */
.contact-form p {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form {
    width: 100%; /* Make the form full width on smaller screens */
  }
  /* Adjust other styles for better mobile compatibility as needed */
}

header {
  text-align: center;
  color: #8399dd;
  padding: 20px;
  position: relative;
}

header img {
  max-width: 100%;
  height: auto;
}

header h1 {
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

header h1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 200%, transparent 0, transparent 30%, #338fff 40%);
  opacity: 0;
  transform: scale(0);
  z-index: -1;
  transition: transform 0.3s, opacity 0.3s;
}

header h1:hover::before {
  opacity: 1;
  transform: scale(2);
}
header {
  text-align: center;
  background-color: #1D3557;
  color: #8399dd;
  padding: 20px;
}

header img {
  max-width: 100%;
  height: auto;
  border: 5px solid #33a0ff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, filter 0.3s;
}

header img:hover {
  transform: scale(1.1); /* Enlarge the image on hover */
  filter: brightness(1.2); /* Increase brightness on hover */
}

header h1 {
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-top: 10px;
}

        @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap");
    
        :root {
            --clr-1: #00c2ff;
            --clr-2: #ffcf33;
            --clr-3: #6c25de;
            --clr-4: #e54cff;
    
            --blur: 1rem;
            --fs: clamp(3rem, 8vw, 7rem);
            --ls: clamp(-1.75px, -0.25vw, -3.5px);
        }
    
        body {
            min-height: 100vh;
            display: grid;
            place-items: center;
            color: #fff;
            font-family: "Inter", "DM Sans", Arial, sans-serif;
        }
    
        *,
        *::before,
        *::after {
            font-family: inherit;
            box-sizing: border-box;
        }
    
        .content {
            text-align: center;
        }
    
        .word {
            font-size: var(--fs);
            font-weight: 800;
            letter-spacing: var(--ls);
            position: relative;
            overflow: hidden;
            margin: 0;
        }
    
        .aurora {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            mix-blend-mode: darken;
            pointer-events: none;
        }
    
        .aurora__item {
            overflow: hidden;
            position: absolute;
            width: 60vw;
            height: 60vw;
            background-color: var(--clr-1);
            border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
            filter: blur(var(--blur));
            mix-blend-mode: overlay;
        }
    
        .aurora__item:nth-of-type(1) {
            top: -50%;
            animation: aurora-border 6s ease-in-out infinite,
                aurora-1 12s ease-in-out infinite alternate;
        }
    
        .aurora__item:nth-of-type(2) {
            background-color: var(--clr-3);
            right: 0;
            top: 0;
            animation: aurora-border 6s ease-in-out infinite,
                aurora-2 12s ease-in-out infinite alternate;
        }
    
        .aurora__item:nth-of-type(3) {
            background-color: var(--clr-2);
            left: 0;
            bottom: 0;
            animation: aurora-border 6s ease-in-out infinite,
                aurora-3 8s ease-in-out infinite alternate;
        }
    
        .aurora__item:nth-of-type(4) {
            background-color: var(--clr-4);
            right: 0;
            bottom: -50%;
            animation: aurora-border 6s ease-in-out infinite,
                aurora-4 24s ease-in-out infinite alternate;
        }
    
        @keyframes aurora-1 {
            0% {
                top: 0;
                right: 0;
            }
    
            50% {
                top: 100%;
                right: 75%;
            }
    
            75% {
                top: 100%;
                right: 25%;
            }
    
            100% {
                top: 0;
                right: 0;
            }
        }
    
        @keyframes aurora-2 {
            0% {
                top: -50%;
                left: 0%;
            }
    
            60% {
                top: 100%;
                left: 75%;
            }
    
            85% {
                top: 100%;
                left: 25%;
            }
    
            100% {
                top: -50%;
                left: 0%;
            }
        }
    
        @keyframes aurora-3 {
            0% {
                bottom: 0;
                left: 0;
            }
    
            40% {
                bottom: 100%;
                left: 75%;
            }
    
            65% {
                bottom: 40%;
                left: 50%;
            }
    
            100% {
                bottom: 0;
                left: 0;
            }
        }
    
        @keyframes aurora-4 {
            0% {
                bottom: -50%;
                right: 0;
            }
    
            50% {
                bottom: 0%;
                right: 40%;
            }
    
            90% {
                bottom: 50%;
                right: 25%;
            }
    
            100% {
                bottom: -50%;
                right: 0;
            }
        }
    
        @keyframes aurora-border {
            0% {
                border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
            }
    
            25% {
                border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
            }
    
            50% {
                border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
            }
    
            75% {
                border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
            }
    
            100% {
                border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
            }
        }