@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #000000;
  line-height: 1.6;
  background-color: #FFFFFF;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/backgroundmain.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

header {
  background-color: transparent;
  padding: 0.5rem 2rem;
  position: relative;
  z-index: 1000;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
  padding: 0.5rem 2rem;
  border-radius: 12px;
}
header nav .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
header nav .logo .logo-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header nav .logo .logo-header .logo-image {
  height: 1.2rem;
  width: auto;
}
header nav .logo .logo-header h1 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
header nav .logo .social-icons {
  display: flex;
  gap: 1rem;
}
header nav .logo .social-icons .social-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  padding: 0.5rem;
}
header nav .logo .social-icons .social-link:hover {
  transform: scale(1.1);
}
header nav .logo .social-icons .social-link .social-icon {
  width: 36px;
  height: 36px;
}
header nav .nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
header nav .nav-links li a {
  color: #000000;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
header nav .nav-links li a:hover {
  color: #d85c27;
}

main {
  min-height: calc(100vh - 200px);
  position: relative;
}

footer {
  background-color: #14365d;
  color: #FFFFFF;
  text-align: center;
  padding: 2rem;
}
footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
footer .social-icons .social-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
footer .social-icons .social-link:hover {
  transform: scale(1.15);
}
footer .social-icons .social-link .social-icon {
  width: 32px;
  height: 32px;
}
footer .phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #FFFFFF;
}
footer .email-address {
  font-size: 1rem;
  margin: 1rem 0;
  color: #FFFFFF;
}
footer .email-address a {
  color: #d85c27;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
footer .email-address a:hover {
  color: rgb(223.8, 124.6, 82.2);
}
footer p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    gap: 1rem;
  }
  header nav .nav-links {
    gap: 1rem;
  }
}
.about-hero {
  background-color: #14365d;
  padding: 8rem 2rem;
  text-align: center;
}
.about-hero .about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: #FFFFFF;
}
.about-hero .about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.about-hero .about-hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 2rem;
  }
  .about-hero .about-hero-content h1 {
    font-size: 2rem;
  }
  .about-hero .about-hero-content p {
    font-size: 1rem;
  }
}

.about-content {
  background-color: #f9f6ef;
  padding: 4rem 2rem;
}
.about-content .about-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-content .about-container .about-card {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-content .about-container .about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.about-content .about-container .about-card h2 {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 2rem;
  border-bottom: 3px solid #d85c27;
  padding-bottom: 0.5rem;
}
.about-content .about-container .about-card .max-garcia-image {
  height: 2in;
  width: auto;
  border-radius: 8px;
  margin-bottom: 2rem;
  margin-left: 2rem;
  float: right;
}
.about-content .about-container .about-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 2rem;
}
.about-content .about-container .about-card p:last-child {
  margin-bottom: 0;
}
.about-content .about-container .about-card ul {
  margin: 2rem 0;
  padding-left: 2rem;
}
.about-content .about-container .about-card ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1rem;
}
.about-content .about-container .about-card ul li strong {
  color: #d85c27;
}

.contact-hero {
  background-color: #14365d;
  padding: 8rem 2rem;
  text-align: center;
}
.contact-hero .contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: #FFFFFF;
}
.contact-hero .contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.contact-hero .contact-hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 4rem 2rem;
  }
  .contact-hero .contact-hero-content h1 {
    font-size: 2rem;
  }
  .contact-hero .contact-hero-content p {
    font-size: 1rem;
  }
}

