/* CSS for ANTPHOTO portfolio - Custom styles matching React app Tailwind classes */

:root {
  --ant-font-sans: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ant-bg-color: #0a0a0a;
  --ant-accent-color: #c5a880;
  --ant-text-color: #ffffff;
  --ant-text-muted: rgba(255, 255, 255, 0.6);
  --ant-border-muted: rgba(255, 255, 255, 0.15);
}

/* Base Body Styles (only targeted when layout matches) */
.ant-body-override {
  background-color: var(--ant-bg-color) !important;
  color: var(--ant-text-color) !important;
  font-family: var(--ant-font-sans) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide scrollbar */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Slider Fullscreen Styles */
.ant-slider-wrapper {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

.ant-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  z-index: 1;
}

.ant-slide-bg.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.ant-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 3;
}

.ant-slider-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 50%, transparent 100%),
              linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  z-index: 3;
}

/* Slide Content */
.ant-slider-content {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  z-index: 10;
  color: #fff;
}

@media (min-width: 768px) {
  .ant-slider-content {
    left: 4rem;
  }
}

.ant-slider-title {
  font-family: var(--ant-font-sans) !important;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: #fff !important;
}

.ant-slider-title-italic {
  font-family: var(--ant-font-sans) !important;
  font-size: 3.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .ant-slider-title-italic {
    font-size: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .ant-slider-title-italic {
    font-size: 6rem;
  }
}

.ant-slider-subtitle {
  font-family: var(--ant-font-sans) !important;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin-bottom: 0;
  text-transform: uppercase;
}

/* Elegant Discover Button */
.ant-btn-discover {
  font-family: var(--ant-font-sans) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, color 0.3s;
}

.ant-btn-discover:hover {
  background-color: #fff;
  color: #000;
}

.ant-btn-circle-arrow {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ant-btn-rect {
  font-family: var(--ant-font-sans) !important;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.75rem 2.5rem;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.ant-btn-rect:hover {
  background-color: #fff;
  color: #000;
}

.ant-slider-controls {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .ant-slider-controls {
    right: 4rem;
  }
}

.ant-slider-controls.ant-featured-controls {
  bottom: 2.5rem;
  right: 2.5rem;
  left: auto;
  width: auto;
  gap: 2rem;
}

.ant-slider-controls-divider {
  width: 1px;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

.ant-control-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.ant-control-btn:hover {
  background-color: #fff;
  color: #000;
}

.ant-control-btn svg {
  display: block;
  stroke: currentColor;
  fill: none;
  transition: stroke 0.3s;
}


/* Vertical / Arrow controls with text */
.ant-control-arrow-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ant-arrow-text-btn {
  font-family: var(--ant-font-sans) !important;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.ant-arrow-text-btn:hover {
  color: #fff;
}

.ant-arrow-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.ant-arrow-text-btn:hover .ant-arrow-circle {
  border-color: #fff;
}

/* Featured works preview thumbnails in slider */
.ant-slider-previews {
  display: flex;
  gap: 1rem;
  margin-right: 2rem;
}

.ant-preview-thumb {
  width: 8rem;
  height: 6rem;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.ant-preview-thumb:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
}

.ant-preview-thumb.active {
  opacity: 1;
  border-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Category Grid / Strip List (Portfolio Element) */
.ant-portfolio-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 8rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 5rem;
  min-height: 100vh;
  background-color: var(--ant-bg-color);
}

.ant-portfolio-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) scale(1.08);
  z-index: -2;
  opacity: 0.55;
  transition: background-image 0.5s ease;
}

.ant-portfolio-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.85);
  z-index: -1;
}

.ant-portfolio-title {
  font-family: var(--ant-font-sans) !important;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: #fff;
}

.ant-cat-row {
  margin-bottom: 2rem;
}

.ant-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.ant-cat-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.ant-cat-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.ant-cat-link-title {
  font-family: var(--ant-font-sans) !important;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: #fff !important;
}

.ant-cat-arrow-hover {
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateX(-5px);
}

.ant-cat-link:hover .ant-cat-arrow-hover {
  opacity: 1;
  transform: translateX(0);
}

/* Horizontal scroll strip */
.ant-scroll-strip {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.ant-project-card {
  flex: 0 0 15rem;
  text-decoration: none;
  color: #fff;
  display: block;
}

@media (min-width: 768px) {
  .ant-project-card {
    flex: 0 0 calc((100% - 3rem) / 3);
  }
}

@media (min-width: 1024px) {
  .ant-project-card {
    flex: 0 0 calc((100% - 6rem) / 5);
  }
}

.ant-project-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ant-project-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ant-project-card:hover .ant-project-image-box img {
  transform: scale(1.05);
}

.ant-project-title {
  font-family: var(--ant-font-sans) !important;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  color: #fff !important;
}

.ant-project-meta {
  font-family: var(--ant-font-sans) !important;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 300;
  margin-top: 0.25rem;
}

/* Category header center flex line */
.ant-cat-header-line {
  flex: 1;
  height: 1px;
  background-color: var(--ant-border-muted);
  margin: 0 1.5rem;
}

/* Solid play icon helper */
.play-btn-circle svg polygon {
  fill: currentColor !important;
}
}

/* Project Detail Page Styles */
.ant-project-detail-container {
  min-height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
}

.ant-project-hero-section {
  display: flex;
  flex-direction: column;
  height: auto;
}

@media (min-width: 1024px) {
  .ant-project-hero-section {
    flex-direction: row;
    height: 65vh;
  }
}

.ant-project-main-image-col {
  position: relative;
  height: 40vh;
  width: 100%;
}

@media (min-width: 1024px) {
  .ant-project-main-image-col {
    width: 60%;
    height: 100%;
  }
}

.ant-project-main-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.ant-project-info-col {
  background-color: #111;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .ant-project-info-col {
    width: 40%;
    height: 100%;
    padding: 5rem;
  }
}

