/* Global Presets */
:root {
  --primary-color: hotpink;
  --background-color: #232b2b;
  --card-bg: #2c3434;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--background-color);
  color: #999;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: #fff;
}

h1 {
  font-weight: 700;
  font-size: 5.2rem;
  line-height: 1.1;
  margin: 0 0 2rem;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  width: 100%;
}

/* Menu Bar */
.showcase-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(35, 43, 43, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.showcase-top p {
  display: flex;
  gap: 30px;
  margin: 0;
}

.showcase-top a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.showcase-top a:hover {
  color: var(--primary-color);
}

/* Frosted Section Styles */
.showcase-about {
  width: 100%;
  height: 45vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.go-home {
  width: 100%;
  height: 25vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* The Frosting Overlay */
.showcase-about::before, .go-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(10px) brightness(0.5); 
  transform: scale(1.1); 
  z-index: 1;
}

.showcase-about {
  background: url("frontdoor.jpg") no-repeat center center/cover;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.go-home {
  background: url("frontdoor.jpg") no-repeat center center/cover;
  margin-top: 4rem;
}

/* Content Wrappers (Floating above frosting) */
.showcase-content, #showcase-more {
  position: relative;
  z-index: 2;
  text-align: center;
}

#title-text {
  display: inline-block;
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 25px;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
}

/* Buttons */
.btn-xl {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 105, 180, 0.4);
  color: #fff;
}

.container {
  max-width: 90%;
  margin: 6rem auto;
  padding: 0 2rem;
}

/* Main Letter Content */
.letter {
  border-bottom: solid 3px var(--primary-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-xl {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

container p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #bbb;
}

#sig {
  width: 150px;
  border: none;
  margin: 2rem 0 0.5rem;
  float: right;
}

#owner {
  color: #fff;
  font-weight: bold;
  text-align: end;
  clear: right;
}

/* --- Meet The Team Profiles --- */
.profile {
  margin-top: 3rem;
}

.people-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.people-cols div {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 15px;
  border-bottom: 4px solid #3d3d3d;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.people-cols div:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.profile-header {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
}

.people-cols b {
  color: #fff;
  display: inline-block;
  margin-top: 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

/* Updated Footer */
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  background: var(--background-color);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  border-top: 1px solid #3d3d3d;
  padding-top: 3rem;
}

.footer p, .footer b {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer b {
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color); 
}

.footer a {
  color: #999;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
  padding-left: 3px; 
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  border-top: 1px solid #3d3d3d;
  padding-top: 2rem;
  margin-top: 2rem;
}

@media (max-width: 450px) {
  h1 {
      font-weight: 700;
      font-size: 3rem;
      line-height: 1.1;
      margin: 0 0 2rem;
    }
  
  .hide-sm {
    display: none;
  }  
}