/* ===================== GLOBAL ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

body {
  background: #ffffff;
  color: #CA3433;
  line-height: 1.6;
  padding-top: 55px;
}

section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

h1, h2, h3 {
  letter-spacing: 2px;
  font-family: 'Black Ops One', cursive;
}

h2 {
  text-align: center;
}

p, ul, li {
  color: #000;
  font-size: 18px;
}

/* ===================== NAV ===================== */
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  background: #000;
  z-index: 9999;
}

.fixed-nav-inner {
  max-width: 1300px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.fixed-nav-links {
  display: flex;
  gap: 30px;
  margin: auto;
}

.fixed-nav-links a {
  color: #CA3433;
  text-decoration: none;
  font-family: 'Black Ops One', cursive;
}

.fixed-nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(202,52,51,0.9);
}

/* ===================== HEADER ===================== */
header {
  text-align: center;
  background: #000;
}

.header-inner {
  padding: 80px 20px 60px;
  display: flex;
  justify-content: center;
  background: #000;
}


.logo {
  height: 400px;
  width: 100%;
  opacity: 0.7;
  transition: 0.3s ease;
  /**filter: drop-shadow(0 0 20px rgba(202, 52, 51, 0.6));**/
}

.header-center h1 {
  font-size: 3.2rem;
}

.header-center p {
  color: #ddd;
}

/* ===================== SOCIAL ===================== */
.header-social,
.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  background: #000;
  padding-bottom: 20px;

}

.header-social a,
.social-icons a {
  color: #CA3433;
  font-size: 1.8rem;
}

.header-social a:hover,
.social-icons a:hover {
  color: #ff4d4d;
  transform: scale(1.2);
}

/* ===================== GALLERY ===================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  color: #CA3433;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
  text-align: center;
  padding: 10px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* ===================== ABOUT ===================== */
.about {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-image{
  text-align: center;
}

.about-image img {
  width: 300px;
  border-radius: 12px;
  border: 2px solid #CA3433;
  align-items: center;
}


.image-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.image-grid-8 img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* makes each image square */
  object-fit: cover;
}


.video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.video-row iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 10px;
}

/* ===================== SERVICES ===================== */
.service-box {
  background: #fff;
  border: 4px double #CA3433; /* FIXED */
  padding: 25px;
}

/* ===================== FOOTER ===================== */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px;
}

.social-icons {
  gap: 25px;
}

/* ===================== BUTTON ===================== */
#print-area button {
  width: 50%;
  height: 50px;
  background: #CA3433;
  color: #fff;
  border: none;
}

#print-area button:hover {
  background: #fff;
  border: 1px solid #CA3433;
  color: #CA3433;
}

/* ===================== MOBILE ===================== */
.hamburger {
  display: none;
  font-size: 1.6rem;
  color: #CA3433;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .fixed-nav-links {
    position: absolute;
    top: 75px;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
  }

  .fixed-nav-links.show {
    display: flex;
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 900px) {
  .image-grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .image-grid-8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .video-row {
    grid-template-columns: 1fr;
  }
}





