:root {
  --bg-dark: #0d0d0d;
  --text-light: #f2f2f2;
  --accent: #c29f68;
  --accent-light: #e3cba6;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: padding var(--transition);
  padding: 1.5rem 0;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}
.logo {
  font-family: "Roboto Slab", serif;
  font-size: 2rem;
  color: var(--accent);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-light);
  transition: transform var(--transition);
}
.site-nav ul {
  display: flex;
  gap: 2rem;
  justify-self: end;
  list-style: none;
}
.site-nav li a {
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition);
}
.site-nav li a:hover,
.site-nav .active {
  color: var(--accent);
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.loader-logo {
  width: 50px;
  animation: spin 1s linear infinite;
}
.loader-text {
  margin-top: 0.75rem;
  font-family: "Roboto Slab", serif;
  color: var(--accent-light);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cookies-banner {
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  width: 220px;
  height: 220px;
  padding: 1rem;
  border-radius: 8px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: opacity var(--transition), visibility var(--transition);
}
.cookies-banner p {
  font-size: 0.9rem;
  line-height: 1.4;
  flex-grow: 1;
}
.cookies-banner {
  position: fixed;
}
.cookies-button {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  width: 100%;
  padding: 0.6rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 1rem;
}
.cookies-button:hover {
  background: var(--accent-light);
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: var(--bg-dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
}
.scroll-to-top.visible {
  opacity: 1;
}

.site-footer {
  background: #111;
  padding: 3rem 1rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-logo img {
  max-width: 100px;
  margin-bottom: 1rem;
}
.footer-logo p {
  color: var(--accent-light);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-copy {
  grid-column: 1/ -1;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .site-nav ul {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    background: var(--bg-dark);
    width: 70%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
  }
  .site-nav.open {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  .cookies-banner {
    bottom: 1rem;
    left: 1rem;
    flex-direction: column;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
   justify-content: center;
  
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-slide__content {
  position: relative;
  max-width: var(--max-width);
  color: var(--text-light);
  text-align: left;
  text-align: center;
}
.hero-slide__content h1 {
  font-family: "Roboto Slab", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.hero-slide__content p {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  max-width: 500px;
  line-height: 1.5;
  
}

.splide__arrow {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  transition: background var(--transition);
}
.splide__arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.splide__pagination {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.splide__pagination__page {
  background: var(--accent-light);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
}
.splide__pagination__page.is-active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-slide__content h1 {
    font-size: 2.25rem;
  }
  .hero-slide__content p {
    font-size: 1rem;
  }
}

.about-section {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  color: var(--text-light);
}
.about-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-section__title {
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  position: relative;
}
.about-section__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.about-section__text p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-section__cta {
  display: inline-block;
  margin-top: 1rem;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.about-section__cta:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.about-section__image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.about-section__image img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  filter: brightness(0.8);
  transition: transform var(--transition);
}
.about-section__image:hover img {
  transform: scale(1.03);
}
.about-decorative-line {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 150%;
  height: 4px;
  background: var(--accent);
  transform: rotate(3deg);
}

@media (max-width: 992px) {
  .about-section__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-section__image {
    margin-top: 2rem;
  }
  .about-decorative-line {
    display: none;
  }
}

.artists-section {
  padding: 6rem 1rem;
  background: #111;
  color: #f2f2f2;
}
.artists-section__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 3rem;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.artist-card {
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
}
.artist-card__photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--accent);
}
.artist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.artist-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-light);
}
.artist-card__specialties {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.artist-card__specialties li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .artists-section__title {
    font-size: 2rem;
  }
  .artist-card {
    padding: 1.5rem 1rem;
  }
  .artist-card__name {
    font-size: 1.25rem;
  }
  .artist-card__photo {
    width: 100px;
    height: 100px;
  }
}

.portfolio-section {
  padding: 6rem 1rem;
  background: #111;
  color: #f2f2f2;
}
.portfolio-section__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.75rem;
  color: var(--accent);
  margin-bottom: 3rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform var(--transition), filter var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
}
.portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: transform var(--transition);
  text-align: center;
}
.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}
.portfolio-overlay span {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  color: var(--accent-light);
}

@media (max-width: 768px) {
  .portfolio-section__title {
    font-size: 2rem;
  }
  .portfolio-overlay {
    padding: 0.75rem;
  }
  .portfolio-overlay span {
    font-size: 1rem;
  }
}

.rules-section {
  padding: 6rem 1rem;
  background: #1a1a1a;
  color: #f2f2f2;
}
.rules-section__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 3rem;
  position: relative;
}
.rules-section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.rules-block {
  background: #111;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rules-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.rules-block__heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rules-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

.rules-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.25rem;
  color: var(--accent);
}
.rules-list li:nth-child(odd)::before {
  color: var(--accent-light);
}
.rules-list li:nth-child(3)::before {
  content: "✔";
  color: #6abf69;
}
.rules-list li:nth-child(4)::before {
  content: "✖";
  color: #e76f51;
}

@media (max-width: 768px) {
  .rules-section__title {
    font-size: 2rem;
  }
  .rules-block__heading {
    font-size: 1.25rem;
  }
}

.full-image-section {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("../assets/images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.full-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
}
.full-image__content {
  position: relative;
  text-align: center;
  color: #f2f2f2;
  z-index: 1;
}
.full-image__title {
  font-family: "Roboto Slab", serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeUp 1s ease both;
}
.full-image__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  animation: fadeUp 1s ease 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .full-image-section {
    height: 40vh;
  }
  .full-image__title {
    font-size: 2rem;
  }
  .full-image__subtitle {
    font-size: 1rem;
  }
}

/* Aftercare Section */
.aftercare-section {
  padding: 6rem 1rem;
  background: #111;
  color: #f2f2f2;
}
.aftercare-section__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 3rem;
  position: relative;
}
.aftercare-section__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.aftercare-card {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.aftercare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}
.aftercare-card__heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
  position: relative;
}
.aftercare-card__heading::before {
  content: "✧";
  position: absolute;
  left: -1.5rem;
  color: var(--accent);
  font-size: 1.25rem;
  top: 0;
}

