html, body {
    height: 100%;
		margin: 0;
		padding: 0;
}

body {
    
    display: flex;
    flex-direction: column;
		background: rgba(243,243,243);
	}     


body, h1, h2, p, ul, li, a {
					
            margin: 0;
            padding: 0;
            font-family: DIN Alternate, sans-serif;
						
						
						
        }
				h1{
				color: rgba(40, 55, 74);
				font-size: 23px;
			/*	transform: scaleY(1.6);*/
				}
        ul { list-style: none; }
        a { text-decoration: none; color: #000; }

        /* Header / Nav */
        header {
            background: white;
						
        }
				
				
        .logo img {
            height: 50px;
						
						
        }
        nav ul {
            display: flex;
            gap: 20px;
            align-items: center;
        }
main {
	flex: 1;
}
				
/* Top header (hidden on mobile by default) */
.top-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: white;
}

.top-logo img {
  height: 50px;
}

.top-nav {
  display: flex;
  gap: 30px;
}

.top-nav a {
  font-weight: 600;
  color: rgba(40, 55, 74);
  letter-spacing: 0.5px;
}

.top-nav a:hover {
  text-decoration: underline;
}				
				
        /* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 200px;
 /*   background-color: rgba(40, 55, 74);*/
    display: flex;
    justify-content: center;
    align-items: center;
		margin-top: 20px;
}

/* Logo link */
.hero-link {
    z-index: 1;
}
.hero-logo {
    max-width: 700px;   /* adjust to taste */
    width: 100%;
    height: 100%;
		margin-top: -20px;
	}


        .hero h1 {
            font-size: 2.5rem;
            color: #333;
        }
				
				/* Hamburger button */
.hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    user-select: none;
    z-index: 1100;
    background: rgba(243,243,243,0.8);
    padding: 6px 10px;
    border-radius: 6px;
		z-index: 100;
		color: rgba(40, 55, 74);
	}

/* Side menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;          /* start hidden off the right */
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 2000;
		
}

.side-menu.open {
    right: 0;               /* slide in */
}

.side-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.side-menu a {
    display: block;       /* makes the entire area clickable */
    width: 100%;          /* fill the width of the menu */
    padding: 2px 10px;   /* optional: add some padding */
    box-sizing: border-box;
		
	font-size: 20px;
	}

/* Overlay when menu is open */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 1500;
}

.overlay.show {
    display: block;
	}
        /* Content Sections */
        .section {
            padding: 40px 20px;
            text-align: center;
						
        }
				
				/* In your styles.css */
				
        .cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
						
        }
        .card {
            width: 80%;
            padding: 20px;
						margin-top: -40px;
          /*  border: 1px solid #e0e0e0;*/
            border-radius: 8px;
						
        }
				
				.card p {
					font-size: 20px;
				}
        .card h3 {
            margin-bottom: 10px;
        }
				
				
				
				.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.cta-buttons a {
	
    padding: 5px 15px;
		
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* Free Quote button */
.btn-quote {
    background-color: rgba(40, 55, 74);
    color: white;
		transform: scaleY(1.2);
		
}

/* Call Now button */
.btn-call {
    border: 2px solid rgba(40, 55, 74);
    color: rgba(40, 55, 74);
		transform: scaleY(1.2);
}


				
.full-width-image {
    width: 80%;
    max-width: 80%;
    height: auto;       /* keeps aspect ratio */
    display: block;     /* removes inline gap */
		margin: 0 auto;
		margin-top: -18px;
	}				

.full-width-truss {
    width: 100%;
    max-width: 100%;
    height: auto;       /* keeps aspect ratio */
    display: block;     /* removes inline gap */
		margin: 0 auto;
		margin-top: -18px;
	}				

	
	
.why-section {
    background-color: rgba(40, 55, 74);
    color: white;
		
}

.why-section h2 {
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.why-list {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.why-list li {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.why-list li:last-child {
    border-bottom: none;
	}

.map-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
		margin-top: -110px;
		color: rgba(40, 55, 74);
}

.map-link:hover img {
    transform: scale(1.02);
}

.map-image {
    width: 70%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto 50px;
    transition: transform 0.2s ease;
    cursor: pointer;
	}



/* Active menu item */
.nav-active {
  color: rgba(40, 55, 74) !important;
}

/* Mobile side menu active */
.side-menu .nav-active {
  background: rgba(40, 55, 74, 0.01);
  border-left: 4px solid rgba(40, 55, 74);
}



/* 5-Star Review Section */
#google-review {
  background-color: rgba(40, 55, 74, 1); /* same as your why-section */
  color: white;
  text-align: center;
  padding: 50px 20px;
}

#google-review .review-container {
  max-width: 600px;
  margin: 0 auto;
}

#google-review .review-stars {
  max-width: 250px;
  width: 80%;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#google-review .review-text {
  font-size: 20px;
  margin-bottom: 25px;
  line-height: 1.4;
}

#google-review .review-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  color: rgba(40, 55, 74);
  background-color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

#google-review .review-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  #google-review .review-text {
    font-size: 18px;
  }

  #google-review .review-button {
    font-size: 16px;
    padding: 10px 20px;
  }
}




	/* Footer */
        footer {
            background: #333;
            color: white;
            padding: 20px;
            text-align: center;
						margin-top: auto;
						
						}
						

/* Desktop / landscape layout */
@media (min-width: 900px), (orientation: landscape) and (min-width: 600px) {

  body {
    background: rgba(243,243,243,0.8);
  }

  /* Hide mobile hero and hamburger menu */
  .hero,
  .hamburger,
  .side-menu,
  .overlay {
    display: none !important;
  }

  /* Show top-header */
  .top-header {
    display: flex;
    justify-content: flex-start; /* logo on left */
    align-items: center;
    padding: 15px 60px;
		background: rgba(243,243,243,0.8);
  }

  /* Logo */
  .top-logo img {
    height: 70px; /* slightly bigger */
  }

  /* Nav tabs next to logo */
  .top-nav {
    display: flex;
    gap: 40px; /* tabs closer to center */
    margin-left: 50px;
  }

  .top-nav a {
    font-size: 18px;
    color: rgba(40,55,74,0.9);
    padding: 10px 15px;
    transition: color 0.2s ease;
  }

  .top-nav a:hover {
    color: rgba(40,55,74,1);
  }
}


#Spam {
  width: 5%;
	visibility: hidden;
	height: 50px;
  margin-top: -50px;
  border: 1px rgba(243,243,243,0.8);
  margin-bottom: 20px;
  resize: vertical;
	background-color: rgba(243,243,243,0.8);
}	