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

body { 
  font-family: Verdana, Geneva, Tahoma, sans-serif; 
}

header { 
  position: sticky; 
  top: 0; 
  background: #333; 
  color: #fff; 
  padding: 1rem; 
  z-index: 100; 
}

nav { 
  background: #333;
  color: #f3f305; 
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  color:#f3f305;
}

nav a { 
  color: #f3f305; 
  padding: 0.75rem 1rem; 
  display: block; 
  text-decoration: none; 
}

nav a:hover { 
  background: #444; 
}

.nav ul {
    list-style: none;     /* removes bullets */
    padding: 0;
    margin: 0;
    background: #333;
    color: #f3f305;
}

.nav li {
    display: inline-block;  /* or flex, grid, etc. */
    margin-right: 20px;
    color: #f3f305;
}

/* === DROPDOWNS === */
.dropdown { 
  position: relative; 
  display: inline-block; 
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  background: transparent;           /* fully transparent */
  box-shadow: none;                   /* remove old shadow */
  min-width: max-content;             /* fixes text overflow forever */
  padding: 12px 0;                    /* breathing room */
  z-index: 1000;
}

.dropdown:hover .submenu { 
  display: block; 
}

.submenu a {
  color: #f3f305;
  padding: 10px 20px;
  display: block;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  margin: 4px 8px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  transition: all 0.2s;
}

.submenu a:hover {
  background: rgba(243, 243, 5, 0.2); /* bright hover */
  transform: translateY(-2px);
}

.cta { text-align: center; margin-top: 2em; }

.cta-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 0 1rem;
}

.cta-btn {
  display: inline-block;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.classic {
  background: #f3f305;
  color: #000;
  font-size: 1.3rem;
}

.wolf-main {
  background: #000;
  color: #f3f305;
  font-size: 1.6rem;
  border: 3px solid #f3f305;
}

.wolf-icon {
  font-size: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.cta-text-link {
  color: #c00;
  font-size: 1.1rem;
  text-decoration: underline;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .cta-grid { gap: 2rem; }
  .wolf-main { font-size: 1.8rem; }
}

.btn {
  display: inline-block;
  padding: 1em 2em;
  background: #c00;        /* or whatever your brand color is */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

/* Right-align only Contact dropdown */
.contact-drop {
 
}

.contact-drop .submenu {
  right: 0;
  left: auto;
  min-width: max-content;   /* fixes squashed text */
}

/* === SLIDESHOW === */
.slideshow {
  position: relative;
  height: 75vh;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 75vh;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active { 
  opacity: 1; 
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === CONTENT & FOOTER === */
.content {
  padding-top: 0;
  max-width: 2000px;
  margin: auto;
}

.phone-link.hidden { 
  display: none; 
}

.phone-link.disabled { 
  pointer-events: none; 
  opacity: 0.5; 
}

.hours-message {
  color: #f3f305;
  padding: 8px 20px;
  font-size: 0.9rem;
  line-height: 1.4;
  display: block;
}

.idx-wrapper {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 1rem;
  border-top: 3px solid #f3f305;
}

/* === WOLF-THEMED MLS SEARCH BUTTON === */
.wolf-search-container {
  text-align: center;
  margin: 4rem auto;
  padding: 2rem 1rem;
  max-width: 1000px;
}

.wolf-search-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f3f305, #c9c900);
  color: #000 !important;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(243, 243, 5, 0.4);
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  border: 3px solid #000;
}

.wolf-search-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(243, 243, 5, 0.6);
  background: linear-gradient(135deg, #ffff40, #f3f305);
}

.wolf-icon {
  font-size: 2rem;
  margin-right: 15px;
  filter: drop-shadow(2px 2px 4px #000);
}

.wolf-subtitle {
  margin-top: 1rem;
  color: #f3f305;
  font-size: 1.1rem;
  font-style: italic;
  text-shadow: 1px 1px 3px #000;
}

/*---------------------------Footer-------------------------------------*/
footer { 
  background: #333; 
  color: #fff; 
  text-align: center; 
  padding: 1rem; 
}