
@font-face {
  font-family: "EncodeSansSemi";
  src: url("/fonts/Encode_Sans_Semi_Condensed/EncodeSansSemiCondensed-ExtraLight.ttf")
    format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "EncodeSansSemiBold";
  src: url("/fonts/Encode_Sans_Semi_Condensed/EncodeSansSemiCondensed-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "CormorantGaramondItalic";
  src: url("/fonts/Cormorant_Garamond/CormorantGaramond-Italic-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "CormorantGaramond";
  src: url("/fonts/Cormorant_Garamond/CormorantGaramond-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0b0b;
  color: #f3f3f3;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

.logo {
  letter-spacing: .25rem;
  font-size: .9rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: .9rem;
  opacity: .8;
  transition: .3s;
}

.nav a:hover {
  opacity: 1;
}

.hero-content {
  margin: auto;
  text-align: center;
  max-width: 850px;
  padding: 2rem;
}

.subtitle {
  letter-spacing: .25rem;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1rem;
}

.hero h1,
.section-header h2,
.about-content h2,
.contact-section h2 {
  font-family: 'CormorantGaramond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-section {
  text-align: center;
}

.hero h3 {
  font-family: 'CormorantGaramond', serif;
  font-size: clamp(1rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 0; /*1rem;*/
  color: #cccccc;
}

.description {
  max-width: 650px;
  margin: auto;
  opacity: .85;
  font-size: 1.1rem;
}

.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  text-decoration: none;
  transition: .3s;
}

/* HERO */
.collection-hero {
  padding: 60px 40px 30px;
}

.collection-hero h1 {
  font-size: 42px;
  margin: 0;
}

.subtitle {
  opacity: 0.7;
  margin-top: 10px;
}

.collection-link {
  display: inline-block;
  margin-top: 12px;
  color: #aaa;
  text-decoration: underline;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 40px;
}

/* PIECE */
.piece {
  position: relative;
}

/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  cursor: pointer;
}

/* TRACK */
.track {
  display: flex;
  transition: transform 0.4s ease;
}

/* SLIDES */
.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* IMAGE TITLE OVERLAY */
.title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white;
  font-size: 14px;
}

/* CAROUSEL NAV BUTTONS */
.cnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0,0,0,0.35);
  border: none;
  color: white;
  font-size: 30px;
  width: 40px;
  height: 70px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.carousel:hover .cnav {
  opacity: 1;
}

.cnav.left { left: 0; }
.cnav.right { right: 0; }

/* NAV BUTTONS */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

.logo {
  letter-spacing: .25rem;
  font-size: .9rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: .9rem;
  opacity: .8;
  transition: .3s;
}

.nav a:hover {
  opacity: 1;
}

.carousel:hover .nav {
  opacity: 1;
}



/* DESCRIPTION OVERLAY */
.description {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.description p{
    font-family: 'EncodeSansSemi';
}

/* active state */
.piece.active .description {
  opacity: 1;
  pointer-events: auto;
}

/* FOOTER */
.site-footer {
  padding: 40px;
  text-align: center;
  opacity: 0.6;
}

section {
    margin: 0 40px 0 40px; 
}

.about-content a, 
 .about-content a:visited
 {color: #cccccc;}

 .inline-circle-image {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  overflow: hidden;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  vertical-align: middle;
  margin-right: 16px;
}

.about-content p {
    font-family: 'EncodeSansSemi', serif;
}

.inline-circle-image-large {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  overflow: hidden;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  vertical-align: middle;
  margin-right: 16px;
}

.inline-circle-image img, .inline-circle-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}