/* PUMA House of Hustle — homepage + shared layout */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Poppins, "Open Sans", Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #e30613;
  text-decoration: none;
}

#scroll-progress {
  display: none;
}

/* Loading overlay: hide once body.loaded (wayback polyfill / DOM ready) */
#loading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#loading-progress .logo img {
  max-width: 180px;
}

#loading-progress .logo h3 {
  margin: 8px 0 0;
  font-weight: 700;
  letter-spacing: 0.28em;
}

#loading-progress .colored {
  color: #e30613;
}

#loading-progress .lp-content {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
}

#loading-progress .lp-bar {
  width: 180px;
  height: 3px;
  margin: 12px auto 0;
  background: #222;
}

#lp-bar {
  width: 100%;
  height: 100%;
  background: #e30613;
}

body.loaded #loading-progress {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hero */
#banner {
  background: #000;
}

.padhomell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 72px;
  background-color: #000;
  background-image:
    radial-gradient(ellipse at 50% 18%, rgba(227, 6, 19, 0.28), transparent 52%),
    linear-gradient(180deg, #141414 0%, #000 55%, #0a0a0a 100%);
}

.spacehohl {
  width: 100%;
}

.spacehohl img {
  display: block;
  margin: 0 auto;
}

.bbani-right2 {
  display: inline-block;
  margin-top: 8px;
  animation: hoh-bob 2.2s ease-in-out infinite;
}

.bbani-right2 img {
  max-width: 240px;
}

@keyframes hoh-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Video + countries */
.bgland1 {
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    #111 url("../images/bgland1.jpg") center / cover no-repeat;
  padding: 56px 0 20px;
}

.bgland1 iframe {
  max-width: 100%;
  border: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.bgland1 p {
  line-height: 1.7;
  font-weight: 300;
}

.bgland1 .fa-play {
  color: #e30613;
  margin-right: 8px;
}

.country-card {
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.country-card:hover,
.country-card:focus {
  transform: translateY(-6px);
  filter: brightness(1.08);
}

.country-card img {
  display: block;
  margin: 0 auto;
  max-width: 320px;
}

/* Footer */
.footerser {
  color: #fff;
  background: #000;
}

.footerser h4,
.footerser h5,
.footerser h6 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
}

.footerser h4 { font-size: 14px; font-weight: 700; }
.footerser h5 { font-size: 13px; font-weight: 600; }
.footerser h6 { font-size: 12px; font-weight: 600; }

.social-links a {
  display: inline-block;
  margin-right: 10px;
}

.social-links img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.scroll-top-icon {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 44px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  opacity: 0.85;
}

.scroll-top-icon:hover {
  color: #e30613;
  opacity: 1;
}

/* Contact modal */
.vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.vertical-align-center {
  display: table-cell;
  vertical-align: middle;
  pointer-events: auto;
}

.modal-content {
  color: #111;
  border-radius: 0;
}

.modal-content textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 8px 12px;
  color: #111;
}

.modal-content .form-control[type="submit"] {
  background: #e30613;
  color: #fff;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .padhomell {
    min-height: 92vh;
    padding: 32px 12px 48px;
  }

  .bgland1 {
    padding: 32px 0 8px;
  }

  .bgland1 p {
    font-size: 16px !important;
  }
}
