
/* ===============================
   Dragon Tattoo Levice - Global Stylesheet
   =============================== */

/* Import a clean modern sans-serif font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
:root {
  --background-color: #1a1a1a;
  --text-color: #e63946;          /* red accent for general text */
  --heading-color: #bbbbbb;       /* light gray for headings */
  --subtext-color: #cccccc;       /* softer gray for body text */
  --accent-color: #e63946;        /* main red tone */
  --border-color: #333333;
}
@font-face {
	font-family: "HEIDH";
	src: url("../fonts/heidh.ttf") format("truetype");
	font-weight: normal;
	font-size: normal;
}
@font-face {
	font-family: "nature";
	src: url("../fonts/nature.otf") format("opentype");
	font-weight: normal;
	font-size: normal;
}
/* Global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}
/* Base body styles */
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'nature', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  padding-top: 100px;
}

/* ------------------------------ 
Top Bar Navigation (Transparent Scroll Version) 
------------------------------ */ 
.topbar { 
position: fixed; 
top: 0; 
left: 0; 
width: 100%; 
height: 90px; 
display: flex; 
justify-content: space-between; 
align-items: center; 
padding: 0 2rem; 
background-color: rgba(176, 32, 42, 0.5);
transition: background-color 0.4s ease, box-shadow 0.4s ease; 
z-index: 1000; } 
/* When scrolled down */ 
.topbar.scrolled { 
background-color: rgba(176, 32, 42, 0.95); /* semi-transparent red */ 
box-shadow: 0 2px 10px rgba(0,0,0,0.4); } 
.topbar a { 
color: #ffffff; 
text-decoration: none; 
font-weight: 600; 
margin: 0 1.2rem; 
text-transform: uppercase; 
letter-spacing: 1px; 
transition: color 0.3s ease; 
display: inline; } 
.topbar a:hover { 
color: #000000; } 
.topbar img { 
vertical-align: middle; 
margin-right: 0.5rem; }
/* ------------------------------
   Headings
   ------------------------------ */
h2, h3, h4, h5, h6{
  color: var(--heading-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5em;
  text-align: center;
}
h1{
  color: var(--heading-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5em;
  text-align: center;
  font-family: "HEIDH";
}

/* ------------------------------
   Paragraphs and text
   ------------------------------ */
p {
  margin-bottom: 1em;
  color: var(--subtext-color);
  text-align: center;
}

/* ------------------------------
   General Links
   ------------------------------ */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: nature;
}

a:hover {
  color: #ff5555;
}

/* ------------------------------
   Navigation (if used elsewhere)
   ------------------------------ */
nav {
  background-color: #121212;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

nav ul li a {
  color: var(--heading-color);
  font-weight: 400;
  text-transform: uppercase;
}

nav ul li a:hover {
  color: var(--accent-color);
}

/* ------------------------------
   Buttons
   ------------------------------ */
button,
.btn {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover,
.btn:hover {
  background-color: #ff4444;
}

/* ------------------------------
   Container
   ------------------------------ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* ------------------------------
   Footer
   ------------------------------ */
footer {
  background-color: #121212;
  text-align: center;
  color: var(--subtext-color);
  padding: 1.5rem 0;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
}

/* ------------------------------
   Images
   ------------------------------ */
img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ------------------------------
   Sections
   ------------------------------ */
section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}
.topbarheading h1 {
	color: #505050;
    display: inline;
	margin: 0;
	font-family: "HEIDH";
}
.topbarheading h2 {
	color: #d0d0d0;
	font-weight: 400;
	font-size: 1.0rem;
	margin: 0;
	margin-top: 0.2rem;
	font-family: nature;
}
/* ===============================
   Image Slider Section
   =============================== */
.image-slider {
  position: relative;
  width: 100%;
  height: 85vh; /* nearly full screen */
  overflow: hidden;
  border-radius: 0; /* no rounded corners for full-width hero look */
  box-shadow: none;
  margin: 0; /* removes top margin */
}

/* Slides container */
.image-slider .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

/* Each image takes full space */
.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Overlay fade effect */
.image-slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
  pointer-events: none;
}

/* Slider heading (centered overlay text) */
.slider-heading {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 5;
  width: 90%;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.slider-heading h1 {
  font-size: 3rem;
  font-family: "HEIDH", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.slider-heading h3 {
  font-size: 1.5rem;
  font-family: "nature", sans-serif;
  font-weight: 400;
  color: #f0f0f0;
}

.slider-heading h3 {
  font-size: 1.2rem;
  font-family: "nature", sans-serif;
  font-weight: 400;
  color: #f0f0f0;
  margin: 0;
}
.appointment-section {
  text-align: center;
  margin: 3rem auto;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
}

.appointment-section .btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.appointment-section .btn:hover {
  background-color: #ff4444;
}

.appointment-form {
  background-color: #222;
  border-radius: 12px;
  margin-top: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.appointment-form h2 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: "HEIDH";
}

.appointment-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.appointment-form label {
  color: var(--subtext-color);
  font-size: 1rem;
}
.appointment-form-container {
  margin-bottom: 120px; /* same height as footer + a little extra */
}
.appointment-form input,
.appointment-form textarea,
.appointment-form-container input,
.appointment-form-container textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #111;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

/* Focus effect — red outline glow */
.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form-container input:focus,
.appointment-form-container textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color);
}

/* Make textarea resize only vertically, but auto-expand width to parent */
.appointment-form textarea,
.appointment-form-container textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 400px;
  width: 100%;
  max-width: 100%;
}

.appointment-page {
  background-color: #111;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.appointment-fullscreen {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible; /* make content scrollable if it overflows */
  padding: 2rem;
  padding-bottom: 100px; /* same height as footer + some spacing */
}

/* Background image layer */
.appointment-fullscreen::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/images/dragonbackground.png) center center / cover no-repeat;
  filter: blur(8px) brightness(0.6);
  transform: scale(1.05); /* prevents edge blur clipping */
  z-index: 0;
}

