/* ===== Custom Fonts ===== */

@font-face {
  font-family: "YAFcfknkruY 0";
  src: url("../fonts/ITCEdwardianScriptCom-Rg.513e21e3e22f981.1d60a877d305a0cb61ec43fe0d15c8c.woff2") format("woff2");
}

@font-face {
  font-family: "YAFcfmZhtEk 0";
  src: url("../fonts/Caslon3LTStd-Roman.a15c5033f0231256f422a.ecf22ff2f935b02e0060692fc616bc7c.woff2") format("woff2");
}

/* Body Font */
@font-face {
  font-family: "YAEnTI0o408 0";
  src: url("../fonts/TT_Commons_Pro_Regular.9ae1514ecc77f8e08.5505f71211e4b034e8c772ad6db3aad7.woff2") format("woff2");
}

/* Base styles and variables */
:root {
  --primary-color: #333333;
  --primary-color-trans: rgba(51, 51, 51, var(--global-transparency));
  --secondary-color: rgba(255, 255, 255, 0.9);
  --accent-color: #ab5c8e;
  --global-transparency: 0.5;
  --accent-color-trans: rgba(171, 92, 142, var(--global-transparency));
  --text-dark: #333;
  --text-light: #fffaf1;
  --text-gold: #eeffbc;
  --text-mid: #555;
  /* Used in .service-item p, .contact-block p */
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 30px;
  --spacing-xl: 4rem;
  /* Used in #footer padding, #contact padding */
  --leaf-width: clamp(15vw, calc(632 * 100vw / 1440), 632px);
  --radius-sm: 8px;
  /* Used in .service-details, .gallery-item */
  --radius-md: 10px;
  /* Used in .team-member, .team-member img, .contact-block */
  --radius-lg: 30px;
  /* Used in .book-now-button */
  --radius-round: 50%;
  /* Used in .service-item-image-container, .social-icon, .social-icon-link */
  --transition-fast: 0.3s ease;
  /* Common transition value */
  --card-bg-light: rgba(255, 255, 255, 0.05);
  /* Used in .service-details */
  --card-bg: rgba(255, 255, 255, 0.1);
  /* Used in .service-item, .contact-block */
  --font-size-sm: 1rem;
  /* Common base size */
  --font-size-md: 1.1rem;
  /* Used in .top-nav a, .address, .main-nav ul li a, .contact-block p */
  --font-size-lg: 1.2rem;
  /* Used in .book-now-button, .service-item p */
  --font-size-xl: 1.25rem;
  /* Used in .footer-section h3 */
  --font-size-xxl: 1.5rem;
  /* Used in .mobile-menu-toggle, .top-nav.active a, .main-nav.active ul li a, .social-links, .contact-info-column h2 */
  --font-size-xxxl: 1.6rem;
  /* Used in .social-icon-link */
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100vh;
  height: 100dvh;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

body.scroll-locked {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body.page-home {
  background-color: var(--accent-color);
}
body.page-gallery {
  background-color: var(--text-light);
}
img {
  max-width: 100%;
  height: auto;
}

.text-nowrap {
  white-space: nowrap;
}

/* Layout */
.page {
  padding: var(--spacing-md) var(--spacing-sm);
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}

.container {
  max-width: 1364px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

video {
  object-fit: cover;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Header Styles */
#home {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, transparent 40%),
    /* Top left */
    linear-gradient(-45deg, rgba(0, 0, 0, 0.7) 0%, transparent 40%),
    /* Top right */
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, transparent 40%),
    /* Bottom left */
    linear-gradient(-135deg, rgba(0, 0, 0, 0.7) 0%, transparent 40%),
    /* Bottom right */
    rgba(0, 0, 0, 0.3);
  /* Overall dim */
  z-index: 2;
}

#bgvid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: opacity 0.5s ease-out;
}

#bgvid.fade-out {
  opacity: 0;
}

.header-content {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  max-width: 1200px;
  width: 90%;
}

@media (min-width: 992px) {
  .header-content {
    margin: 0 auto;
    padding: 20px;
  }
}

section {
  position: relative;
}

