:root {
      --primary: #2f2f2f;
      --accent: #c59d5f;
      --light: #f6ecef;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: var(--light);
      color: var(--primary);
    }

    /* NAVIGATION */
    nav {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 1.2rem 2rem;
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: 1px;
    }
	
	.logo img {
	width: 200px;      /* adjust size as needed */
	height: auto;
	display: block;    /* remove inline spacing */
	}

    .menu {
      display: flex;
      gap: 2rem;
	  margin-left: 4rem;
    }

    .menu button {
      background: none;
      border: none;
      font-size: 0.95rem;
      cursor: pointer;
      padding-bottom: 4px;
      position: relative;
    }

    .menu button::after {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      background: var(--accent);
      left: 0;
      bottom: 0;
      transition: width 0.3s ease;
    }

    .menu button:hover::after,
    .menu button.active::after {
      width: 100%;
    }

    /* SECTIONS */
    .page {
      display: none;
      padding: 2rem 2rem;
      max-width: 1000px;
      margin: auto;
      animation: fade 0.4s ease-in-out;
    }

    .page.active {
      display: block;
    }

    h1 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }

    p {
      line-height: 1.7;
    }

    @keyframes fade {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ABOUT LAYOUT */
	.about-container {
	display: flex;
	gap: 3rem;
	align-items: center;
	flex-wrap: wrap;
	}
	
	
	.about-container img {
	width: 100%;
	max-width: 420px;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.12);
	object-fit: cover;
	}
	
    .about-text {
	flex: 1;
	min-width: 260px;
	}
	
	
	/* SERVICES LAYOUT */
	#services {
		max-width: none;
		padding-left: 1rem;
		padding-right: 2rem;
	}

	.services-layout {
	display: flex;
	gap: 3rem;
	align-items: stretch;
	min-height: 300px;
	}
	
	
	.services-menu {
	width: 160px;
  	display: flex;
  	flex-direction: column;
  	gap: 0;
  	position: sticky;
  	top: 100px;
  	align-self: flex-start;
  	margin-left: 0;      /* flush to the left edge */
  	padding-left: 5px;
	}
	
	
	.service-tile {
	position: relative;
	height: 60px;
	border: 1px solid rgba(255,255,255,0.25);
	cursor: pointer;
	background-image: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), var(--bg);
	background-size: cover;
	background-position: center;
	border-radius: 7px;
    transition: background-image 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
	box-shadow: 0 10px 22px rgba(0,0,0,0.12);
	overflow: hidden;
	}
	
	
	.service-tile span {
	  position: absolute;
	  inset: 0;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-weight: 600;
	  letter-spacing: 0.5px;
	  background: rgba(255,255,255,0.35);
	  transition: background 0.6s ease, color 0.6s ease;
	  color: var(--primary); 
}
	
	
	.service-tile:hover {
	background-image: var(--bg);
	transform: translateY(-2px);
	box-shadow: inset 0 0 0 2px var(--accent);
	}
	
	
	.service-tile:hover span {
	  background: rgba(255,255,255,0); /* overlay fades out */
	  color: rgb(238, 147, 192);                   /* hot pink text */
	  opacity: 1;                       /* ensure text stays visible */
	  text-shadow: 1px 1px 1px rgb(78, 17, 63);   /* black border effect */
	}
	
	
	.service-tile.active {
	box-shadow: inset 0 0 0 2px var(--accent);
    border-color: var(--accent);
	}
	
	
	.service-tile.active span {
	  background: rgba(255,255,255,0); /* overlay gone */
	  color: rgb(238, 147, 192);                  /* active hot pink text */
	  opacity: 1;                       /* keep visible */
	  text-shadow: 1px 1px 1px rgb(78, 17, 63);    /* black border effect */
	}
	
	.services-content {
	flex: 1;
	position: relative;
	}
	
	
	.service-panel {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease;
	}
	
	
	.service-panel.active {
	opacity: 1;
	pointer-events: auto;
	}
	
	
	/* ABOUT LAYOUT */
	footer {
	text-align: center;
	padding: 2rem;
	font-size: 0.85rem;
	color: #777;
	}

	@media (max-width: 768px) {
		.services-layout {
			flex-direction: column;
		}
	}

	@media (max-width: 768px) {
		.services-menu {
			width: 100%;
			flex-direction: row;
			overflow-x: auto;
			position: relative;
			top: 0;
		}

		.service-tile {
			min-width: 220px;
			height: 80px;
		}
	}

.moarpix {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: visible;
}

.moarpix .pic {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%); /* start at center */
  opacity: 0; /* start invisible */
  width: 150px;
  transition: transform 1s ease-out, opacity 1s ease-out;
  border-radius: 20px;
  border: 5px solid var(--accent);
}

.buildingpic img {
  border-radius: 20px;
  border: 5px solid var(--accent);
  width: 400px;    /* fixed or max width */
  height: auto;    /* keep aspect ratio */
  display: block;  /* removes inline spacing */
}

.horizontal {
  display: flex;
  align-items: flex-start; 
  gap: 20px;             
}

.horizontal h1{
	margin-bottom: 0.5rem; 
}

.horizontal p {
  margin-top: 0.3rem;
  margin: 0;        /* removes default top/bottom margin */
}