/* Form container (stays sharp on top of the blurred image) */
.appointment-form-container {
  position: relative;
  z-index: 1;
  background-color: rgba(34, 34, 34, 0.85);
  border-radius: 15px;
  padding: 2rem 3rem;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  max-width: 600px;
  width: 100%;
  color: white;
  backdrop-filter: blur(4px);
}


.appointment-form-container {
  background-color: #222;
  border-radius: 15px;
  padding: 2rem 3rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
  max-width: 600px;
  width: 100%;
  color: white;
}

.appointment-form-container h1 {
  text-align: center;
  font-family: "HEIDH";
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.appointment-form-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appointment-form-container label {
  color: var(--subtext-color);
}

.appointment-form-container input {
  padding: 0.7rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #111;
  color: #fff;
}

.appointment-form-container input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color);
}
/*
   Custom Scrollbar for Textareas
   =============================== */
.appointment-form textarea::-webkit-scrollbar,
.appointment-form-container textarea::-webkit-scrollbar {
  width: 10px; /* scrollbar width */
}

.appointment-form textarea::-webkit-scrollbar-track,
.appointment-form-container textarea::-webkit-scrollbar-track {
  background: #111; /* dark background for track */
  border-radius: 6px;
}

.appointment-form textarea::-webkit-scrollbar-thumb,
.appointment-form-container textarea::-webkit-scrollbar-thumb {
  background-color: var(--accent-color); /* red accent */
  border-radius: 6px;
  border: 2px solid #111; /* gives a subtle gap effect */
}

/* Hover effect on the scrollbar thumb */
.appointment-form textarea::-webkit-scrollbar-thumb:hover,
.appointment-form-container textarea::-webkit-scrollbar-thumb:hover {
  background-color: #ff4444; /* slightly brighter red when hovered */
}

/* Scrollbar buttons (arrows) */
.appointment-form textarea::-webkit-scrollbar-button,
.appointment-form-container textarea::-webkit-scrollbar-button {
  background-color: var(--accent-color);
  height: 12px;
  border-radius: 2px;
}

/* Optional: Hide scrollbar corner in resizable elements */
.appointment-form textarea::-webkit-scrollbar-corner,
.appointment-form-container textarea::-webkit-scrollbar-corner {
  background: #111;
}
/* ===============================
   File Input Styling
   =============================== */

/* Base container styling (matches text inputs) */
.appointment-form input[type="file"],
.appointment-form-container input[type="file"] {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #111;
  color: #ccc;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Focus state — red glow */
.appointment-form input[type="file"]:focus,
.appointment-form-container input[type="file"]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 5px var(--accent-color);
}

/* Style the actual "Choose File" button */
.appointment-form input[type="file"]::file-selector-button,
.appointment-form-container input[type="file"]::file-selector-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-right: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect for the button */
.appointment-form input[type="file"]::file-selector-button:hover,
.appointment-form-container input[type="file"]::file-selector-button:hover {
  background-color: #ff4444;
}

