html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot,
thead, tr, th, td, article, aside, canvas,
details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: clamp(14px, 1.2vw, 20px);
}

header {
  background: #111;
  border-bottom: 4px solid #d4af37;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

.logo img {
  width: clamp(70px, 8vw, 160px);
  height: auto;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #d4af37;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: clamp(16px, 1.4vw, 22px);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b30000;
}

.hamburger {
  display: none;
  font-size: clamp(26px, 3vw, 38px);
  cursor: pointer;
  padding: 10px;
  color: #d4af37;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
  width: 100%;
  border-top: 2px solid #d4af37;
}

.mobile-menu li {
  padding: 18px 0;
  border-bottom: 1px solid #444;
  text-align: center;
}

.mobile-menu a {
  text-decoration: none;
  color: #d4af37;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 600;
}

.mobile-menu a:hover {
  color: #b30000;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #d4af37;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
  color: #d4af37;
}

h3 {
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: #d4af37;
}

h4, h5, h6 {
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
  color: #d4af37;
}

img {
  border: 2px solid #d4af37;
}

.gallery {
  display: grid;
  grid-template-rows: auto auto;
  gap: 30px;
  width: 80%;
  max-width: 1000px;
}

.main-image img,
.sub-images img {
  width: 100%;
  border: 2px solid #d4af37;
}

.media-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.media-buttons button {
  width: 20vw;
  min-width: 50px;
  max-width: 100px;
  aspect-ratio: 1 / 1;
  border: 2px solid #d4af37;
  border-radius: 15px;
  background-color: #b30000;
  color: white;
  font-size: clamp(20px, 4vw, 32px);
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s, border-color 0.3s;
}

.media-buttons button:hover {
  background-color: #d4af37;
  color: #000;
  border-color: #fff;
  transform: scale(1.07);
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  border-top: 2px solid #d4af37;
  color: #f5f5f5;
  font-size: clamp(14px, 1.5vw, 20px);
}


@media (max-width: 1024px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: block !important;
  }

  .mobile-menu {
    display: none;
  }

  .mobile-menu.open {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .hamburger {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 411px) {
  .gallery {
    width: 95%;
  }
}
