/* =========================================================
   RESET / BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 140px;
  
}

img {
  max-width: 100%;
  display: block;
}

.center {
	text-align: center;
	color: #000;
}

/* =========================================================
   HEADER
========================================================= */

.header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding: 0 20px;
  border-bottom: 1px solid #ccc;
}

.logo img {
  width: clamp(150px, 14vw, 260px);
}

/* NAV */
.top-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.top-menu ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.top-menu a {
  text-decoration: none;
  color: #000;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 15px;
}

.top-menu a:hover {
  text-decoration: underline;
}

.top-menu a.active {
  background: #cc0000;
  color: #fff;
}

/* HAMBURGER */
.hamburger {
  display: none;
}

/* =========================================================
   HERO / PAGE BACKGROUND (optional use)
========================================================= */

.page-background {
  flex-grow: 1;
  background: url("../Images/Home/homepage.png") center/cover no-repeat;
}
.page-background2 {
  flex-grow: 1;
  background: url("../Images/Owner.jpg") center/cover no-repeat;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: auto;
  margin-top: 10px;
}
.hero-box {
    background: rgba(255,255,255,0.95);
    max-width: 700px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.30);
    text-align: center;
}
/* =========================================================
   TOP IMAGE ROW
========================================================= */

.top-image-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 35px auto;
}

.top-image-row a {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    transition: transform .3s ease,
                box-shadow .3s ease;
}

.top-image-row a:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.top-image-row img {
    display: block;
    width: 320px;
    height: 215px;
    object-fit: cover;
    transition: transform .4s ease;
}

.top-image-row a:hover img {
    transform: scale(1.08);
}
.service-box {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 20px;
}
.service-box,
.portfolio-grid {
  padding-bottom: 40px;
}

/* CARD */
.service-card {
  flex: 1;
  min-width: 0;
}

/* Link wrapper */
.service-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* TOP SECTION (image + button) */
.card-top {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* SERVICES */
.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}
.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  background-color: #36F;
  color: #ffffff !important;

 padding: 6px 14px; 
  border-radius: 8px;

  text-decoration: none;
  font-weight: 600;
  font-size: 14px;

  box-shadow: 0 5px 14px rgba(0,0,0,0.18);

  transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;

  text-align: center;
}

/* HOVER STATE (no movement) */
.cta-button:hover {
	background-color: #36F;
	color: #000000 !important;
	box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* CLICK STATE */
.cta-button:active {
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.cta-wrap {
  text-align: center;
  margin-top: 20px;
}
/* HOVER ONLY TOP SECTION MOVES */
.service-card:hover .card-top {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* RED BUTTON */
.card-button {
  background: #cc0000;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  border-radius: 0 0 12px 12px;
  transition: background 0.25s ease;
}

/* BUTTON HOVER */
.service-card:hover .card-button {
  background: #a80000;
}
/* =========================================================
   PORTFOLIO (ONLY SYSTEM YOU NEED)
========================================================= */

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.portfolio-card a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.portfolio-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.portfolio-card h3 {
  margin: 12px 15px 6px;
}

.portfolio-card p {
  margin: 0 15px 12px;
  font-size: 14px;
  color: #444;
}

.portfolio-button {
  margin-top: auto;
  padding: 12px;
  background: #cc0000;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

/* hover effect */
.portfolio-card:hover {
  transform: translateY(-5px);
  transition: 0.25s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =========================================================
   GALLERY VIEWER
========================================================= */

#gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

/*==================================================================
Reviews
====================================================================*/
.stars {
  color: #FFD700;
  font-size: 3rem;
  margin: 5px 0;   /* reduces space above and below */
  line-height: 1;
}
.reviews-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reviews-box img {
  margin: 10px;
  vertical-align: middle;
}
.review-awards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.review-awards img {
  height: 90px;
  width: auto;
}
.reviews-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviews-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stars {
  color: #FFD700;
}
.reviews-box {
	background-color: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 16px;
	padding: 30px 25px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.25);
	max-width: 700px;
	margin: 20px auto;
	text-align: left;
}

/* =========================================================
   PROCESS
========================================================= */

#process {
  background: #fff;
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =========================================================
   CONTACT / ABOUT
========================================================= */

.contact-card,
.about-card {
  background: #fff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 1000px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* =========================================================
   FOOTER
========================================================= */

footer.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0f0f0f;
  color: #fff;
  font-size: 12px;
  padding: 6px 0;              /* remove side padding causing shift */
  box-sizing: border-box;
}

/* INNER WRAPPER */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;           /* keeps content aligned */
  margin: 0 auto;              /* centers footer content */
  padding: 0 20px;             /* safe inner spacing */
  box-sizing: border-box;
}

/* COLUMNS */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* FOOTER BOTTOM TEXT */
.footer-bottom {
  margin-top: 5px;
  font-size: 11px;
  text-align: center;
  width: 100%;
}

/* SAFETY: PREVENT HORIZONTAL SHIFT ISSUES */
html, body {
  overflow-x: hidden;
}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 28px;
    background: none;
    border: none;
    margin-left: 0;
    flex-shrink: 0;
  }

  .top-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #2b2b2b;
    z-index: 9998;
  }

  .top-menu.active {
    display: block;
  }

  .top-menu ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
  }

  .top-menu li {
    width: 100%;
  }

  .top-menu a {
    display: block;
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    color: white;
  }

  /* ---------- HERO ---------- */

  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    padding: 30px 15px;
  }

  .hero-box {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 25px;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    text-align: center;
    box-sizing: border-box;
  }

  .hero-box h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-box strong {
    display: block;
    margin-bottom: 25px;
    font-size: 1rem;
  }

  .hero-cta {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    box-sizing: border-box;
  }
  
 /* Services */
 .service-box {
  flex-direction: column;
  padding: 0 15px;
  gap: 15px;
}
.service-card {
  width: 100%;
  max-width: 100%;
}
html, body {
  overflow-x: hidden;
}

/* FORCE GALLERY TO STACK ON MOBILE */
.portfolio-grid {
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 0 15px;
}
#gallery {
  padding: 0 15px;
  box-sizing: border-box;
}

#gallery img {
  width: 100%;
  height: auto;
}
.gallery,
.portfolio-container {
  flex-direction: column;
  padding: 0 15px;
}
.service-box {
    flex-direction: column;
    padding: 0 15px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

}
