/* Remove WordPress admin bar margin */
html {
  margin-top: 0 !important;
}

/* Main renovation container - full viewport, centered content */
.main-renovations {
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Content container */
.renovations-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Headline styling - matches .dinner__party h2 style */
.renovations-headline {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 200;
  color: #fff;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 35px;
  text-align: center;
}

/* Body text styling - matches catering page paragraph style */
.renovations-text {
  font-family: "azo-sans-web", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Button styling - matches homepage buttons */
.renovations-btn {
  max-width: 280px;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0;
  font-size: 16px;
  line-height: 50px;
  padding: 0 40px;
  color: #fff;
  height: 52px;
  text-align: center;
  font-family: "azo-sans-web", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.8s ease;
  display: inline-flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border: 1px solid #fff;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  margin-top: 25px;
}

.renovations-btn:hover {
  border: 1px solid #fff;
  opacity: 1;
  background: #fff;
  color: #000;
  transition: all 0.8s ease;
}

/* Phone Landscape (480px+) */
@media (min-width: 480px) {
  .renovations-headline {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* Tablet Portrait (768px+) */
@media (min-width: 768px) {
  .main-renovations {
    padding: 60px 40px;
  }

  .renovations-headline {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 60px;
    font-weight: 200;
    text-align: center;
  }

  .renovations-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .renovations-btn {
    line-height: 58px;
    padding: 0 60px;
    height: 60px;
    font-size: 18px;
    margin-top: 35px;
  }
}

/* Desktop (992px+) */
@media (min-width: 992px) {
  .renovations-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
