/* Lotus Tattoo Studio - Enhanced Theme Styles */

:root {
  --primary-color: {{ primary_color }};
  --secondary-color: {{ secondary_color }};
  --background-color: {{ background_color }};
  --text-color: {{ text_color }};
  --accent-color: {{ accent_color }};
  --border-color: #e0e0e0;
  --menu-background: rgba(0, 0, 0, 0.8);
  --button-background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --confirm-button-background: linear-gradient(135deg, #28a745 0%, #218838 100%);
  --confirm-button-text-color: #fff;
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

/* Layout Container */
.layout-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* Header Styles */
.site-header {
  position: relative;
  background: var(--menu-background);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

header.front-page.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(var(--background-color), 0.6);
}

.site-header.scrolled {
  background: var(--menu-background);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.header-container {
  width: 100%;
  max-width: none;
  padding: 0;
}


.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 0 0;
}

.header-content > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-logo {
  display: block;
  margin-bottom: 0.5rem;
}

.site-logo .logo {
  width: 100px;
  height: auto;
}

.site-name a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #111;
}


/* Navigation Styles */
.main-navigation {
  width: 100%;
  padding: 0.5rem 2rem;
  line-height: 0.5;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.nav-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo Styles */
.site-logo {
  text-align: center;
  max-width: 150px;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
}

.site-name {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

/* Menu Styles */
.menu-left ul,
.menu-right {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.menu-left a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  padding: 0.2rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-left a:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* .menu-left a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
} */

/* .menu-left a:hover::before {
  left: 100%;
} */

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a374d2 0%, #97a9f8 100%);
  box-shadow: 0 0 5px rgba(55, 55, 58, 0.5);
  color: white;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 65vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-section div {
  width: 100%;
}

.hero-video,
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-default-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #34495e 100%);
  z-index: 1;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slideshow .slide:first-child {
  opacity: 1;
}

.hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

/* Block Artist Section */
.block-artist-list {
  /* justify-content: space-between; /* distributes items evenly */
  /* justify-content: space-around; */
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch; /* important for equal height */
}

/* .block-artist-item { */
  /* flex: 1 1 200px; /* grow, shrink, base width */
  /* box-sizing: border-box; */
  /* max-width: 100%; */
/*  flex: 1 1 calc(33.333% - 1rem); /* adjust with gap */
/* } */

.block-artist-item {
  flex: 1 1 calc(33.333% - 1rem); /* 3 per row with gap */
  display: flex;
  /* flex-wrap: wrap; */
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  box-sizing: border-box;
}

.block-artist-item:first-child {
  margin-left: 0;
  border-right: 1px solid #ccc;
  padding-left: 0;
}
.block-artist-item:last-child {
  margin-right: 0;
  padding-right: 0;
}

.block-artist-item .views-field-body {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Photo (left side) */
.block-artist-item .views-field-field-artist-photo {
  flex: 0 0 150px; /* fixed width photo */
}

/* Content wrapper (right side) */
.block-artist-item .artist-content-wrapper {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title and Body */
.block-artist-item .views-field-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.block-artist-item .views-field-body {
  flex-grow: 1;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  position: relative;
}

.scroll-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: scrollArrow 2s infinite;
}

.scroll-arrow span:nth-child(2) {
  top: 16px;
  animation-delay: -0.2s;
}

.scroll-arrow span:nth-child(3) {
  top: 32px;
  animation-delay: -0.4s;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Slideshow Animation */
@keyframes slideshow {
  0% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
  95% { opacity: 0; }
  100% { opacity: 1; }
}

/* Main Content */
.main-content {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 10;
}

.layout-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4ren;
  background: #fafafa;
}

.content-area {
  padding: 3rem;
  margin-bottom: 3rem;
}

/* Artists Section */
.artists-section {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.artists-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.artists-title {
  text-align: center;
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
}

.artists-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.artist-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.artist-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.1);
}

.artist-info {
  padding: 2rem;
  text-align: center;
}

.artist-name {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.artist-specialty {
  color: #6c757d;
  margin-bottom: 1rem;
  font-style: italic;
}

.artist-bio {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Reviews Section */
.reviews-section {
  width: 100%;
  background: #2c3e50;
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.block-customer-review {
    margin: 3rem 0;
    padding: 2rem 3rem;
    background-color: #fefefe;
    text-align: center;
    font-style: italic;
}


.block-customer-review .views-field-body .field-content p::before {
  content: "“"; /* or "❝" for a more decorative one */
  font-size: 3rem;
  line-height: 0.5;
  color: #999; /* or your accent color */
  display: inline-block;
  vertical-align: top;
  margin-right: 0.3rem;
  font-family: serif;
  font-weight: bold;
  opacity: 0.6;
  position: relative;
  top: 0.1rem;
}

.block-customer-review .views-field-body .field-content p {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.reviews-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.reviews-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.review-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.review-author {
  font-weight: bold;
  font-size: 1.1rem;
}

.review-rating {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Map Section */
.map-section {
  width: 100%;
  background: #f8f9fa;
  padding: 5rem 0;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.map-title {
  text-align: center;
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 3rem;
  position: relative;
}

.map-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.map-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 400px;
  position: relative;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

.focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
  width: auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 999999;
  color: #fff;
  background: #000;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
}

.skip-link:focus {
  top: 6px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-container {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    padding: 1rem;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-left,
  .nav-right {
    flex: none;
  }
  
  .menu-left ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .artists-title,
  .reviews-title,
  .map-title {
    font-size: 2rem;
  }
  
  .layout-content {
    padding: 2rem 1rem;
  }
  
  .content-area {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .site-name {
    font-size: 1.5rem;
  }
  
  .logo-image {
    height: 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .artists-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    padding: 2rem;
  }
}

.lotus-user-profile {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem;
}

.lotus-user-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.lotus-user-avatar img {
  border-radius: 999px;
  display: block;
}

.lotus-user-fields {
  margin: 0;
}

.lotus-user-field {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.lotus-user-label {
  min-width: 130px;
  font-weight: 600;
}

.lotus-user-value {
  flex: 1;
}

.webform-signature-confirm {
    right: 5px !important;
    bottom: 5px !important;
    top: auto !important;
    background: var(--confirm-button-background);
    color: var(--confirm-button-text-color);
}

.webform-type-textfield .floating-label-wrapper .floating-label-wrapper input,
.form-item .floating-label-wrapper .floating-label-wrapper input {
    max-width: 90%;
    font-size: 1rem;
    padding: 0.25rem 0.35rem;
}

.form-item .floating-label-wrapper .floating-label-wrapper select {
  font-size: 1rem;
  padding: 0.10rem 0.50rem;
}

#edit-personal-information .form-item, .page-3 .form-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.webform-signature-pad input, .webform-signature-pad button {
  padding: 0.25rem 0.75rem;
}

.form-actions, .webform-button--submit, .webform-button--previous, .webform-button--next {
  padding: 0.25rem 1rem;
}

@media (max-width: 768px) {
  .form-actions input {
    font-size: 1rem;
  }
}


.page-3 #edit-risks .page .section .layoutArea{
  gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    padding: 0.5rem;
}

#edit-declaration-consent p, #edit-customer-aware p {
    margin-bottom: 1rem;
}

/**
  * Declaration of consent styles
  */

  .form-item-appointment-id {
    display: none;
  }