.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem;
}

.top-nav ul {
  display: none;
  flex-direction: column;
  gap: 2rem;
  text-align: right;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: var(--font-size-md);
  letter-spacing: 2px;
  transition: color var(--transition-fast);
}

.top-nav a:hover {
  color: var(--accent-color);
}

/* Override for sections with light backgrounds */
#services .top-nav a,
.gallery-section .top-nav a {
  color: var(--accent-color);
}

#services .top-nav a:hover,
.gallery-section .top-nav a:hover {
  color: var(--primary-color);
}

/* Team page nav styles */
.team-page .top-nav a {
  color: var(--text-light);
}

.team-page .top-nav a:hover {
  color: var(--text-gold) !important;
}

@media (min-width: 1200px) {
  .top-nav {
    padding: 3rem 4rem;
  }

  .top-nav ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  .top-nav a {
    padding: 8px 16px;
    white-space: nowrap;
  }

  /* Pill button hover effect for home page nav */
  body.page-home .top-nav a {
    border-radius: 50px;
    transition: all var(--transition-fast);
  }

  body.page-home .top-nav a:hover {
    background-color: var(--accent-color);
    color: white;
  }

  #services .top-nav a:hover {
    color: var(--primary-color) !important;
  }

  .team-page .top-nav a:hover {
    color: var(--text-gold) !important;
  }
}

.site-title {
  font-family: "YAFcfknkruY 0", cursive;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-size: clamp(3.5rem, 10dvw, 7rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

a.book-now-button {
  font-family: "YAFcfmZhtEk 0", cursive;
  text-decoration: none;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  margin: 20px 0;
}

.book-now-button:hover {
  background-color: var(--text-light);
  transform: translateY(-2px);
}

.address {
  font-family: "YAEnTI0o408 0", cursive;
  color: var(--text-light);
  font-size: var(--font-size-md);
  margin-top: 2rem;
}

/* Navigation */
.main-nav {
  width: 100%;
  margin-top: var(--spacing-lg);
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

.main-nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: var(--font-size-md);
  transition: color var(--transition-fast);
}

.main-nav ul li a:hover {
  color: var(--primary-color);
}

/* Team Section */
.team-page {
  background-color: var(--accent-color);
}

#team {
  background-color: var(--accent-color);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section-block-deco {
  position: absolute;
  top: 300px;
  right: 0;
  width: 100%;
  max-width: 297px;
  height: auto;
  aspect-ratio: 297/1142;
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

@media (min-width: 1180px) {
  .section-block-deco {
    opacity: calc(0.2 + ((100vw - 1180px) * 0.8 / 570));
  }
}

@media (min-width: 1750px) {
  .section-block-deco {
    opacity: 1;
  }
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-md) 0;
  max-width: 800px;
  margin: 0 auto;
}

.team-member {
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.team-member img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  margin-bottom: 0;
  max-width: 250px;
}

.team-member-content {
  flex: 1;
}

.team-member h3 {
  font-family: "YAFcfknkruY 0", cursive;
  font-size: 6rem;
  font-weight: 400;
  color: var(--text-gold);
  line-height: 0.7;
}

.team-member h3 span {
  font-family: "YAFcfmZhtEk 0", sans-serif;
  font-size: 2.75rem;
  display: block;
  letter-spacing: -0.012rem;
  margin-inline-start: 6.25rem;
}

.team-member .bio {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-member .contact-info {
  color: var(--text-light);
}

.team-member .contact-info a {
  color: var(--text-light);
  text-decoration: none;
}

@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
  }
}

/* Services Section */
#services h2,
#gallery h2 {
  color: var(--accent-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2up on mobile by default */
  gap: clamp(10px, 2vw, 20px);
  padding: clamp(10px, 2vw, 20px);
  width: 100%;
  max-width: 100%;
}

.service-item {
  background: var(--card-bg);
  padding: clamp(10px, 1.5vw, 15px);
  transition: transform var(--transition-fast);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 1vw, 10px);
  min-width: 0;
  /* Prevents overflow in grid items */
}