.aftercare-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.aftercare-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}
.aftercare-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .aftercare-section__title {
    font-size: 2rem;
  }
  .aftercare-card__heading {
    font-size: 1.25rem;
  }
  .aftercare-list li {
    padding-left: 2.5rem;
  }
  .aftercare-list li::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.9rem;
  }
}

.contact-section {
  padding: 6rem 1rem;
  background: #1a1a1a;
  color: #f2f2f2;
}
.contact-section__title {
  text-align: center;
  font-family: "Roboto Slab", serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 3rem;
  position: relative;
}
.contact-section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-light);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-item {
  background: #111;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
}
.contact-item__heading {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.contact-item p,
.contact-item a {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  transition: color var(--transition);
}
.contact-item a:hover {
  color: var(--accent);
}
.contact-item__note {
  margin-top: 1rem;
  font-style: italic;
  opacity: 0.8;
}

.contact-item--socials .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-item--socials .social-links a img {
  width: 32px;
  height: 32px;
  filter: invert(100%);
  transition: filter var(--transition), transform var(--transition);
}
.contact-item--socials .social-links a:hover img {
  filter: invert(65%) sepia(70%) hue-rotate(10deg) brightness(1.2);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .contact-section__title {
    font-size: 2rem;
  }
  .contact-item__heading {
    font-size: 1.25rem;
  }
}

.title_background {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(26,26,26,0.8));
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.title_background::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 2px;
  background: var(--accent-light);
  transform: rotate(3deg);
  opacity: 0.5;
}
.title_background .title {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.text_background {
  background: #111;
  padding: 3rem 1rem;
}
.text_background .text {
  max-width: var(--max-width);
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  position: relative;
}
.text_background .text::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .title_background {
    padding: 3rem 1rem;
  }
  .title_background .title {
    font-size: 2rem;
  }
  .text_background {
    padding: 2rem 1rem;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}