.ant-detail-title {
  font-size: 1.875rem;
  font-weight: 300;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .ant-detail-title {
    font-size: 2.25rem;
  }
}

.ant-detail-cat {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ant-detail-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 2.5rem;
}

.ant-detail-meta-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.ant-detail-meta-row {
  display: flex;
}

.ant-detail-meta-label {
  width: 6rem;
  flex-shrink: 0;
}

.ant-detail-meta-sep {
  margin-right: 1rem;
}

.ant-detail-meta-value {
  flex-grow: 1;
}

/* Custom Gallery Grid (sums to 100% per row) */
.ant-project-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background-color: #000;
  padding: 2px;
  width: 100%;
}

.ant-gallery-item {
  height: 12rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-grow: 1;
}

@media (min-width: 1024px) {
  .ant-gallery-item {
    height: 22vw;
  }
}

.ant-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.7s ease;
}

.ant-gallery-item:hover img,
.ant-gallery-item.active img {
  opacity: 1;
  transform: scale(1.05);
}

/* Row 1 (4 columns) - Width defaults for flex-grow fallback */
.ant-w-col-1-1 { width: calc(28% - 1.5px); }
.ant-w-col-1-2 { width: calc(22% - 1.5px); }
.ant-w-col-1-3 { width: calc(24% - 1.5px); }
.ant-w-col-1-4 { width: calc(26% - 1.5px); }

/* Row 2 (5 columns) */
.ant-w-col-2-1 { width: calc(18% - 1.6px); }
.ant-w-col-2-2 { width: calc(14% - 1.6px); }
.ant-w-col-2-3 { width: calc(26% - 1.6px); }
.ant-w-col-2-4 { width: calc(24% - 1.6px); }
.ant-w-col-2-5 { width: calc(18% - 1.6px); }


/* About Page custom CSS */
.ant-about-container {
  position: relative;
  min-height: 100vh;
  background-color: var(--ant-bg-color);
}

.ant-about-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.ant-about-bg-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.ant-about-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  padding-bottom: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
}

