/* ===== RESET / BASE / TYPOGRAPHY ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #f4f4f4;
  overflow-x: hidden;
}

a {
  color: #c4551a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2 {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1f1f1f;
}

h3 {
  font-size: 1.3rem;
  margin: 25px 0 10px;
}

p {
  font-weight: 400;
  color: #444;
  margin-bottom: 15px;
}

ul {
  margin: 10px 0 20px 20px;
}

li {
  margin-bottom: 8px;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  margin-bottom: 40px;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo__img {
  height: 80px;
  width: auto;
  display: block;
}

.site-header {
  background: #1f1f1f;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1000;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.site-main {
  background: #fff;
  padding: 40px 0;
}

.site-footer {
  background: #1f1f1f;
  color: #ccc;
  padding: 25px 0;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer p {
  color: #ccc;
  margin: 0;
}

.video-section {
  margin-top: 2rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 6px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #c4551a;
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
}

.btn:hover {
  background: #a94615;
  text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 75vh;
  min-height: 520px;
  background: url("../images/hero/fancywallart-metalplasma-heattreated-customframe-clearcoatfinish.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.75) 35%,
    rgba(0,0,0,0.45) 65%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.85);
}

.hero__text {
  color: #f2f2f2;
  font-size: 1.25rem;
  margin-bottom: 1.8rem;
}

/* ===== FEATURED SERVICES ===== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.featured-card {
  background: #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.featured-card__img--top {
  object-position: top;
}

.featured-card__title {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  color: #c4551a;
}

.featured-card__text {
  padding: 0 1.2rem;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #ccc;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ===== GALLERY ===== */
.gallery-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.gallery {
  padding: 60px 20px;
}

.gallery__tabs {
  text-align: center;
  margin-bottom: 40px;
}

.gallery__tab {
  background: none;
  border: 2px solid #00aaff;
  color: #00aaff;
  padding: 8px 18px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 4px;
}

.gallery__tab.active {
  background: #00aaff;
  color: white;
}

.gallery__category {
  display: none;
}

.gallery__category.active {
  display: block;
}

.gallery__slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.gallery__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gallery__item {
  flex: 0 0 33.33%;
}

.gallery__item-inner {
  padding: 10px;
}

.gallery__item-img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== GALLERY ARROWS ===== */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 4px;
  z-index: 10;
}

.gallery__arrow.left {
  left: 10px;
}

.gallery__arrow.right {
  right: 10px;
}

.gallery__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.gallery__lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border: 5px solid white;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.gallery__lightbox.active {
  display: flex;
}

/* ===== DESKTOP NAVIGATION COMPONENTS ===== */
.main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
}

.main-nav__link {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.main-nav__link.active {
  color: #ff914d;
  font-weight: 600;
}

.main-nav__link:hover {
  color: #ff914d;
}

/* ===== HAMBURGER TOGGLE (HIDDEN BY DEFAULT) ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

/* ===== CONTACT FORM ===== */

.contact__card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
}

.contact__form {
  margin-top: 25px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c4551a;
  box-shadow: 0 0 0 2px rgba(196,85,26,0.2);
}

/* ===== MOBILE NAV STYLES ===== */
@media (max-width: 900px) {

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1f1f1f;
    flex-direction: column;
    width: 100%;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 1500;
    display: flex;
  }

  .main-nav__link {
    padding: 12px 0;
    display: block;
    font-size: 1rem;
  }

  .main-nav.active {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* ===== ADDITIONAL MOBILE NAV STYLES FOR SMALLER MOBILE DEVICES ===== */
@media (max-width: 768px) {
  .gallery__item {
    flex: 0 0 100%;
  }
  
  .site-header__title {
    text-align: center;
  }

  .main-nav {
    justify-content: center;
  }

  .hero__title {
    font-size: 2rem;
  }
}