.contact-info {
  background-color: #FFFFFF;
  padding: 4rem 2rem;
}
.contact-info .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 0 1rem;
}
.contact-info .contact-container .contact-card {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info .contact-container .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.contact-info .contact-container .contact-card h2 {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 2rem;
}
.contact-info .contact-container .contact-card p {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 1rem;
}
.contact-info .contact-container .contact-card .contact-link {
  color: #d85c27;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.contact-info .contact-container .contact-card .contact-link:hover {
  color: rgb(172.8, 73.6, 31.2);
}
.contact-info .contact-container .contact-card .contact-note {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}
.contact-info .contact-container .contact-card .contact-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}
.contact-info .contact-container .contact-card .contact-social a {
  transition: transform 0.3s ease;
}
.contact-info .contact-container .contact-card .contact-social a:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .contact-info .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-section {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  position: relative;
  margin-top: -40px;
  padding-left: 4rem;
  padding-right: 4rem;
}
.hero-section .hero-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.hero-section .hero-content {
  text-align: left;
  color: #FFFFFF;
  padding: 4rem;
  max-width: 700px;
  background: linear-gradient(to right, rgba(20, 54, 93, 0.95), rgba(20, 54, 93, 0.7));
  border-radius: 8px;
}
.hero-section .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.hero-section .hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}
.hero-section .hero-content .service-area {
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  margin-top: 2rem;
  opacity: 0.9;
}
.hero-section .hero-content .hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-section .hero-content .hero-footer .service-area {
  margin-top: 0;
}
.hero-section .hero-content .hero-footer .license {
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}
.hero-section .hero-phone-cta {
  background-color: #d85c27;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 4px solid #FFFFFF;
  outline: 4px solid #d85c27;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.hero-section .hero-phone-cta:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero-section {
    margin-top: -30px;
    padding-left: 2rem;
    padding-right: 2rem;
    justify-content: center;
  }
  .hero-section .hero-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .hero-section .hero-content {
    text-align: center;
    padding: 2rem;
  }
  .hero-section .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-section .hero-content p {
    font-size: 1rem;
  }
  .hero-section .hero-content .service-area {
    font-size: 0.85rem;
  }
  .hero-section .hero-phone-cta {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.services-section {
  background-color: #14365d;
  color: #FFFFFF;
  padding: 4rem 2rem;
  position: relative;
}
.services-section .services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.services-section .services-container .service-item {
  flex: 1;
  text-align: left;
  padding: 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.services-section .services-container .service-item:last-child {
  border-right: none;
}
.services-section .services-container .service-item:first-child {
  padding-left: 0;
}
.services-section .services-container .service-item .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.5rem auto;
  display: block;
}
.services-section .services-container .service-item h2 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}
.services-section .services-container .service-item p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}
@media (max-width: 768px) {
  .services-section .services-container {
    flex-direction: column;
    gap: 2rem;
  }
  .services-section .services-container .service-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 0 2rem 0;
  }
  .services-section .services-container .service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.image-text-section {
  background-color: #FFFFFF;
  padding: 4rem 2rem;
}
.image-text-section .image-text-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.image-text-section .image-text-container .image-column {
  flex: 1;
}
.image-text-section .image-text-container .image-column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.image-text-section .image-text-container .text-column {
  flex: 1;
}
.image-text-section .image-text-container .text-column h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 600;
  line-height: 1.3;
}
.image-text-section .image-text-container .text-column p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000000;
}
@media (max-width: 768px) {
  .image-text-section .image-text-container {
    flex-direction: column;
    gap: 2rem;
  }
}

.portfolio-section {
  background-color: #14365d;
  padding: 4rem 2rem;
}
.portfolio-section .portfolio-header {
  text-align: center;
  margin-bottom: 4rem;
  color: #FFFFFF;
}
.portfolio-section .portfolio-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.portfolio-section .portfolio-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}
.portfolio-section .portfolio-gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.portfolio-section .portfolio-gallery .portfolio-item {
  flex: 1;
  max-width: 350px;
  overflow: hidden;
  border-radius: 4px;
}
.portfolio-section .portfolio-gallery .portfolio-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.portfolio-section .portfolio-gallery .portfolio-item img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .portfolio-section .portfolio-gallery {
    flex-direction: column;
    align-items: center;
  }
  .portfolio-section .portfolio-gallery .portfolio-item {
    max-width: 100%;
    width: 100%;
  }
  .portfolio-section .portfolio-gallery .portfolio-item img {
    height: 400px;
  }
}