@media (min-width: 768px) {
  .ant-about-content {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.ant-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ant-section-title {
  font-size: 1.875rem;
  font-weight: 300;
  margin: 0;
}

/* Client Grid */
.ant-client-grid {
  display: grid;
  grid-template-cols: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 5rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .ant-client-grid {
    grid-template-cols: repeat(6, minmax(0, 1fr));
  }
}

.ant-client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0.6;
  transition: opacity 0.3s;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ant-client-item:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .ant-client-item:nth-child(2n) {
    border-right: none;
  }
}

.ant-client-item:hover {
  opacity: 1;
}

.ant-client-logo-icon {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.ant-client-name {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  margin-bottom: 0.25rem;
}

.ant-client-sub {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
  white-space: pre-wrap;
}

/* About Layout 2 columns */
.ant-about-info-row {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .ant-about-info-row {
    flex-direction: row;
  }
}

.ant-about-text-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .ant-about-text-col {
    width: 45%;
  }
}

.ant-about-text-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .ant-about-text-title {
    font-size: 1.5rem;
  }
}

.ant-about-paragraphs {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.ant-about-paragraphs p {
  margin-bottom: 1.5rem;
}

.ant-about-image-col {
  width: 100%;
  height: 25rem;
}

@media (min-width: 1024px) {
  .ant-about-image-col {
    width: 55%;
    height: 28rem;
  }
}

.ant-about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Features icons grid */
.ant-features-grid {
  display: grid;
  grid-template-cols: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .ant-features-grid {
    grid-template-cols: repeat(4, minmax(0, 1fr));
  }
}

.ant-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ant-feature-icon {
  margin-bottom: 1rem;
  color: #fff;
}

.ant-feature-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.ant-feature-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.625;
  max-width: 12.5rem;
  margin: 0;
}

/* Contact page custom styles */
.ant-contact-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--ant-bg-color);
}

.ant-contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}

.ant-contact-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.ant-contact-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 8rem 2.5rem 4rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.ant-contact-title {
  font-size: 2.25rem;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .ant-contact-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .ant-contact-title {
    font-size: 3.75rem;
  }
}

.ant-contact-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.ant-divider-line {
  width: 1.5rem;
  height: 1px;
  background-color: var(--ant-accent-color);
}

.ant-divider-diamond {
  width: 0.375rem;
  height: 0.375rem;
  border: 1px solid var(--ant-accent-color);
  transform: rotate(45deg);
}

.ant-contact-lead {
  font-weight: 300;
  margin-bottom: 4rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .ant-contact-lead {
    font-size: 1rem;
  }
}

/* Social links icons row */
.ant-social-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .ant-social-channels {
    gap: 4rem;
  }
}

.ant-social-btn-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ant-social-circle-link {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

@media (min-width: 768px) {
  .ant-social-circle-link {
    width: 6rem;
    height: 6rem;
  }
}

.ant-social-circle-link:hover {
  background-color: #fff;
  color: #000 !important;
  transform: scale(1.05);
}

.ant-social-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media (min-width: 768px) {
  .ant-social-label {
    font-size: 0.875rem;
  }
}

/* Details list with gold icons */
.ant-contact-details-list {
  max-width: 42rem;
  margin: 0 auto;
  width: 100%;
  text-align: left;
  font-weight: 300;
  font-size: 13px;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .ant-contact-details-list {
    font-size: 0.875rem;
  }
}

.ant-detail-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.ant-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ant-detail-icon-circle {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid var(--ant-accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ant-accent-color);
}

.ant-detail-body {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .ant-detail-body {
    flex-direction: row;
    align-items: center;
  }
}

.ant-detail-label-text {
  width: 8rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.ant-detail-value-text {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .ant-detail-value-text {
    margin-top: 0;
  }
}

.ant-detail-val-sep {
  color: var(--ant-accent-color);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.ant-contact-footer {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ant-footer-tagline {
  color: var(--ant-accent-color);
  font-style: italic;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .ant-footer-tagline {
    font-size: 1.125rem;
  }
}

/* Video Overlay Popup styling */
.ant-video-popup {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.9);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.ant-video-popup.active {
  display: flex;
}

.ant-video-popup-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

.ant-video-iframe-wrapper {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
}

.ant-video-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Global Footer hiding for the entire website */
footer, #footer, .footer-wrapper {
  display: none !important;
}

