@font-face {
  font-family: 'Brittany Signature';
  src: url('/Areas/Website/fonts/Brittney Signature.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Brand Colors */
  --brand-primary-dark: #2D2D2D;
  --brand-accent-blue: #1EB4FF;
  --brand-accent-light-blue: #1eb4ff;

  /* Text Colors */
  --color-text-primary: var(--brand-primary-dark);
  --color-text-secondary: #30332F;
  --color-text-light: #525252;
  --color-text-lighter: #7c7c7c;
  --color-text-white: #ffffff;
  --color-text-link: var(--brand-accent-light-blue);

  /* Backgrounds */
  --color-background-primary: #ffffff;
  --color-background-secondary: #f2f2f2;
  --color-background-dark: #2d2d2d;
  --brand-background-light: #f2e7e7;
  --brand-background-dark: #120909;
  --brand-background-blue: #08BEFF;

  /* Borders and Dividers */
  --border-color: #e8e8e8;
  --border-color-soft: #eeeeee;
  --border-color-dark: #434343;
  --border-color-light: rgba(0, 0, 0, 0.12);

  /* Layout Constants */
  --section-spacing-top: 100px;
  --section-container-max: 1200px;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background-color: var(--color-background-primary);
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Lenis Smooth Scroll */
html.lenis, html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-scrolling iframe {
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  color: var(--brand-primary-dark);
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 60px 0;
}

.main-wrapper {
  max-width: 1760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
}

@media(max-width:1200px){
  section{
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .main-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .main-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  section {
    padding: 40px 0;
  }
}

/* --- Global Section Utilities --- */
.section-title-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-underline {
  width: 60px;
  height: 3px;
  background-color: var(--brand-accent-blue);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.125vw, 64px);
  line-height: 1.1;
  color: var(--brand-primary-dark);
}

.section-description {
  margin-top: 20px;
  margin-left: 76px;
  font-size: clamp(15px, 1.33vw, 18px);
  line-height: 25px;
  letter-spacing: -0.02em;
  color: var(--color-text-secondary);
  max-width: 900px;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 48px;
  }

  .section-description {
    margin-left: 0;
    text-align: left;
  }

  .section-title-wrapper {
    justify-content: left;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }

  .section-underline {
    width: 30px;
    height: 3px;
    background-color: var(--brand-accent-blue);
  }
}

/* --- Global Footer --- */
.site-footer {
  background-color: var(--color-background-dark);
  color: white;
  padding: 60px 0 20px 0;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Brittany Signature', cursive;
  font-size: 64px;
  color: #F8E9E9;
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-socials a {
  color: #F8E9E9;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--brand-accent-blue);
}

.footer-socials svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-nav a {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--brand-accent-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-bottom p {
  color: rgba(248, 233, 233, 0.5);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 36px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .site-footer {
    border-radius: 50px 50px 0 0;
    padding: 37px 0 20px 0;
    margin-top: 0;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-right {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer-left {
    display: contents;
  }

  .footer-logo {
    order: 1;
    text-align: center;
    margin-bottom: 0;
  }

  .footer-right {
    order: 2;
  }

  .footer-socials {
    order: 3;
  }
}