* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #070707;
  color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  width: 100%;
  padding: 18px 8%;
  background: #050505;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c89b3c;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

.brand-text span {
  color: #d4af37;
}

nav a {
  margin-left: 25px;
  font-size: 15px;
  color: #ffffff;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.btn-small {
  background: #d4af37;
  color: #000000 !important;
  padding: 10px 16px;
  border-radius: 30px;
  font-weight: bold;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 8%;
  background: #000000;
}

.hero-content {
  flex: 1;
  max-width: 760px;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 20px;
  color: #dddddd;
  margin-bottom: 35px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 620px;
  border-radius: 24px;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.25);
  display: block;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: #d4af37;
  color: #000000;
  padding: 14px 28px;
  border-radius: 35px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ffffff;
}

.btn.outline {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.btn.outline:hover {
  background: #d4af37;
  color: #000000;
}

.about,
.services,
.packages,
.contact,
.portfolio-section,
.page-title {
  padding: 70px 8%;
  text-align: center;
}

.about h2,
.services h2,
.packages h2,
.contact h2,
.portfolio-section h2,
.page-title h1 {
  font-size: 38px;
  color: #d4af37;
  margin-bottom: 20px;
}

.about p,
.contact p,
.page-title p {
  max-width: 850px;
  margin: auto;
  color: #dddddd;
  font-size: 18px;
}

/* GENERAL GRIDS */

.cards,
.pricing {
  margin-top: 40px;
  display: grid;
  gap: 25px;
  align-items: start;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}

.pricing {
  grid-template-columns: repeat(3, 1fr);
}

/* SHORTS / REELS 9:16 */

.portfolio-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: start;
}

.portfolio-item {
  max-width: 360px;
  margin: 0 auto;
  background: #111111;
  border: 1px solid #2b2b2b;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.08);
}

.portfolio-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
  background: #000000;
  display: block;
  margin-bottom: 15px;
}

.portfolio-item h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
  text-align: center;
}

.portfolio-item p {
  color: #dddddd;
  font-size: 16px;
  text-align: center;
}

/* YOUTUBE 16:9 VIDEOS */

.youtube-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  align-items: start;
}

.youtube-card {
  background: #111111;
  border: 1px solid #2b2b2b;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.08);
}

.youtube-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  background: #000000;
  display: block;
  margin-bottom: 15px;
}

.youtube-card h3 {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

/* IMAGE / GRAPHIC DESIGNS 16:9 */

.image-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  align-items: start;
}

.image-card {
  background: #111111;
  border: 1px solid #2b2b2b;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.08);
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
  margin-bottom: 15px;
}

.image-card h3 {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

/* CARDS */

.card,
.price-card,
.contact-box {
  background: #111111;
  border: 1px solid #2b2b2b;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.08);
}

.card h3,
.price-card h3 {
  color: #d4af37;
  margin-bottom: 12px;
}

.card p,
.price-card p {
  color: #cccccc;
}

.price {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff !important;
}

.featured {
  border-color: #d4af37;
}

.contact-box {
  max-width: 650px;
  margin: 30px auto 0;
  text-align: left;
}

footer {
  background: #050505;
  border-top: 1px solid #c89b3c;
  text-align: center;
  padding: 25px 8%;
  color: #aaaaaa;
  font-size: 14px;
}

/* TABLET */

@media (max-width: 1000px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .cards,
  .pricing,
  .portfolio-grid,
  .image-grid,
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item {
    max-width: 330px;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

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

  .site-logo {
    width: 90px;
    height: 90px;
  }

  .brand-text {
    font-size: 20px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
  }

  .hero {
    padding: 60px 6%;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .cards,
  .pricing,
  .portfolio-grid,
  .image-grid,
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item {
    max-width: 92vw;
  }

  .portfolio-item video {
    max-height: 78vh;
  }

  .image-card img,
  .youtube-card video {
    aspect-ratio: 16 / 9;
  }

  .about,
  .services,
  .packages,
  .contact,
  .portfolio-section,
  .page-title {
    padding: 55px 6%;
  }
}
.qr-container {
  text-align: center;
  margin: 30px 0 40px 0;
}

.qr-code {
  width: 150px !important;     /* Force the size */
  height: 150px !important;
  max-width: 120px !important;
  image-rendering: crisp-edges;
  border: 8px solid white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 8px;
}

/* Extra force against Bootstrap img-fluid */
img.qr-code {
  width: 150px !important;
  height: 150px !important;
  max-width: 150px !important;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .qr-code {
    width: 100px !important;
    height: 100px !important;
  }
}