/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.wrapper {
  margin: 0 auto;
  padding: 24px;
  max-width: 1250px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px 40px;
  background-color: black;
}


.logo img {
  width: 140px;
}

.logo:hover {
  transform: rotate(360deg) scale(1.1); /* full spin and slight zoom */
}

@keyframes windUpSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-15deg) scale(1); /* small backward wind-up */
  }
  100% {
    transform: rotate(360deg) scale(1.1); /* full spin + slight zoom */
  }
}

.logo:hover {
  animation: windUpSpin 0.7s ease-out forwards;
}


.nav-links {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  text-decoration: underline;
  font-weight: bold;
}

.nav-links ul {
  display: flex;
  flex-direction: row;
  gap: 40px;
}


.hamburger {
  position: relative;
  width: 32px;
  height: 40px;
  cursor: pointer;
  display: none;
  z-index: 3;
  overflow: visible;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}

.hamburger span:nth-child(1) {
  top: 8px;
}

.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.open span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}
/* Mobile Styles */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 85%;
    left: 0;
    right: 0;
    background-color: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 1;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  color: white;
}

@media (max-width: 768px) {
  .hero-text {
    left: 50%;
  }
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 50px;
}

.herobtn {
  color: white;
  padding: 12px 24px;
  border: 1px solid white;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.herobtn:hover {
  background: lightgrey;
  color: white;
}

/* Black Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust the 0.5 for more or less darkness */
  z-index: 1;
}

/* Intro */
.intro {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  padding: 60px 20px;
  text-align: center;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.intro p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 175px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;

  }
}

.grid-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: black;
  background: white;
  transition: transform 0.4s ease, opacity 0.4s;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;

}

.grid-item h3 {
  font-weight: bold;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
}

.grid-item p {
  flex-grow: 1;
  /* Pushes the button to the bottom */
  line-height: 1.5;
}

.grid-item .btn {
  max-width: 250px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  font-weight: lighter;
  text-transform: uppercase;
  color: black;
  padding: 12px 24px;
  border: 1px solid black;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: black;
  color: white;
}

.btn2 {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  border: 1px solid black;
  padding: 12px 32px;
  margin: 50px;
  font-size: 2rem;
  transition: 0.3s;
}


.btn2:hover {
  color: white;
  background-color: black;
}

@media (max-width: 768px) {
  .btn2 {
    font-size: 1.1rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 3s forwards;
}

.delay {
  animation-delay: 0.2s;
}

.delay2 {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: black;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

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

  .hamburger {
    display: flex;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }
}

.section-divider {
  height: 1px;
  background-color: #000000;
  width: 100%;
  margin: 48px auto;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-section {
  max-width: 700px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: lighter;
}

.faq {
  border-bottom: 1px solid black;
  padding: 20px 0;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: lighter;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.icon {
  transition: transform 0.6s ease;
  font-size: 1.5rem;
}

.faq.open .icon {
  transform: rotate(135deg);
  /* + to × */
}

.answer {
  max-height: 0;
  overflow: hidden;
  line-height: 1.6;
  margin-top: 10px;
  color: #333;
}

.faq.open .answer {
  max-height: 300px;
  /* adjust as needed */
}

@media (max-width: 768px) {
 .faq-section
 {
  max-width: 500px;
 }
 .question
 {
  font-weight: normal;
 }
}

@media (max-width: 480px) {
 .faq-section
 {
  max-width: 350px;
 }
  .question
 {
  font-weight: normal;
 }
}

.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
  padding: 0;
  z-index: 2;
}

.arrow:hover {
  background-color: #000000;
  color: white;
}

.arrow-icon {
  font-size: 1.25rem;
  pointer-events: none;
}

.gallery {
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  cursor: grab;
  user-select: none;
  margin: 0 auto;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.gallery.active {
  cursor: grabbing;
}

.gallery-track {
  display: flex;
  gap: 1rem;
}

.gallery-item {
  max-width: 350px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 0.5rem;
  pointer-events: auto;
  user-select: none;
  -webkit-user-drag: none;
  cursor: pointer;
}

.gallery-item h3 {
  padding: 15px;
}

@media (min-width: 768px) {
  .gallery-item {
    min-width: 300px;
  }

  .arrow {
    width: 56px;
    height: 56px;
  }
}

/* Keep your existing lightbox container styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
}

/* When open, show with opacity */
.lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0s 0s;
}

/* Animate the image scaling & fading */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  pointer-events: none;
  /* prevent interaction issues */
}

/* When lightbox is open, scale image up and fade in */
.lightbox.open .lightbox-img {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.close-lightbox {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0;
  z-index: 1000;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease;
}

.close-lightbox:hover {
  color: #ddd;
}

.close-lightbox svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  pointer-events: none;
  /* avoid interfering with click */
}


.site-footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 50px;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
  animation: spin 30s linear infinite; /* adjust speed by changing duration */
  transform-origin: center;
  display: inline-block; /* ensures transform works properly */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer-nav {
  margin-top: 1rem;
}

.footer-nav a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

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



/* ------------------------------
   MODAL STYLES - Black & White
------------------------------ */

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.96) translateY(20px);
  opacity: 0;
  transition: all 0.35s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  background: none;
  border: none;
}

/* Overlay styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal content animation */
.modal-content {
  background: #fff;
  color: #000;
  padding: 2rem;
  width: 90%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: all 0.4s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
  background: none;
  border: none;
}

/* Optional: Make it scrollable */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 8px;
}


/* ------------------------------
   FORM STYLES - Black & White
------------------------------ */

.fs-form {
  font-family: Arial, sans-serif;
}

.fs-form fieldset {
  border: none;
  margin-bottom: 2rem;
  padding: 0;
}

.fs-layout__2-column .fs-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.fs-label {
  font-weight: 600;
  color: #000;
  font-size: 0.95rem;
}

.fs-input,
.fs-select,
.fs-textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
  transition: background-color 0.2s ease;
}

.fs-input:focus,
.fs-select:focus,
.fs-textarea:focus {
  outline: none;
  background-color: #f9f9f9;
}

.fs-textarea {
  resize: vertical;
  min-height: 100px;
}

.fs-upload-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  cursor: pointer;
}

.fs-upload-input {
  display: none;
}

.fs-upload-button {
  padding: 0.5rem 1rem;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}

.fs-upload-filename {
  font-size: 0.9rem;
  color: #000;
}

.fs-checkbox-field {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.fs-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #000;
  margin-top: 0.3rem;
}

.fs-button-group {
  text-align: right;
}

.fs-button {
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.fs-button:hover {
  background-color: #222;
}

/* Responsive Layout */
@media (min-width: 640px) {
  .fs-layout__2-column fieldset {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .fs-field.full-width {
    grid-column: span 2;
  }
}

.artistmade {
  max-width: 650px;
  margin: 0 auto;
  margin-top: 24px;
}

.artistmade h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: lighter;
}

.artistmade p {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
  font-weight: lighter;
}

.thankyou-message {
  padding: 1.5rem;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInScale 0.4s forwards ease-out;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}