/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@300;400;500&display=swap");
@keyframes tracking-in-contract-bck{0%{letter-spacing:1em;transform:translateZ(400px);opacity:0}40%{opacity:.6}100%{transform:translateZ(0);opacity:1}}
.tracking-in-contract-bck{animation:tracking-in-contract-bck 1s cubic-bezier(.215,.61,.355,1.000) both}
@keyframes focus-in-expand{0%{letter-spacing:0.5em;transform:scale(0.5);opacity:0}100%{letter-spacing:normal;transform:scale(1);opacity:1}}
.focus-in-expand{animation:focus-in-expand .8s cubic-bezier(.25,.46,.45,.94) both}

:root {
    --primary-color: #5B0000;
    --secondary-color: #C18E11;
    --bg-color-light: #c5a028;
    --bg-color-dark: #2D0000;
    --bg-color-maroon-light: #2d0000cb;
    --bg-light: #f9f9f9;


    --hero-maroon: #201111; /* Dark Red/Maroon */
    --hero-gold: #c49a18;   /* Button Gold */
    --hero-text: #222222;   /* Dark Text */
    --hero-height: 100vh;
    --header-bg-color: #4a0202; /* Deep Maroon matching the image */
    --header-text-color: #ffffff;
    --header-accent-color: #c49a18; /* Gold/Mustard for button & logo accents */
    --header-font-stack: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

/* 1. Page Hero (Smaller than Home Hero) */
.page-hero {
  /* 1. The Background Image with a Maroon/Gold Overlay */
  background:
    linear-gradient(135deg, rgba(91, 0, 0, 0.336) 0%, rgba(45, 0, 0, 0.342) 50%, rgba(196, 154, 24, 0.3) 100%),
    url("../images/aboutSlider.png");

  /* 2. Image Positioning */
  background-size: cover; /* Ensures image covers the whole area */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat;

  /* 3. Layout & Sizing */
  height: 60vh; /* Adjust height: 60% of the viewport height */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Optional: Style the text inside */
.page-hero h1 {
  font-size: 3.5rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  color: #e0e0e0;
}

.page-hero .breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.page-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero .breadcrumb span {
  margin: 0 6px;
}