/*
Theme Name: Overland Real Estate Media - Coming Soon (FullWidth Fix)
Theme URI: https://getoverland.com
Description: Coming Soon child theme with parallax background, fade-in animations, centered content, pulsing buttons, and forced full-width layout with hidden Astra header/footer
Author: Mark Hopkins
Author URI: https://getoverland.com
Template: astra
Version: 2.2.0
*/

:root {
  --clr-primary: #4EA27F;
  --clr-secondary: #C2E9D9;
  --clr-text: #ffffff;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --font-body: 'Inter', 'Roboto', sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--clr-text);
  background: #000;
  line-height: 1.6;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* Force full width layout */
.site, 
#page, 
#content, 
.ast-container, 
.site-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}

/* Hide Astra header and footer completely */
#masthead, 
#colophon, 
.site-header, 
.site-footer {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* FULL PAGE COMING SOON WITH PARALLAX BACKGROUND */
.coming-soon {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: url('images/background.jpg') center/cover no-repeat fixed;
  color: #fff;
  padding: 0 20px;
  position: relative;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 0;
}

.coming-soon .wrap {
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.coming-soon .logo {
  max-width: 260px;
  margin-bottom: 30px;
}

.coming-soon h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
}

.coming-soon .intro {
  font-size: 1.5rem;
  font-weight: 500;
  color: #f0f0f0;
  margin-bottom: 50px;
}

.coming-soon .services h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.coming-soon .services ul {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
}

.coming-soon .services li {
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #eee;
}

.coming-soon .notice {
  font-size: 1.2rem;
  color: #fff;
}

.coming-soon .notice a {
  display: inline-block;
  background: var(--clr-primary);
  color: #fff;
  padding: 12px 20px;
  margin: 8px 5px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  font-size: 1.1rem;
  animation: pulse 2s infinite;
}
.coming-soon .notice a:hover {
  background: #3c8566;
  transform: translateY(-2px);
  animation-play-state: paused;
}

/* Fade-in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.coming-soon .logo,
.coming-soon h1,
.coming-soon .intro,
.coming-soon .services,
.coming-soon .notice {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.coming-soon .logo { animation-delay: 0.2s; }
.coming-soon h1 { animation-delay: 0.5s; }
.coming-soon .intro { animation-delay: 0.8s; }
.coming-soon .services { animation-delay: 1.1s; }
.coming-soon .notice { animation-delay: 1.4s; }

/* Pulse animation for buttons */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
