/* Font defaults */
html{
  scroll-behavior:smooth;
}
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: #201f1d;
  color: #ffffff;
  line-height: 1.8;
}

/* Subtle chalkboard texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%; 
  height: 100%;
  background-image: url('83.jpg');
  opacity: 0.1;
  pointer-events: none;
}

header {
  text-align: center;
  color: #ffffff;
  border-bottom: 2px solid #c8a878;
  background-image: url('Dornenshop_WorkandStudyCafe.jpg');
  inset: 0;
}

.banner-credit {
  margin-bottom: 10px;
  margin-right: 5px;
  text-align: right;
  background: transparent;
  opacity: 0.7;
}

header h1 {
  padding: 80px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin: 0;
  letter-spacing: 1px;
  box-shadow: 10px 0 10px rgb(44, 36, 30);
  background-color: rgb(44, 36, 30, 0.6);
  opacity: 0.8;
}

header p {
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-top: 10px;
  padding: 5px;
  opacity: 0.7;
  background-color: rgb(44, 36, 30, 0.6);
  box-shadow: 10px 10px rgb(97, 71, 52, 0.5);
}

section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

h2 {
  font-family: 'Playfair Display', serif;
  border-bottom: 1px solid #c8a878;
  padding-bottom: 8px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

/* Showcase thumbnails under showreel */

.showcase-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  margin-top:25px;
}

.showcase-grid a{
  display:block;
}

.showcase-grid img{
  width:100%;
  border-radius:6px;
  border:2px solid #c8a878;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

/* hover effect */

.showcase-grid img:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,0.4);
}

iframe, img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #c8a878;
}

ul, ol {
  font-size: 1.1rem;
  padding-left: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  background: #c8a878;
  color: #1b1b1b;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 40px;
  opacity: 0.7;
}

.pricing-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.pricing-flex {
  display: flex;
  gap: 40px;
  align-items: flex-end; /* aligns full-body price with video bottom */
  flex-wrap: wrap;
}

.pricing-video video {
  width: 280px;            /* tall portrait shape */
  border-radius: 6px;
  border: 2px solid #c8a878;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.clip-video video {
  width: 100%;
  margin-top: 10px;
  border-radius: 6px;
  border: 2px solid #c8a878;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Price labels column */
.price-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* positions half-body halfway, full-body at bottom */
  height: 100%; /* matches video height due to align-items flex-end on parent */
  padding: 10px 0;
}

/* Styling of each price */
.halfbody-price,
.fullbody-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #c8a878;
  border-left: 3px solid #c8a878;
  padding-left: 10px;
}

/* Slight spacing note under pricing */
.pricing-note {
  margin-top: 20px;
  opacity: 0.9;
  font-size: 1rem;
}
.pricing-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pricing-video-wrapper {
  position: relative;
  width: 350px; /* adjust as needed */
}

.pricing-video-wrapper video {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #c8a878;
}

/* Price tag style */
.price-tag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(200,168,120,0.9);
  color: #1b1b1b;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  border: 2px solid #1b1b1b;
  white-space: nowrap;
}

/* Half-body price sits halfway up */
.price-tag.half-body {
  top: 50%;
}

/* Full-body price at the bottom */
.price-tag.full-body {
  bottom: 10px;
}
/* Layout for video + prices side-by-side */
.pricing-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-end; /* aligns full-body price with video bottom */
  margin-top: 40px;
}

/* Video box shaped like a tall VTuber model */
.pricing-video-box {
  width: 320px;
  height: 560px;
  border: 2px solid #c8a878;
  border-radius: 8px;
  overflow: hidden;
}

.pricing-video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* PRICE LABELS (right side) */
.pricing-labels {
  position: relative;
  height: 560px; /* match the video box height */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* full-body price at bottom */
}

/* Individual price tags */
.price-item {
  background: #c8a878;
  color: #1b1b1b;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  white-space: nowrap;
  width: max-content;
  margin: 8px 0;
}

/* Position half-body price halfway up */
.price-item.half-body {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Full body stays at bottom (default) */
.price-item.full-body {
  position: absolute;
  bottom: 0;
}

/* ===== Quote Calculator ===== */

.quote-calculator {
  margin-top: 40px;
}

/* Section headers (like menu categories) */
.quote-section-title {
  font-family: 'Playfair Display', serif;
  border-bottom: 1px solid #c8a878;
  padding-bottom: 6px;
  margin-top: 35px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Each row */
.quote-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,168,120,0.25);
}

/* Price label */
.quote-price {
  color: #c8a878;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Quantity controls */
.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls button {
  background: #c8a878;
  border: none;
  color: #1b1b1b;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
}

.qty-controls span {
  min-width: 20px;
  text-align: center;
}

/* Totals box */
.quote-totals {
  margin-top: 30px;
  padding: 15px 20px;
  border-left: 3px solid #c8a878;
  background: rgba(44,36,30,0.6);
  font-family: 'Playfair Display', serif;
}

.quote-totals span {
  color: #c8a878;
  font-weight: bold;
}

.converted{
  margin-left: 8px;
  opacity: 0.7;
  font-size: 0.95em;
}

.converted::before{
  content:"(~";
}

.converted::after{
  content:")";
}

/* Navigation bar */

.site-nav{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:14px;
  border-bottom:1px solid #c8a878;
  background:rgba(44,36,30,0.85);
  position:sticky;
  top:0;
  z-index:1000;
}

.site-nav a{
  color:#c8a878;
  text-decoration:none;
  font-family:'Playfair Display', serif;
  letter-spacing:1px;
  font-size:2rem;
}

.site-nav a:hover{
  text-decoration:underline;
}

#backToTop{

  position: fixed;
  bottom: 30px;
  right: 30px;

  background: #c8a878;
  color: #1b1b1b;

  border: none;
  border-radius: 6px;

  padding: 10px 16px;

  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: bold;

  cursor: pointer;

  display: none;

  box-shadow: 0 4px 10px rgba(0,0,0,0.4);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#backToTop:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

/* Social media icons */

.social-links{
  display:flex;
  justify-content:center;
  gap:25px;
  margin:25px 0;
}

.social-links a{
  display:inline-block;
}

.social-links img{

  width:32px;
  height:32px;
  padding: 5px;

  filter: brightness(0) saturate(100%) invert(77%) sepia(18%) saturate(611%) hue-rotate(356deg) brightness(91%) contrast(85%);
  /* converts icons to your gold colour */

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links img:hover{
  transform: translateY(-3px);
  opacity:0.8;
}
