/* BASIC RESET */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; color:#fff; background:#000; }

/* NAVBAR -------------------------------------------------------- */
#header {
  position: fixed;
  top:0; left:0;
  width:100%;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:999;
  transition:0.4s;
  background:rgba(0,0,0,0.1);
}

#header.scrolled {
  background:#000;
}

.logo {
  font-size:1.5rem;
  font-weight:bold;
  letter-spacing:3px;
}

#nav ul {
  display:flex;
  gap:30px;
  list-style:none;
}

#nav a {
  color:#fff;
  text-decoration:none;
  font-size:.9rem;
  letter-spacing:2px;
}

/* MOBILE HAMBURGER */
#hamburger { display:none; cursor:pointer; }
#hamburger span {
  display:block;
  width:28px;
  height:3px;
  background:#fff;
  margin:5px;
}

/* HERO --------------------------------------------------------- */
.hero {
  height:100vh;
  width:100%;
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
}

.parallax {
  background-attachment:fixed;
}

.hero h1 {
  font-size:5rem;
  letter-spacing:4px;
}

.button {
  display:inline-block;
  padding:12px 26px;
  border:2px solid #fff;
  color:#fff;
  text-decoration:none;
  margin-top:20px;
  letter-spacing:2px;
  transition:0.3s;
}

.button:hover {
  background:#fff;
  color:#000;
}

/* SECTIONS ------------------------------------------------------ */

.section {
  padding:120px 60px;
  text-align:center;
}

