/* General */
body {
  font-family: 'Ubuntu', sans-serif;
  margin: 0;
  color: #e0e0e0;
  background-color: #0d0d0d;
}

/* Header */
.header {
  background-color: rgba(15, 15, 15, 0.9);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

@keyframes floatHeader {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(5px);
  }
}
.logo {
  display: flex;
  align-items: center;
}

.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e0e0e0;
  margin-left: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: #e0e0e0;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("assets/hero8.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#typewriter-text {
  opacity: 0;
  transition: opacity 1s ease;
}

.overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-text {
  font-size: 2.5rem;
  color: #e0e0e0;
}

@keyframes rotateCamera {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.section {
  padding: 50px;
  text-align: center;
  background-color: #1a1a1a44;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
  margin: 20px 0;
}

.text-wrapper {
  max-width: 600px;      /* Controls the width of the text container */
  margin: 0 auto;        /* Centers the container */
  text-align: left;      /* Left-aligns the text within the container */
}

.text-wrapper p {
  margin: 10px 0;        /* Adds spacing between paragraphs */
}


.section h2 {
  font-size: 2rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}
/* Categories */
.categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.category {
  position: relative;
  width: 200px;
  height: 200px;
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: filter 0.3s ease;
  z-index: 1;
}

.category:hover .background {
  filter: blur(4px); /* Apply blur on hover */
}

.category h3 {
  position: relative;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  margin: 0;
  z-index: 2;
}

/* Overlay text */
.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease;
  z-index: 2;
}

.category:hover .category-overlay {
  opacity: 1; /* Show overlay on hover */
}

/* Background images for each category */
.category.nature .background {
  background-image: url("assets/Nature.jpg");
}
.category.portrait .background {
  background-image: url("assets/Potract.jpg");
}
.category.urban .background {
  background-image: url("assets/urban.jfif");
}
.category.abstract .background {
  background-image: url("assets/Abstarct.jpg");
}

/* Schedule section */
.schedule-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.schedule-image {
  width: 80%;
  max-width: 600px;
  transition: transform 0.5s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.schedule-image:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #0d0d0d3b;
  color: #e0e0e0;
  text-align: center;
  padding: 20px;
}
#star-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-color: #0d0d0d;
}

.button-1 {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-1-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: hsl(0deg 0% 0% / 0.25);
  will-change: transform;
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.button-1-edge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    to left,
    hsl(340deg 100% 16%) 0%,
    hsl(340deg 100% 32%) 8%,
    hsl(340deg 100% 32%) 92%,
    hsl(340deg 100% 16%) 100%
  );
}

.button-1-front {
  display: block;
  position: relative;
  padding: 12px 27px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: white;
  background: hsl(345deg 100% 47%);
  will-change: transform;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

@media (min-width: 768px) {
  .button-1-front {
    font-size: 1.25rem;
    padding: 12px 42px;
  }
}

.button-1:hover {
  filter: brightness(110%);
  -webkit-filter: brightness(110%);
}

.button-1:hover .button-1-front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button-1:active .button-1-front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.button-1:hover .button-1-shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button-1:active .button-1-shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.button-1:focus:not(:focus-visible) {
  outline: none;
}
/* FAQs Section */
.faqs-section {
  padding: 100px 0;
  background-color: #0d0d0d53;
  text-align: center;
}

.faqs-heading {
  font-size: 36px;
  font-weight: bold;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.faqs-list {
  width: 100%;
}

.faqs-container {
  position: relative;
  display: inline-block;
}

.faq-item {
  margin-bottom: 30px;
  position: relative;
  padding: 20px;
  background-color: #1e1e1e8b;
  border-radius: 5px;
  z-index: 1;
}

.question {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

.answer {
  display: none;
  font-size: 18px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

.question.active + .answer {
  display: block;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.nav-links {
  display: flex;
}

.close {
  display: none;
  font-size: 40px;
  cursor: pointer;
}
.social-icon {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    background-color: black;
    width: 50%;
    height: 40vh;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
    left: 0;
  }

  .close {
    display: block;
    align-self: flex-start;
    margin: 10px;
    color: rgb(241, 241, 241);
    font-size: 30px;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .nav-links a {
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
}
