:root {
  --background: #FAFAFA;
  --foreground: #121212;
  
  --primary: #2A2A2A;
  --secondary: #7A7A7A;
  --accent: #BFA588; /* Muted bronze/gold */
  
  --border: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.2);
  
  --font-heading: var(--font-outfit), sans-serif;
  --font-body: var(--font-inter), sans-serif;
  
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0A0A0A;
    --foreground: #FAFAFA;
    --primary: #E0E0E0;
    --secondary: #A0A0A0;
    --accent: #D4BFA7;
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(10, 10, 10, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--background);
}

.contentSection {
  flex: 1;
  padding-bottom: 8rem; /* Space for the floating orb */
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3%;
  z-index: 1000; /* Ensure it stays above everything */
  /* Theme-blended glow effect */
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}



.logoContainer {
  flex: 1;
}

.rightSection {
  display: flex;
  align-items: center;
  gap: 2rem;
}



.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: flex-start;
}

.navList {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navItem {
  position: relative;
}

.navLink,
.navDropdownButton {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navLink:hover,
.navDropdownButton:hover {
  opacity: 1;
  color: #d4af37; /* Refined gold accent */
}

.navLink:hover .chevron,
.navDropdownButton:hover .chevron {
  color: #d4af37;
}

.chevron {
  opacity: 0.7;
}

.actions {
  display: flex;
  justify-content: flex-end;
}

.searchButton {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.searchButton:hover {
  opacity: 1;
}
.heroContainer {
  position: relative;
  width: 100vw;
  height: 60vh;
  min-height: 400px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 4rem 10%;
}

.heroImageWrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.heroTitle {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #FAFAFA;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.filterBarWrapper {
  width: 100%;
  background-color: transparent;
  padding: 1rem 5%;
  display: flex;
  flex-direction: column;
}

.filterRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.iconButton {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.iconButton:hover, .iconButtonActive {
  border-color: rgba(212, 175, 55, 0.5);
}

.filterIconStandalone {
  color: #d4af37;
}

.cascadingFilters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dropdownContainer {
  position: relative;
  min-width: 220px;
}

.dropdownTrigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.triggerLeft {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filterIcon {
  color: var(--accent);
}

.dropdownTrigger:hover,
.dropdownTriggerOpen {
  border-color: var(--accent);
}

.triggerText {
  white-space: nowrap;
}

.dropdownMenu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background-color: var(--background);
  border: 1px solid var(--border);
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.dropdownItem {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdownItem:last-child {
  border-bottom: none;
}

.dropdownItem:hover, .dropdownItemActive {
  background-color: var(--border);
  color: var(--accent);
}



@media (max-width: 768px) {
  .filterRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .dropdownContainer {
    width: 100%;
  }
}
.gridContainer {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 2rem 1rem; /* No padding on left/right for edge-to-edge layout */
  min-height: 50vh;
  background-color: var(--background);
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 400px; /* Base height */
  gap: 2rem; /* Gap between images only */
  width: 100%;
}

.gridItem {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    grid-auto-flow: dense;
  }

  .featuredItem {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .tallItem {
    grid-row: span 2;
  }
}
.cardContainer {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px; /* Subtle rounding */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle default border */
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cardContainer:hover {
  /* Unique premium border effect on hover: a delicate gold accent */
  border-color: rgba(212, 175, 55, 0.6); /* Muted gold */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.imageWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.imageHovered {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contentOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.contentOverlayFeatured {
  padding: 2.5rem;
  gap: 0.75rem;
}

.headerRow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.titleFeatured {
  font-size: 2rem;
}

.iconWrapper {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  /* Gold accent for the arrow on hover */
  transition: color 0.3s ease;
}

.cardContainer:hover .iconWrapper {
  color: #d4af37;
}

.description {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.descriptionFeatured {
  font-size: 1.05rem;
  -webkit-line-clamp: 3;
  color: rgba(255, 255, 255, 0.85);
  max-width: 85%;
}

.tagsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.6);
}
.footerContainer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 6rem 5% 2rem 5%;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  flex-direction: column;
}

.topSection {
  margin-bottom: 6rem;
}

.ctaWrapper {
  max-width: 800px;
}

.ctaText {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 2rem 0;
  letter-spacing: -0.02em;
}

.ctaHighlight {
  color: #d4af37;
  font-style: italic;
}

.ctaButton {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #d4af37;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 999px;
}

.ctaButton:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
  transform: translateX(5px);
}

.gridSection {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 0;
  color: #ffffff;
}

.address, .contactEmail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  text-decoration: none;
}

.contactEmail:hover {
  color: #d4af37;
}

.columnTitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  text-transform: uppercase;
}

.linkList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footerLink {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  width: fit-content;
}

.footerLink:hover {
  color: #d4af37;
}

.bottomSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.legalLinks {
  display: flex;
  gap: 2rem;
}

.legalLink {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legalLink:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .gridSection {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ctaText {
    font-size: 2.5rem;
  }
  
  .bottomSection {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}