.renovation-section {
  background-color: #FFFFFF;
  padding: 4rem 2rem;
}
.renovation-section .renovation-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.renovation-section .renovation-container h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #000000;
  font-weight: 600;
}
.renovation-section .renovation-container .renovation-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
}
.renovation-section .renovation-container .renovation-list .renovation-item {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 400;
  position: relative;
  padding-left: 2rem;
  opacity: 0;
}
.renovation-section .renovation-container .renovation-list .renovation-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d85c27;
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .renovation-section .renovation-container .renovation-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .renovation-section .renovation-container .renovation-list li {
    text-align: left;
  }
}

.cta-section {
  background-color: #14365d;
  padding: 4rem 2rem;
}
.cta-section .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-section .cta-container .cta-box {
  background-color: #d85c27;
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 4px solid #FFFFFF;
  outline: 4px solid #d85c27;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
}
@media (max-width: 768px) {
  .cta-section .cta-container .cta-box {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

.reviews-section {
  background-color: #f9f6ef;
  padding: 4rem 2rem;
}
.reviews-section .reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-section .reviews-container .reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.reviews-section .reviews-container .reviews-header .yelp-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.reviews-section .reviews-container .reviews-header .yelp-link:hover {
  transform: scale(1.1);
}
.reviews-section .reviews-container .reviews-header .yelp-link .yelp-icon {
  width: 48px;
  height: 48px;
}
.reviews-section .reviews-container .reviews-header h2 {
  font-size: 2rem;
  color: #000000;
  font-weight: 600;
  margin: 0;
}
.reviews-section .reviews-container .reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.reviews-section .reviews-container .reviews-grid .review-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reviews-section .reviews-container .reviews-grid .review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.reviews-section .reviews-container .reviews-grid .review-card .review-header {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 4px;
  display: block;
}
.reviews-section .reviews-container .reviews-grid .review-card .review-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #000000;
}
@media (max-width: 1024px) {
  .reviews-section .reviews-container .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews-section .reviews-container .reviews-header .yelp-icon {
    width: 36px;
    height: 36px;
  }
  .reviews-section .reviews-container .reviews-header h2 {
    font-size: 1.5rem;
  }
  .reviews-section .reviews-container .reviews-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reviews-section .reviews-container .reviews-grid .review-card .review-header {
    width: 120px;
  }
}

.hgtv-section {
  background-color: #FFFFFF;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hgtv-section .hgtv-container {
  max-width: 600px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.hgtv-section .hgtv-container .hgtv-logo {
  height: 80px;
  width: auto;
  flex-shrink: 0;
}
.hgtv-section .hgtv-container .hgtv-content {
  text-align: left;
}
.hgtv-section .hgtv-container .hgtv-content h3 {
  font-size: 1.8rem;
  color: #000000;
  font-weight: 600;
  margin: 0 0 1rem 0;
}
.hgtv-section .hgtv-container .hgtv-content p {
  font-size: 1.1rem;
  color: #000000;
  margin: 0.5rem 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hgtv-section {
    text-align: center;
  }
  .hgtv-section .hgtv-container {
    flex-direction: column;
    align-items: center;
  }
  .hgtv-section .hgtv-container .hgtv-content {
    text-align: center;
  }
  .hgtv-section .hgtv-container .hgtv-content h3 {
    font-size: 1.5rem;
  }
  .hgtv-section .hgtv-container .hgtv-content p {
    font-size: 1rem;
  }
  .hgtv-section .hgtv-container .hgtv-logo {
    height: 60px;
  }
}

.animate-slide-left {
  opacity: 0;
}
.animate-slide-left.in-view {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  opacity: 0;
}
.animate-slide-right.in-view {
  animation: slideInFromRight 0.8s ease-out forwards;
}

/*# sourceMappingURL=style.css.map */
