/* ==========================================================================
   Custom Midcentury Design Style Guides - Wilton Pointe
   ========================================================================== */

:root {
  --primary-color: #222222;
  --accent-color: #007AFF;
  --bg-light: #fbfbfb;
  --text-dark: #444444;
  --body-font: 'Montserrat', sans-serif;
  --title-font: 'Poiret One', cursive;
}

/* Structural & Global Baseline Changes */
body {
  font-family: var(--body-font);
  color: var(--text-dark);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--title-font);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header Adjustments */
.site-header {
  padding: 40px 0;
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
}

.site-header h1 {
  font-size: 3rem;
  margin-bottom: 2px;
  letter-spacing: 5px;
}

.site-header .subheader {
  font-family: var(--body-font);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888888;
}

.header-cta .button {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Refined Component Customizations */
.button-accent {
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.button-accent:hover, .button-accent:focus {
  background-color: #0056b3;
  color: #ffffff;
}

/* Hero Section with Custom Background Spec */
.hero-section {
  position: relative;
  height: 65vh;
  min-height: 400px;
  background: #e9e9e9 url('https://wiltonpointeapartments.com/images/beach_hero_imagelanceasper.jpg') center/cover no-repeat; 
  display: flex;
  align-items: center;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: #ffffff;
  font-size: 3.5rem;
  letter-spacing: 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin: 0;
}

/* Callout Banner Styling */
.leasing-section {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.leasing-banner {
  background: #ffffff;
  border: 1px solid rgba(0, 122, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0,0,0,0.07);
  border-top: 4px solid var(--accent-color);
  padding: 50px 40px !important;
  border-radius: 4px;
}

.leasing-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.leasing-banner .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555555;
}

.amenity-tags {
  margin: 20px 0 25px 0;
}

.amenity-tags .label {
  background: #f0f7ff;
  color: var(--accent-color);
  padding: 8px 16px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 6px 10px 6px;
  letter-spacing: 1px;
  border-radius: 2px;
}

/* Content Layout Tweaks */
.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.about-text-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.about-text-wrapper h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.property-img {
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-radius: 4px;
}

/* Contact Management Box Card Adjustments */
.contact-box {
  background-color: #fafafa !important;
  border: 1px solid #eaeaea !important;
  border-radius: 4px;
  margin-top: 35px;
  text-align: center;
}

.contact-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #333;
}

.phone-number {
  font-family: var(--body-font);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-block;
  margin: 10px 0;
}

.phone-number:hover {
  color: #0056b3;
}

.hours-text {
  color: #777777;
  letter-spacing: 0.5px;
}

/* City Facts Layout styling */
.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.pt-2 {
  padding-top: 2rem;
}

.fact-list {
  background: transparent;
}

.fact-list li {
  position: relative;
  padding-left: 30px !important;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
}

.fact-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Footer Treatment */
.site-footer {
  background-color: #ffffff;
  padding: 50px 0;
  border-top: 1px solid #eeeeee;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: #777777;
}

.footer-link {
  color: #555555;
  text-decoration: none;
  border-bottom: 1px solid #dddddd;
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Responsive Media Queries over Base Foundation rules */
@media screen and (max-width: 39.9375em) {
  .site-header h1 { font-size: 2.2rem; }
  .hero-title { font-size: 2.2rem; }
  .leasing-banner { padding: 30px 20px !important; }
  .section-padding { padding: 50px 0; }
  .picture-col { margin-bottom: 30px; }
}
