/* =================================================
   GLOBAL RESET
================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* =================================================
   BACKGROUND BUSINESS CARD (Subtle but Visible)
================================================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("images/business-card.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 850px;
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
}

/* =================================================
   LAYOUT CONTAINER
================================================= */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =================================================
   HEADER
================================================= */
header {
  background-color: #b11226;
  padding: 14px 0;
  text-align: center;
}

/* Company Name - Always Horizontal */
.company-name {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 10px;
  flex-wrap: wrap;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

nav a:hover,
nav a.active {
  text-decoration: underline;
}

/* =================================================
   HERO SECTION
================================================= */
.hero {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =================================================
   CTA BUTTONS
================================================= */
.hero-cta {
  text-align: center;
  margin: 35px 0;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  margin: 8px;
  background-color: #b11226;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn.secondary {
  background-color: #333333;
}

/* =================================================
   CONTENT SECTION
================================================= */
.content {
  padding: 50px 0;
}

.content h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.content p {
  margin-bottom: 18px;
  max-width: 850px;
}

/* =================================================
   IMAGE GALLERY
================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
}

/* =================================================
   PROFILE IMAGE
================================================= */
.profile-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 20px;
}

/* =================================================
   FOOTER
================================================= */
footer {
  background-color: #f2f2f2;
  padding: 28px 0;
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
}

/* =================================================
   MOBILE RESPONSIVE ADJUSTMENTS
================================================= */
@media (max-width: 992px) {

  .hero {
    height: 320px;
  }

  .company-name {
    font-size: 22px;
  }

}

@media (max-width: 768px) {

  header {
    padding: 10px 0;
  }

  .company-name {
    font-size: 18px;
    white-space: normal;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 14px;
  }

  .hero {
    height: 260px;
  }

  .gallery img {
    height: 220px;
  }

  .profile-photo {
    width: 220px;
    height: 220px;
  }

}

@media (max-width: 480px) {

  .hero {
    height: 220px;
  }

  .btn {
    display: block;
    width: 90%;
    margin: 10px auto;
  }

}