/* =========================================================
   1) BASE / RESET
   ========================================================= */
:root {
  --brand-red: ##ff0000;
  --brand-white: white;
  --accent-darkred: #ab2d0f;
  --font-main: "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
}

/* =========================================================
   2) HEADER
   ========================================================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #000;
  color: white;
  font-family: var(--font-main);
}

/* Logo link (clickable area + remove link styling) */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  opacity: 0.9;
}

/* Logo image */
.site-logo {
  height: 100px; /* adjust size here */
  width: auto;
  display: block;
}

/* Buttons (link-styled buttons) */
.btn {
  background: #ff0000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-main);
}

.btn:hover {
  opacity: 0.9;
}

/* =========================================================
   3) HERO
   ========================================================= */
.hero-section {
  padding: 0px;
  text-align: center;
}

.hero-card {
  height: 500px; /* match your banner height */
  display: flex;
  flex-direction: column; /* stacks text vertically */
  justify-content: center; /* vertical center */
  align-items: center;     /* horizontal center */
  text-align: center;
  font-family: var(--font-main);
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  background-image: url('images/Wood2.jpg');
}

/*hero .card-section*/
.hero-content {
  max-width: 2000px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* Hero buttons */
.primary-btn {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
}

.secondary-btn {
  background: #ff0000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Card image that scales with screen */
.card-img {
  width: 100%;
  height: auto;

  max-height: 85vh;   /* let it grow more on big screens */
  object-fit: contain;

  display: block;
  border-radius: 12px;
}




/* =========================================================
   4) SECTIONS / GRIDS / CARDS
   ========================================================= */
.card-section {
  padding: 60px 40px;
}

.card {
  max-width: 900px;   /* allows big cards on desktop */
  width: 100%;
  margin: 0 auto;
}

.card-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  font-family: var(--font-main);
}

.featured-card {
  max-width: 1100px;   /* BIG display */
  margin: 0 auto;
}


.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  font-family: var(--font-main);
}

.full-grid {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.full-card {
  background-color: rgba(255, 255, 255, 0.877);
  color: #000;
  text-align: Left;
  font-size: 20px;
  font-family: var(--font-main);
  margin: 0;
  border-radius: 16px;
}

/* =========================================================
   5) FOOTER
   ========================================================= */
.site-footer {
  padding: 60px 40px;
  background: black;
  color: var(--accent-darkred);
  font-size: 30px;
  font-family: var(--font-main);
  margin: 0;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-card {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-family: var(--font-main);
  margin: 0;
}

/* =========================================================
   6) GALLERY PAGE
   ========================================================= */
.gallery-row {
  max-width: 2000px;
  margin: 40px auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-family: Arial, sans-serif;
  color: white;
  letter-spacing: 0.5px;
}

/* Each embedded gallery card */
/* Carousel Layout */
.gallery-section {
  background: #000;
  padding: 60px 20px;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}


/* Banners */
.service-banner {
  background: #000;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
  width: 100%;
}

.service-track {
  display: inline-flex;
  gap: 50px;
  animation: scroll 30s linear infinite;
}

.service-track span {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*Review Section*/
.review-section {
  display: flex;
  gap: 25px;
  justify-content: center;
  padding: 60px 20px;
  background: #f9f9f9;
  flex-wrap: wrap;
}

.review-card {
  background: white;
  border-radius: 16px; /* 👈 Rounded edges */
  padding: 30px 25px;
  max-width: 320px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #222;

  /* Soft shadow */
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);

  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card p {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 15px 0;
}

.review-card span {
  font-weight: bold;
  color: #444;
}

.reviews-wrapper {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.reviews-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-family: Arial, sans-serif;
  color: #111;
  letter-spacing: 0.5px;
}




/* =========================================================
   7) CONTACT FORM
   ========================================================= */
.contact-section {
  padding: 60px 40px;
}

.contact-card {
  max-width: 720px;
  margin: 0 auto;

  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);

  font-family: var(--font-main);
}

.contact-card h2 {
  margin: 0 0 8px;
}

.contact-sub {
  margin: 0 0 20px;
  opacity: 0.8;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #a81e14;
}

.submit-btn {
  background: #a81e14;
  color: #fff;
  border: none;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* =========================================================
   8) RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .hero-card {
    padding: 24px;
    min-height: 60vh;
  }

  .hero-actions {
    flex-direction: column;
  }
}
