/* Purchase Ink Archive – styles.css */

/* Font Import */
@font-face {
  font-family: 'Phirst';
  src: url('fonts/phirst.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Color Palette */
:root {
  --bold-red: #C1121F;
  --true-black: #1C1B1A;
  --golden-yellow: #FFC72C;
  --deep-navy: #003F63;
}

/* Base Layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Phirst', sans-serif;
  background-color: var(--true-black);
  color: var(--golden-yellow);
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
}

.page-content {
  flex: 1;
  padding-top: 70px;
}

/* Navbar */
.navbar {
  background-color: var(--true-black);
  border: none;
  margin-bottom: 0;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1000;
}
a.navbar-brand {
  top:-20px;
}
}
.navbar .navbar-brand {
  color: var(--golden-yellow);
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .navbar-brand:hover,
.navbar .navbar-nav li a:hover {
  color: var(--bold-red);
}

.navbar .navbar-nav li a {
  color: var(--golden-yellow);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.navbar .navbar-nav li a:hover {
  background-color: var(--deep-navy);
  font-weight: bold;
}

.navbar-nav > li > a.active {
  color: var(--bold-red) !important;
  font-weight: bold;
}

.navbar-toggle {
  background-color: var(--golden-yellow);
  border: 2px solid var(--true-black);
}

.navbar-toggle .icon-bar {
  background-color: var(--true-black);
}

/* Hero Section */
#hero-section {
  background-color: var(--deep-navy);
  text-align: center;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#hero-section h1 {
  color: var(--bold-red);
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

#hero-section p {
  font-size: 1.5rem;
  color: var(--golden-yellow);
}

/* Typography */
.container h2,
h2, h3, h4 {
  font-size: 2rem;
  margin-top: 2rem;
}

.container p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.container p em {
  font-size: 1.8rem;
  font-style: italic;
  display: block;
  margin-top: 1rem;
}

/* About Page Responsive Typography */
.about-page .container h2 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
}

.about-page .container p {
  font-size: clamp(1.5rem, 1.2vw + 1rem, 2.2rem);
}

.about-page .container p em {
  font-size: clamp(1.8rem, 1.3vw + 1rem, 2.5rem);
}

/* Disclaimer */
.disclaimer p {
  color: var(--bold-red);
  font-style: italic;
  font-size: 1.2rem;
}

/* Images */
.tattoo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Tooltip */
.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-container .tooltip-text {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: var(--golden-yellow);
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-container:hover img {
  filter: brightness(50%);
}

/* Modal - Scaled-down and centered */
.modal-dialog {
    margin: 10% auto; /* Vertical spacing from top */
    max-width: 1080px; /* Keeps it from getting huge */
    width: 90%;
}

.modal-content {
    background-color: var(--true-black);
    color: var(--golden-yellow);
    border-radius: 8px;
    padding: 1rem;
}

/* Modal Header */
.modal-header {
    background-color: var(--deep-navy);
    color: var(--golden-yellow);
    border-bottom: none;
}

/* Modal Body */
.modal-body {
    padding: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Modal Close Button */
.close {
    color: var(--golden-yellow);
}
.close:hover {
    color: var(--bold-red);
    text-shadow: 0 0 5px var(--golden-yellow);
}

.modal-backdrop {
  z-index: 1040 !important;
}

.modal {
  z-index: 1050 !important;
}

/* Footer */
footer {
  background-color: var(--deep-navy);
  color: var(--golden-yellow);
  text-align: center;
  padding: 1rem 0;
  width: 100%;
  margin-top: auto;
}

/* Responsive Fixes */
@media screen and (max-width: 768px) {
  .navbar .navbar-nav {
    text-align: center;
  }

  .navbar .navbar-nav li {
    display: block;
    margin: 10px 0;
  }

  .navbar .navbar-nav li a {
    font-size: 1.4rem;
  }

  #hero-section h1 {
    font-size: 2.5rem;
  }

  #hero-section p,
  .container p,
  .tooltip-text {
    font-size: 1.2rem;
  }

  .container h2 {
    font-size: 1.6rem;
  }

  .container p em {
    font-size: 1.5rem;
  }

  .about-page .container h2 {
    font-size: 2.5rem;
  }

  .about-page .container p {
    font-size: 2rem;
  }

  .about-page .container p em {
    font-size: 2.2rem;
  }

  .page-content {
    padding-top: 220px;
  }
}