/* Firefox fallback (uses ::file-upload-button instead) */
.appointment-form input[type="file"]::-moz-file-upload-button,
.appointment-form-container input[type="file"]::-moz-file-upload-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  margin-right: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.appointment-form input[type="file"]::-moz-file-upload-button:hover,
.appointment-form-container input[type="file"]::-moz-file-upload-button:hover {
  background-color: #ff4444;
}
/* ===============================
   Footer Bar
   =============================== */
.footer-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, var(--accent-color), #b0202a);
  color: #fff;
  z-index: 1000;
  padding: 1rem 2rem;
  font-family: 'nature', sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100vw;
  box-sizing: border-box;
}


.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; 
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-content .contact-info {
  font-size: 0.95rem;
  color: #ffffff;
}

.footer-content .social-buttons a {
  margin-left: 1rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-content .social-buttons a:hover {
  transform: scale(1.1);
}

.footer-content .social-buttons img {
  display: block;
  width: 30px;
  height: 30px;
}
body.appointment-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
/* Global scrollbar styling for the entire page */
body::-webkit-scrollbar {
  width: 12px; /* Adjust width as needed */
}

body::-webkit-scrollbar-track {
  background: #111;       /* Dark track */
  border-radius: 6px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--accent-color); /* Red accent */
  border-radius: 6px;
  border: 2px solid #111; /* Creates gap effect */
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #ff4444; /* Brighter on hover */
}

body::-webkit-scrollbar-button {
  display: none;
}

body::-webkit-scrollbar-corner {
  background: #111; /* bottom-right corner */
}
.contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: inline;
}

.contact-info a:hover {
  color: #000000;
}
/* ===============================
   Dropdown Menu in Topbar
   =============================== */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Match button styling to topbar links */
.dropbtn {
  background: none;
  color: #ffffff;
  border: none;
  font-weight: 600;
  margin: 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'nature', sans-serif;
  font-size: inherit;       /* match font size with other links */
  transition: color 0.3s ease;
  padding: 0;               /* match link padding */
}

.dropbtn:hover {
  color: #000000;
}

/* Dropdown Content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  width: 100%;              /* make it exactly as wide as the Gallery button */
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  z-index: 1001;
  border-radius: 0 0 6px 6px; /* rounded bottom only for a cleaner look */
  overflow: hidden;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #ffffff;
  padding: 0.6rem 0;        /* vertical spacing only */
  text-decoration: none;
  display: block;
  text-align: center;       /* align text with button */
  font-family: 'nature', sans-serif;
  font-size: 0.7rem;       /* match font size */
}