.service-item-image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Creates a square */
  margin: 0 auto;
  border-radius: var(--radius-round);
  overflow: hidden;
  max-width: clamp(150px, 25vw, 300px);
  margin: 0 auto;
}

.service-item-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item h3 {
  font-family: "YAFcfmZhtEk 0", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-dark);
  margin-block-end: 0;
  line-height: 1;
  margin-top: var(--spacing-md);
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item p {
  color: var(--text-mid);
  font-size: var(--font-size-lg);
  margin-top: 10px;
}

.service-item details {
  width: 100%;
}

.service-item summary {
  list-style: none;
  cursor: pointer;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.details {
  line-height: 1.2;
}

.details:first-letter {
  text-transform: capitalize;
}

.service-details {
  padding: 1rem;
  background: var(--card-bg-light);
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

details[open] .service-details {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Contact Section */
.contact-block {
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: var(--card-bg);
  border-radius: var(--radius-md);
}

.contact-block h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-block p {
  font-size: var(--font-size-md);
  color: var(--text-mid);
}

/* Media Queries */
@media (min-width: 1050px) {
  .main-nav ul {
    flex-direction: row;
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3up on tablet */
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    /* 4up on desktop */
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
}

footer {
  padding-top: 1rem;
  /* height: 100%; */
}

@media (max-width: 768px) {
  .section-block-deco {
    display: none;
  }
}

footer .container {
  padding-inline: 2rem;
}

/* Footer Styles */
#footer {
  background-color: var(--accent-color);
  padding: var(--spacing-xl) 2rem;
  color: var(--text-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-info {
  display: flex;
  gap: 4rem;
}

.footer-section h3 {
  color: var(--text-dark);
  font-size: var(--font-size-xl);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-section a:hover {
  opacity: 0.8;
}

body.page-gallery>footer.contact-section {
  background-color: var(--text-light);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  background-color: var(--text-light);
  color: var(--accent-color);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.social-icon:hover {
  transform: translateY(-2px);
}

.footer-deco {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 300px;
}

.footer-deco img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-info {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-deco {
    position: relative;
    transform: none;
    margin-top: 2rem;
    max-width: 200px;
  }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: var(--font-size-xxl);
  color: var(--text-light);
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-nav {
  display: none;
  position: static;
}

@media (max-width: 1199px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .top-nav.active {
    padding-top: 25vh;
    padding-top: 25dvh;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }

  .top-nav.active ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .top-nav.active a {
    font-size: var(--font-size-xxl);
    color: var(--text-light) !important;
    padding: 1rem;
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .mobile-menu-toggle {
    display: none;
  }

  .top-nav {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 120px;
    justify-content: flex-end;
    z-index: 10;
    background: none;
  }

  .top-nav ul {
    flex-direction: row;
    gap: 20px;
  }

  .top-nav a {
    font-size: var(--font-size-md);
  }
}

/* Make toggle button dark on light background pages */
body.page-gallery .mobile-menu-toggle,
#services .mobile-menu-toggle {
  color: var(--accent-color-trans);
}

/* Make toggle button light on dark background pages */
body.page-home .mobile-menu-toggle,
body.team-page .mobile-menu-toggle {
  color: var(--text-light);
}

/* Make hamburger purple when menu is active */
.top-nav.active ~ .mobile-menu-toggle,
body.scroll-locked .mobile-menu-toggle {
  color: var(--accent-color) !important;
}

.main-nav {
  display: none;
  width: 100%;
}

.main-nav.active {
  display: block;
}

@media (max-width: 767px) {
  .main-nav.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav.active ul {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .main-nav.active ul li a {
    font-size: var(--font-size-xxl);
  }
}

/* Additional Responsive Styles */
.section-title {
  font-family: "YAFcfmZhtEk 0", sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  text-transform: lowercase;
  color: var(--text-light);
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

.price {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  font-size: var(--font-size-xxl);
}

.social-links a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--text-dark);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
  }

  .service-item:hover {
    transform: none;
  }
}

/* Focus States */
a:focus,
button:focus {
  outline: 1px solid transparent;
  outline-offset: 5px;
  border-radius: 50px;
}

/* For better visibility on light backgrounds */
#services a:focus,
#services button:focus,
.gallery-section a:focus,
.gallery-section button:focus {
  outline: 1px solid transparent;
  border-radius: 50px;
}

/* Team page focus states */
.team-page a:focus,
.team-page button:focus {
  outline: 1px solid transparent;
  border-radius: 50px;
}

/* Special case for round elements */
.social-icon-link:focus,
.mobile-menu-toggle:focus,
.service-item-image-container a:focus {
  border-radius: 50px;
}

/* Ensure focus is visible in dark mode */
@media (prefers-color-scheme: dark) {
  a:focus,
  button:focus {
    outline: 2px solid transparent;
    border-radius: 50px;
  }
}

/* Print Styles */
@media print {

  .mobile-menu-toggle,
  .main-nav {
    display: none;
  }

  .page {
    break-inside: avoid;
  }
}

/* Icon Styles */
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: middle;
  margin-right: 8px;
}

.social-links .icon {
  width: 32px;
  height: 32px;
  margin: 0;
  transition: transform var(--transition-fast);
}

.social-links a:hover .icon {
  transform: scale(1.1);
}

/* Contact block icon alignment */
.contact-block h3 {
  display: flex;
  align-items: center;
  color: var(--accent-color);
}

/* Section Title Flexbox Layout */
.section-title-row {
  /* border: 1px dashed orange; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-right: var(--leaf-width);
  position: relative;
  /* > span {
    border: 1px dashed red;
  }
  > img {
    border: 1px dashed purple;
  } */
}

.section-title-wrapper {
  /* border: 1px dashed blue; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.section-title-leaf {
  height: 100%;
  width: var(--leaf-width);
  aspect-ratio: 25/11;
  object-fit: contain;
  position: relative;
  right: -5px;
}

.section-title {
  text-align: center;
  font-family: "YAFcfmZhtEk 0", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--text-light);
  text-transform: lowercase;
}

.section-title-accent {
  color: var(--accent-color);
}

/* Gallery Section Styles */
.gallery-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--text-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.instagram-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-md) 0;
}

.instagram-container .instagram-media {
  margin: 0 auto !important;
  min-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .instagram-container {
    padding: var(--spacing-sm);
  }
}

@media (max-width: 768px) {
  :root {
    --leaf-width: clamp(20vw, calc(632 * 100vw / 1440), 632px);
  }
}

@media (max-width: 480px) {
  :root {
    --leaf-width: clamp(25vw, calc(632 * 100vw / 1440), 632px);
  }
}
#contact {
  padding: var(--spacing-xl) 2rem;
}

.contact-info-grid {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.team-page .contact-info-column h2 {
  color: var(--text-light);
}

.contact-info-column h2 {
  font-family: "YAFcfmZhtEk 0", sans-serif;
  font-size: var(--font-size-xxl);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info-column p {
  margin: 0.5rem 0;
  color: var(--primary-color);
  font-size: var(--font-size-sm);
}

.team-page .contact-info-column p {
  color: var(--text-light);
}

.contact-info-column a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.team-page .contact-info-column a {
  color: var(--text-light);
}

.team-page .contact-info-column a:hover {
  color: var(--text-gold);
}

.contact-info-column a:hover {
  color: var(--accent-color);
}


.social-icons-list {
  display: flex;
  gap: 1rem;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light) !important;
  font-size: var(--font-size-xxxl);
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  transform: translateY(-2px);
  background-color: var(--primary-color);
  transition: background-color var(--transition-fast);
}

.team-page .social-icon-link {
  background-color: var(--text-light);
  color: var(--accent-color) !important;
}

.team-page .social-icons-list a:hover.social-icon-link {
  background-color: var(--text-gold);
}

.contact-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-info-group {
    width: 100%;
  }
}

.contact-logo {
  --contact-logo-max-width: 432px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-logo a {
  display: block;
  width: 100%;
  max-width: var(--contact-logo-max-width);
}

.contact-logo a img {
  width: 100%;
  height: auto;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