.black { background:#000; color:#fff; }
.light { background:#f2f2f2; color:#000; }

/* CARD GRID ------------------------------------------------------ */
.card-grid {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:40px;
  margin:40px auto;
  max-width:1200px;
}

.card { width:300px; text-align:center; }
.card img { width:100%; border-radius:8px; }

/* PRESS ---------------------------------------------------------- */
..press-grid {
  max-width:1000px;
  margin:40px auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
}

.press-grid img {
  width:180px;
  opacity:0.6;
  filter:grayscale(100%);
  transition:0.3s;
}

.press-grid img:hover {
  opacity:1;
}

.quote {
  max-width:600;
  margin:40px auto;
  padding:20px;
  border-left:4px solid #000;
}

.light .quote { border-left:4px solid #111; }


/* FOOTER --------------------------------------------------------- */
footer {
  padding:40px;
  text-align:center;
  background:#000;
  border-top:1px solid #333;
}

.artist-grid {
  max-width:700px;
  margin:60px auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
}

.artist-card {
  width:300px;
  text-align:center;
  transition:0.4s;
}

.artist-card img {
  width:100%;
  border-radius:8px;
  transition:0.4s;
}

.artist-card:hover img {
  transform:scale(1.05);
}

.masonry {
  columns:3;
  column-gap:20px;
  max-width:1200px;
  margin:0 auto;
}

.masonry img {
  width:100%;
  margin-bottom:20px;
  border-radius:6px;
}

/* ACCORDION --------------------------------------------------------- */
.accordion {
  max-width:700px;
  margin:40px auto;
}

.acc-btn {
  width:100%;
  background:#111;
  color:#fff;
  border:none;
  padding:15px;
  text-align:left;
  font-size:1.1rem;
  cursor:pointer;
  margin-bottom:10px;
}

.acc-btn.active {
  background:#222;
}

.acc-panel {
	  text-align: left;

  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding-left:10px;
}

/* SHOP --------------------------------------------------------- */
.product-grid {
  max-width:1200px;
  margin:60px auto;
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  justify-content:center;
}

.product {
  width:280px;
  text-align:center;
}

.product img {
  width:100%;
  border-radius:8px;
  transition:0.3s;
}

.product img:hover {
  transform:scale(1.05);
}

/* ARTISTS
--------------------------------------------------------- 

.hero-artist {
  padding-top: 60px;
  padding-bottom: 40px;
}

.masonry {
  margin-top: 20px;
  margin-bottom: 20px;
}

.bio {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section a.button {
  margin-top: 20px;
  margin-bottom: 20px;
}


/* portfolio zoom --------------------------------------------------------- */

/* LIGHTBOX / IMAGE ZOOM */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  animation: fadeIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  transition: 0.2s ease;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Cursor change for clickable images */
.masonry img {
  cursor: zoom-in;
}



/* Portfolio Grid */
.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  max-width: calc((220px * 4) + (20px * 3)); /* 4 columns + 3 gaps */
  margin: 0 auto;
  gap: 20px;        /* uniform gap between images */
  padding: 20px;    /* uniform space around the entire grid */
}

/* Square, uniform thumbnails */
.masonry img {
  width: 220px;       /* thumbnail size */
  height: 220px;      /* makes them perfectly square */
  object-fit: cover;  /* crops them cleanly */
  border-radius: 6px; 
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* NICE hover effect (optional but recommended) */
.masonry img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}


body {
  background: url('../images/home-bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5); /* darkens image */
  z-index: -1;
}


/* LOCATION PAGE BACKGROUND OVERRIDE */
.location-page {
  background: url('../images/DSC03437.jpeg') no-repeat center center fixed !important;
  background-size: cover !important;
}

.location-page::before {
  background: rgba(0,0,0,0.5) !important;
}

/* press grid ---------------------------------- */

.press-grid img {
  width:180px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.press-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}








/* CONTACT WRAPPER */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* space between info and form */
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* CONTACT INFO */
.contact-info {
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 2px 0;
}

/* Contact Form Dark Inputs */
.contact-form input,
.contact-form textarea {
  background: #111 !important; /* dark background */
  color: #fff !important;      /* white text */
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* Row for Name + Email */
.contact-form .row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.contact-form .row input {
  flex: 1 1 0;
  background: #111 !important; /* dark background */
  color: #fff !important;      /* white text */
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px 14px;
}

/* Message textarea full width */
.contact-form textarea {
  width: 100%;
  min-height: 120px;
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 1rem;
  resize: vertical;
}


/* Submit button */
.contact-form .button {
  align-self: center;
  padding: 12px 26px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}

.contact-form .button:hover {
  background: #fff;
  color: #000;
}

/* Responsive: stack inputs on small screens */
@media (max-width: 500px) {
  .contact-form .row {
    flex-direction: column;
  }
}










/* ------------------------------------------------------
   Section Spacing - Tightened & Consistent
--------------------------------------------------------*/
.section {
  padding: 60px 40px;       /* vertical and horizontal padding */
  text-align: center;
}

/* Override for black and light sections if needed */
.section.black,
.section.light {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* HERO / ARTIST HEADER */
.hero-artist {
  padding-top: 60px;
  padding-bottom: 40px;
}

/* PORTFOLIO GRID */
.masonry {
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 20px;                /* keep images nicely spaced */
  padding: 0 10px;          /* optional padding inside grid */
}

/* BIO SECTION */
.bio {
  max-width: 750px;
  margin: 20px auto;        /* smaller top/bottom gap */
  padding: 0 10px;          /* small horizontal padding */
  line-height: 1.7;
}

/* BOOK AGAIN BUTTON SECTION */
.section a.button {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* CONTACT SECTION */
.contact-wrapper {
  max-width: 500px;
  margin: 20px auto;        /* smaller gap above/below form */
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form {
  gap: 10px;
}

/* MOBILE / RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .section {
    padding: 40px 20px;
  }

  .hero-artist {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .masonry {
    margin-top: 10px;
    margin-bottom: 10px;
    gap: 15px;
  }

  .bio {
    margin: 10px auto;
  }
}


:root {
  --footer-bg: #000000;
  --footer-text: #ccc;
  --footer-heading: #fff;
  --footer-link-hover: #fff;
  --footer-border: #333;
  --icon-size: 18px;
}

.bb-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 80px 60px;
  border-top: 1px solid var(--footer-border);
}

.bb-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.bb-col {
  min-width: 220px;
  flex: 1;
}

.bb-col h3 {
  font-size: 14px;
  color: var(--footer-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 600;
}

.bb-col h4 {
  font-size: 12px;
  color: var(--footer-heading);
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.bb-col p,
.bb-col li {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.bb-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bb-col a {
  color: var(--footer-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bb-col a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

/* SVG ICONS */
.social-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  fill: var(--footer-text);
  transition: fill 0.2s;
}

a:hover .social-icon {
  fill: var(--footer-heading);
}

.bb-social li {
  margin-bottom: 14px;
}

.bb-accessibility {
  margin-top: 60px;
  font-size: 12px;
  color: rgba(204, 204, 204, 0.85);
  text-align: center;
}

/* Mobile Match */
@media (max-width: 900px) {
  .bb-columns {
    flex-direction: column;
    gap: 40px;
  }
  .bb-footer {
    padding: 50px 25px;
  }
}




.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}




/* For hero and parallax sections */
.hero,
.section.parallax {
  background-size: cover;        /* Ensures the image covers the entire container */
  background-position: center;   /* Centers the image */
  background-repeat: no-repeat;  /* Prevents tiling */
}

/* Optional: adjust height for mobile */
@media screen and (max-width: 768px) {
  .hero,
  .section.parallax {
    min-height: 50vh; /* Smaller height on mobile */
  }
}