.dropdown-content a:hover {
  background-color: #b0202a;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* ===============================
   About Me Section
   =============================== */
.aboutme-section {
  width: 90%;
  max-width: 1200px;
  margin: 3rem auto 6rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.aboutme-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

/* Each box (text and image) */
.aboutme-box {
  flex: 1 1 45%;
  background-color: #222; /* Matches other dark UI sections */
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
  color: var(--subtext-color);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutme-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(230,57,70,0.6);
}

/* Left box (text) */
.aboutme-text h2 {
  font-family: "HEIDH", sans-serif;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.aboutme-text p {
  color: var(--subtext-color);
  font-family: "nature", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
}

/* Right box (image) */
.aboutme-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

/* Responsive layout */
@media (max-width: 900px) {
  .aboutme-container {
    flex-direction: column;
    align-items: center;
  }

  .aboutme-box {
    flex: 1 1 100%;
  }

  .aboutme-text p {
    text-align: center;
  }
}
/* ===============================
   Topbar Heading Fade-In on Scroll
   =============================== */
.topbarheading {
  opacity: 0;                  /* start invisible */
  transition: opacity 0.4s ease;
  text-align: center;
  pointer-events: none;        /* prevents invisible text from interfering */
}

.topbar.scrolled .topbarheading {
  opacity: 1;                  /* fade in when topbar is red */
  pointer-events: auto;
}
.topbar {
  padding: 0 2rem; /* keep default padding */
}

.topbarleft {
  display: flex;
  align-items: center;
}

.topbarleft a.active {
  margin-left: -2rem; /* pulls the logo out to the edge */
}
/* ===============================
   Review Slider Section (Responsive)
   =============================== */
.reviewslider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  overflow: hidden;
  background-color: #111;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  padding: 2rem 0;
}

.review-slides {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%; /* will be updated dynamically via JS */
}

.review-box {
  flex: 0 0 calc(100% / 3); /* exactly 3 per visible row */
  box-sizing: border-box;
  background-color: #222;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  color: #ddd;
  font-family: 'nature', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(230,57,70,0.6);
}

.review-box h3 {
  font-family: "HEIDH", sans-serif;
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.review-box h4 {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.review-box p {
  font-size: 1.3rem;
  color: #ccc;
  line-height: 1.5;
  text-align: left;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

/* Responsive layout */
@media (max-width: 900px) {
  .review-box {
    flex: 0 0 50%; /* 2 per row */
  }
}

@media (max-width: 600px) {
  .review-box {
    flex: 0 0 100%; /* 1 per row */
  }
}
/* Appointment page layout */
.tophalf {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  background: #111;
}

.appointment-options {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.appointment-box {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
  text-align: center;
  color: white;
  width: 280px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appointment-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.appointment-box img {
  margin-bottom: 10px;
}

.appointment-box .btn {
  margin-top: 10px;
  display: inline-block;
}

.bottomhalf {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}

.bottomhalf::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/appointmentbg.png"); /* same image */
  background-size: cover;
  background-position: center;
  filter: blur(10px); /* applies blur directly to the image */
  transform: scale(1.05); /* avoids visible edges after blur */
  z-index: 0;
}

.bottomhalf * {
  position: relative;
  z-index: 1; /* keeps button above the blurred background */
}


.web-appointment {
  text-align: center;
  color: white;
}

.web-appointment h2 {
  margin-bottom: 20px;
}
.appointment-box img {
  filter: invert(22%) sepia(63%) saturate(3470%) hue-rotate(341deg) brightness(106%) contrast(80%);
}
.bottomhalf .btn {
  background-color: #e50914; /* your existing red */
  color: white;
  font-size: 1.0rem;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.4s ease, background-color 0.4s ease; /* smooth fade */
  position: relative;
  z-index: 1;
}

.bottomhalf .btn:hover {
  color: black; /* text fades to black */
  background-color: #ff4d4d; /* optional: slightly lighter red on hover */
}
.tophalf .btn {
  background-color: #e50914; /* your existing red */
  color: white;
  font-size: 1.0rem;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.4s ease, background-color 0.4s ease; /* smooth fade */
  position: relative;
  z-index: 1;
}

.tophalf .btn:hover {
  color: black; /* text fades to black */
  background-color: #ff4d4d; /* optional: slightly lighter red on hover */
}
/* ============================ */
/* Reviews Page Styles           */
/* ============================ */

/* Review Title */
.review-title {
  font-family: "nature";
  text-align: center;
  margin-top: 40px;
  font-size: 2rem;
  color: #fff;
}

/* Review Container (Grid) */
.review-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Review Box */
.review-box {
  flex: 0 0 calc(33.333% - 20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-sizing: border-box;
  color: white;
  backdrop-filter: blur(6px);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.review-box h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: #ff4b4b;
}

.review-box h4 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.review-box p {
  line-height: 1.5;
  font-size: 1rem;
  color: #f2f2f2;
}

/* Responsive Layout */
@media (max-width: 1000px) {
  .review-box {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .review-box {
    flex: 0 0 100%;
  }
}

/* No Reviews Text */
.no-reviews {
  text-align: center;
  color: white;
  font-size: 1.2rem;
  margin-top: 20px;
}
/* ============================ */
/* Review Form Styles           */
/* ============================ */

.review-form-wrapper {
  text-align: center;
  margin: 40px 0;
}

.review-form-container {
  margin-top: 20px;
  display: inline-block;
  text-align: left;
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(6px);
}

.review-form-container label {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-weight: bold;
}

.review-form-container input,
.review-form-container textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

.review-form-container button {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #ff4b4b;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.review-form-container button:hover {
  background: #e03a3a;
}
.bottomspacer {
  padding-bottom: 120px; /* height of footer + extra spacing */
}
/* ===============================
   Review Form Styling (Minimal)
   =============================== */

.review-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  margin: 60px auto 140px auto; /* add bottom space for footer */
  max-width: 700px;
  width: 90%;
  color: white;
}

.review-section h1 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-family: "HEIDH", sans-serif;
  text-align: center;
}

.review-form {
  width: 100%;
  background-color: #111;
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.review-form label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  color: var(--subtext-color);
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 6px var(--accent-color);
}

.review-form textarea {
  resize: vertical;
  min-height: 120px;
}

.review-form button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.4s ease;
  width: 100%;
}

.review-form button:hover {
  background-color: #ff4d4d;
  color: black;
}
/* ===============================
   Reviews Page Layout
   =============================== */

.review-title {
  text-align: center;
  font-size: 2.2rem;
  margin-top: 40px;
  margin-bottom: 30px;
  color: var(--heading-color, #ff0000);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Review grid layout */
.review-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

/* Individual review box */
.review-box {
  background-color: #111;
  border: 1px solid var(--accent-color, #ff0000);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.review-box h3 {
  color: var(--accent-color, #ff0000);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.review-box h4 {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 10px;
  font-weight: normal;
}

.review-box p {
  color: #eee;
  line-height: 1.4;
}

/* ===============================
   Write Review Button + Form
   =============================== */

.review-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto 160px auto; /* bottom spacing for footer */
  width: 100%;
}

.review-form-wrapper .btn {
  background-color: var(--accent-color, #ff0000);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.4s ease;
}

.review-form-wrapper .btn:hover {
  background-color: #ff4d4d;
  color: black;
}

/* ===============================
   Review Form Styling
   =============================== */

.reviews-page .review-form-container {
  margin-top: 25px;
  background-color: #111;
  border: 1px solid var(--accent-color, #ff0000);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  color: white;
}

.reviews-page .review-form-container label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  color: #ccc;
  font-weight: 500;
}

.reviews-page .review-form-container input,
.reviews-page .review-form-container textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid var(--accent-color, #ff0000);
  border-radius: 6px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reviews-page .review-form-container input:focus,
.review-form-container textarea:focus {
  outline: none;
  border-color: #ff4d4d;
  box-shadow: 0 0 6px #ff0000;
}

.reviews-page .review-form-container textarea {
  resize: vertical;
  min-height: 120px;
}

.reviews-page .review-form-container button {
  background-color: var(--accent-color, #ff0000);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.4s ease;
  width: 100%;
}

.review-form-container .button:hover {
  background-color: #ff4d4d;
  color: black;
}

/* ===============================
   Spacing and Footer Adjustments
   =============================== */


.bottomspacer {
  height: 120px; /* ensures form button stays above fixed footer */
}
/* Age Verification Popup */
.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.age-popup-content {
  background-color: #111;
  color: #fff;
  padding: 2rem 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255,0,0,0.5);
}

.age-popup-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.age-popup-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.age-popup-content button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.age-popup-content button:hover {
  background-color: var(--hover-color);
}

/* =============================== */
/* Review Slider (Main Page Only)  */
/* =============================== */

.main-page .reviewslider {
  width: 100%;
  background: #111;
  text-align: center;
  overflow: hidden;
}

.main-page .reviewslider h2 {
  font-size: 2rem;
  color: var(--accent-color, #e60000);
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.main-page .review-slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.main-page .review-box {
  flex: 0 0 calc((100% - 40px) / 3); /* subtract total gap space (2 gaps of 20px for 3 boxes) */
  box-sizing: border-box;
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 12px;
  color: #f0f0f0;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-page .review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

.main-page .review-box h3 {
  font-size: 1.2rem;
  color: var(--accent-color, #e60000);
  margin-bottom: 5px;
}

.main-page .review-box h4 {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 10px;
}

.main-page .review-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
}

/* No reviews fallback */
.main-page .noreviews {
  color: #888;
  font-size: 1rem;
  text-align: center;
  margin-top: 20px;
}

/* Responsive layout */
@media (max-width: 1024px) {
  .main-page .review-box {
    flex: 0 0 calc(100% / 2); /* 2 visible on tablets */
  }
}

@media (max-width: 700px) {
  .main-page .review-box {
    flex: 0 0 100%; /* 1 visible on mobile */
  }
}
/* -------------------------
   Video Lightbox Styling
-------------------------- */
#videolightbox {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

/* Plyr video wrapper */
#plyr-container .plyr {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
    outline: none;
    --plyr-color-main: var(--accent-color); /* Red control buttons */
}

/* Close button */
#videolightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s;
}
#videolightbox-close:hover { color: #ff6666; }

/* Navigation arrows */
#videolightbox-prev,
#videolightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: bold;
    color: var(--accent-color);
    cursor: pointer;
    padding: 10px;
    user-select: none;
    z-index: 10000;
    transition: color 0.2s;
}
#videolightbox-prev:hover,
#videolightbox-next:hover { color: #ff6666; }
#videolightbox-prev { left: 20px; }
#videolightbox-next { right: 20px; }

/* Video thumbnails in gallery */
.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.video-gallery .video-thumbnail {
    cursor: pointer;
}
.video-gallery .video-thumb {
    max-width: 200px;
    max-height: 120px;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-gallery .video-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Ensure Plyr controls inherit accent-color */
#plyr-container .plyr {
    --plyr-color-main: var(--accent-color);
}

/* === IMAGE GALLERY COLUMNS === */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px auto;
  max-width: 1600px;
  padding: 0 20px;
  align-items: start;
}

.category-column {
  background-color: #111;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  text-align: center;
}

/* Buttons */
.category-button {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 0;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 17px;
  transition: background-color 0.2s;
}
.category-button:hover { background-color: #555; }

/* Collapsible content
   NOTE: no display:none here; we animate with max-height */
.category-content {
  overflow: hidden;
  max-height: 0;              /* closed by default */
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-top: 10px;
  text-align: center;
  transition: max-height 0.35s ease;
}
.category-content.open {
  /* max-height is set inline via JS to exact scrollHeight */
}

/* Gallery items inside the panel */
.gallery-item {
  display: block;
  margin: 8px auto;
  width: 100%;
  max-width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;        /* keep aspect ratio inside column */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  transition: transform 0.2s ease-in-out;
}
.gallery-item img:hover { transform: scale(1.05); }

/* Empty message */
.no-images {
  color: #aaa;
  font-style: italic;
  padding: 12px;
}

/* === LIGHTBOX (unchanged) === */
#lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
}
#lightbox-close, #lightbox-prev, #lightbox-next {
  position: absolute;
  color: var(--accent-color);
  font-size: 32px;
  cursor: pointer;
  user-select: none;
}
#lightbox-close { top: 20px; right: 35px; }
#lightbox-prev  { left: 40px; top: 50%; transform: translateY(-50%); }
#lightbox-next  { right: 40px; top: 50%; transform: translateY(-50%); }
.dropbtn:hover {
	background-color: transparent;
}
.main-page h1, h2, h3 {
	text-shadow: var(--accent-color);
}
/* ===============================
   RECREATION PAGE LAYOUT
================================*/

.recreation-grid {
    max-width: 1400px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.recreation-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.rec-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 3px 8px rgba(0,0,0,0.5);
    transition: transform 0.2s ease-in-out;
}

.rec-image img:hover {
    transform: scale(1.02);
}

/* Responsive: stack vertically on small screens */
@media (max-width: 800px) {
    .recreation-pair {
        grid-template-columns: 1fr;
    }
}
.gallery-title {
	font-family: "nature";
}
.appointment-page .btn {
    display: block;        /* required for centering */
    margin: 20px auto 0;   /* centers horizontally */
    text-align: center;    /* ensures the text stays centered */
}
.main-page p {
	font-size: 1.3rem;
}
/* ===========================================================
   GIVEAWAY PAGE — FULL STYLING
   =========================================================== */

/* Page layout */
.giveaway-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left rules column — SMALLER */
.giveaway-rules {
    flex: 0 0 32%; /* Adjust to change width */
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* Winner box inside rules */
.giveaway-winner-box {
    margin-top: 20px;
    padding: 15px;
    background: #111;
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
    color: #fff;
}

/* Form column — LARGER */
.giveaway-form-container {
    flex: 1;
    max-width: 700px;
}

/* Countdown timer */
.giveaway-timer {
    font-size: 24px;
    margin: 10px 0 25px 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Form layout */
.giveaway-form label {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

/* Shared input styling (matches appointment form) */
.giveaway-page .giveaway-form input[type="text"],
.giveaway-page .giveaway-form input[type="file"],
.giveaway-page .giveaway-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    background-color: #111;
    color: #fff;
    font-size: 16px;
}

/* Fix file input styling */
.giveaway-page .giveaway-form input[type="file"] {
    padding: 10px;
    cursor: pointer;
}

/* Input focus effects */
.giveaway-page .giveaway-form input[type="text"]:focus,
.giveaway-page .giveaway-form input[type="file"]:focus,
.giveaway-page .giveaway-form textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 6px #ff0000;
}

/* Submit button styling */
.giveaway-page .giveaway-form .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin-top: 12px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.giveaway-page .giveaway-form .btn:hover {
    background-color: #ff3333;
}

/* Social icons at bottom of rules */
.rules-social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Make icons red */
.rules-social-links img {
    filter: invert(22%) sepia(63%) saturate(3470%) hue-rotate(341deg) brightness(106%) contrast(80%);
}

/* Confirmation box shared styling */
.confirmation-box {
    text-align: center;
    padding: 30px;
    background: #1a1a1a;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
/* Hide the real input */
.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-wrapper {
    margin-bottom: 20px;
}

/* Custom red file button */
.file-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.file-btn:hover {
    background-color: #ff3333;
}

/* File name text */
.file-name {
    color: #ccc;
    font-size: 14px;
}
/* Footer layout improvements */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Group social buttons and language switcher together */
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher a {
    color: white;
    text-decoration: none;
}

.lang-switcher a:hover {
    text-decoration: underline;
}
.giveaway-timer {
	display: flex;
	align-items: center;
	margin: auto;
	justify-content: center;
}
/* -------------------------------------------
   FLATPICKR — Dragon Tattoo Theme (Accent + Black)
   Uses CSS Variable: --accent-color
-------------------------------------------- */

/* Calendar container + all its children */
body .flatpickr-calendar,
body .flatpickr-calendar * {
    background-color: #1b1b1b !important;   /* dark background */
    color: white !important;
    border-color: var(--accent-color) !important;
}

/* Month header */
body .flatpickr-months {
    background: #1b1b1b !important;
    border-bottom: 1px solid var(--accent-color) !important;
}

body .flatpickr-current-month input.cur-year,
body .flatpickr-current-month .flatpickr-monthDropdown-months {
    color: var(--accent-color) !important;
}

/* Weekday labels (Mon–Sun) */
body .flatpickr-weekday {
    color: var(--accent-color) !important;
    background: #262626 !important;
}

/* Day cells (default / not selected) */
body .flatpickr-day {
    background: #262626 !important; /* grey */
    color: white !important;
    border-radius: 4px !important;
}

/* Hover effect */
body .flatpickr-day:hover {
    background: var(--accent-color) !important;
    color: black !important; /* readable on red/accent */
}

/* Selected date */
body .flatpickr-day.selected,
body .flatpickr-day.selected:hover,
body .flatpickr-day.selected:focus {
    background: var(--accent-color) !important;
    color: black !important;
    border: 1px solid var(--accent-color) !important;
}

/* Today (outline only) */
body .flatpickr-day.today {
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
}

/* Month navigation arrows */
body .flatpickr-prev-month svg path,
body .flatpickr-next-month svg path {
    fill: var(--accent-color) !important;
}

body .flatpickr-prev-month:hover svg path,
body .flatpickr-next-month:hover svg path {
    fill: #ff4d4d !important; /* lighter accent, optional */
}

/* -------------------------------------------
   INPUT STYLING — applies to the visible input
   Flatpickr replaces your input with .flatpickr-input[readonly]
-------------------------------------------- */

.flatpickr-input[readonly] {
    background: #1b1b1b !important;
    color: white !important;
    border: 1px solid var(--accent-color) !important;
    border-radius: 4px !important;
    padding: 10px !important;
}

.flatpickr-input[readonly]:focus {
    outline: none !important;
    box-shadow: 0 0 5px var(--accent-color) !important;
}
/* -------------------------------------------
   Dragon Backgrounds
-------------------------------------------- */
body.gallery-page {
    position: relative;
    overflow-x: hidden;
    color: #fff;
}
body.gallery-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../images/dragonbackground.png') no-repeat center center / cover;
    filter: blur(8px); /* adjust blur amount here */
    transform: scale(1.05); /* prevents edge clipping */
    z-index: -1; /* keep it behind all content */
}
body.reviews-page {
    position: relative;
    overflow-x: hidden;
    color: #fff;
	padding-top: 100px;
}
body.reviews-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../images/dragonbackground.png') no-repeat center center / cover;
    filter: blur(8px); /* adjust blur amount here */
    transform: scale(1.05); /* prevents edge clipping */
    z-index: -1; /* keep it behind all content */
}
body.giveaway-page {
    position: relative;
    overflow-x: hidden;
    color: #fff;
	padding-top: 100px;
}
body.giveaway-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../images/dragonbackground.png') no-repeat center center / cover;
    filter: blur(8px); /* adjust blur amount here */
    transform: scale(1.05); /* prevents edge clipping */
    z-index: -1; /* keep it behind all content */
}
/* ============================================
   DEFAULT DESKTOP — mobile elements hidden
   ============================================ */
.menu-toggle,
.mobile-menu,
.mobile-lang {
    display: none !important;     /* hide hamburger + mobile menu */
}

.desktop-nav,
.desktop-lang,
.topbarheading {
    display: block !important;    /* ensure desktop nav shows */
}

#topbar-logo img {
    width: 70px;
    height: auto;
}
/* =============================================================
   MOBILE LAYOUT — MAX WIDTH 768px
   ============================================================= */
@media (max-width: 768px) {

  /* Page spacing for fixed topbar */
  body {
    padding-top: 70px;
	padding-bottom: 30px;
  }

  /* -------------------------------------------------------------
     TOPBAR: Logo Left + Hamburger Right
     ------------------------------------------------------------- */
  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 1rem;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--accent-color, #b30000);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
  }

  /* Hide desktop elements */
  .desktop-nav,
  .desktop-lang,
  .topbarheading {
    display: none !important;
  }

  /* Disable flexbox wrapper around logo */
  .topbarleft {
    display: contents !important;
  }

  /* Logo on mobile */
  #topbar-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-left: 1rem; /* keep away from left edge */
  }

  /* -------------------------------------------------------------
     Hamburger Button (ensure it overrides desktop)
     ------------------------------------------------------------- */
  .menu-toggle {
    display: block !important;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: var(--accent-color, #b30000);
    cursor: pointer;
    z-index: 2200;
  }

  .menu-toggle.active {
    color: #fff;
  }

  /* -------------------------------------------------------------
     MOBILE SLIDE-IN MENU
     ------------------------------------------------------------- */
  .mobile-menu {
    display: flex !important;
    position: fixed;
    top: 60px;
    right: -100%;
    width: 70%;
    height: calc(100vh - 60px);
    background: rgba(27, 27, 27, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-end;
    transition: right 0.3s ease-in-out;
    box-shadow: -4px 0 10px rgba(0,0,0,0.5);
    z-index: 2100;
  }

  .mobile-menu.open {
    right: 0;
  }

  .mobile-menu a {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.3rem 0;
  }

  .mobile-menu a:hover {
    color: var(--accent-color, #b30000);
  }

  .mobile-lang {
    display: block !important;
    margin-top: auto;
    padding-top: 1rem;
	padding-bottom: 2.5rem;
    width: 100%;
    text-align: right;
    border-top: 1px solid var(--accent-color, #b30000);
  }
  /* Hamburger default (closed) */
	.menu-toggle {
		background: transparent !important;   /* always transparent when closed */
		padding: 4px 8px;
		border-radius: 6px;                  /* optional rounded edges */
	}

	/* Hamburger when OPEN */
	.menu-toggle.active {
		background: var(--accent-color, #b30000) !important;
		color: #fff !important;
	}
	/* Prevent any image from being visible outside the viewport */
	.image-slider {
		overflow: hidden !important;     /* hides images outside boundary */
		position: relative;
	}

	/* Ensure the row of images behaves correctly */
	.image-slider .slides {
		display: flex;
		flex-wrap: nowrap;
		width: 100%;
	}

	/* Each image must take exactly one screen width */
	.image-slider .slides img {
		width: 100vw !important;         /* full viewport width */
		height: 100%;
		object-fit: cover;
		flex-shrink: 0;                  /* prevents squeezing */
		margin: 0;                       /* no unintended gaps */
		display: block;
		max-width: none;                 /* prevents browser auto-scaling */
	}
	.reviewslider {
		overflow: hidden;                 /* Important: hides upcoming cards */
		width: 100%;
	  }

	  .review-slides {
		display: flex !important;
		flex-direction: row;
		width: 100%;
		transition: transform 0.6s ease-in-out !important;
	  }

	  .review-box {
		flex: 0 0 100% !important;        /* each review = 100% width */
		max-width: 100% !important;
		padding: 1rem;
		box-sizing: border-box;
		margin: 0 auto;                   /* centers the card */
	  }
}
/* Base review track (both desktop + mobile) */
.reviewslider {
    overflow: hidden;
    width: 100%;
}

.review-slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

/* Cards – JS will set the flex-basis / max-width */
.review-box {
    box-sizing: border-box;
    margin: 0 auto;
}

/* Optional: mobile-specific spacing */
@media (max-width: 768px) {

    .review-box h3 {
        font-size: 1.1rem;
    }

    .review-box p {
        font-size: 0.95rem;
    }
	.giveaway-layout {
		display: block;
	}
	.giveaway-rules, .giveaway-form-container {
		margin: 0.5rem;
	}
	.age-popup-content {
		margin: 0.5rem;
	}
	.footer {
		position: relative;
	}
}
.review-box {
    box-sizing: border-box;
    padding: 0.5rem;        /* inside the card, safe */
}
.review-spacer {
    display: block;
}
.giveaway-rules {
	padding: 25px;
}

/* === ADMIN PANEL SUPPORT === */

.admin-centered-box,
.admin-container {
    color: white;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    border: 1px solid #444;
    padding: 10px;
    background: #1c1c1c;
}

.admin-table th {
    background: #272727;
}

.delete-link {
    color: #ff6b6b;
    font-weight: bold;
    text-decoration: none;
}

.delete-link:hover {
    color: red;
}
.admin-tools a:hover {
	color: black;
}
