@font-face {
  font-family: 'Sk-Modernist';
  src: url('fonts/Sk-Modernist-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Sk-Modernist';
  src: url('fonts/Sk-Modernist-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sk-Modernist', sans-serif;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

body {
  font-size: 0.9em;
  font-weight: 400;
  background-color: #000;
}

:root {
  --bg-color: #0d0d0d;
  --accent-color: #cc292c;
  --text-light: #fff;
  --text-muted: #aaa;
}

/* HEADER */
.site-header {
  background: #000;
  color: var(--text-light);
  padding: 16px 28px;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  max-height: 64px;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  position: relative;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-links a::before {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}
.nav-links a:hover::before {
  width: calc(100% - 24px);
}
.nav-links a:hover {
  color: var(--accent-color);
}

/* HAMBURGER MENU - MOBILE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: 20px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: 0.3s;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 16px;
    background: #111;
    width: 240px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 2000;
  }
  .menu-open .nav-links {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links a {
    padding: 12px 0;
  }
}


}


.slider-section {
  position: relative;
  width: 100%;
  margin: 0;
  margin-bottom: 100px;
  padding: 0;
  overflow: hidden;
}

.slider-main .slide-item img {
  width: 100%;
  max-height: 800px;
  object-fit: cover;
  display: block;
}

.slider-progress-bar {
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}


.slider-progress {
  height: 100%;
  width: 0%;
  background: #ffcc00;
}


section {
  padding: 0 28px;
  width: 100%;
}

.booking-section {
background-color: #E0E0E0;
}

img:hover,
video:hover {
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: radial-gradient(circle at center, #e3e3e3 0%, #ccc 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sculpture-container {
  perspective: 1200px;
}

.sculpture {
  width: 300px;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}

/* Artists */
.artists-section {
  background-color: #000;
  min-width: 100%;
  margin: auto;
}

.artists-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 50px;
}

.artists-header h1 {
  font-size: 48px;
  color: #fff;
}

.artists-header sup {
  font-size: 16px;
}

.view-all {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.artist-card {
  position: relative;
  background-color: #111;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.artist-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.artist-card .info {
  color: #fff;
  flex-grow: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.artist-card .info p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.bio-btn {
  display: inline-block;
  color: #fff;
  border: 1px solid #555;
  padding: 10px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.3s;
  margin-top: auto;
}

.bio-btn:hover {
  background-color: #fff;
  color: #000;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ccc;
  color: #000;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

.social {
  position: absolute;
  top: 40px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.social a {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  text-decoration: none;
  border-radius: 2px;
}

/* Instagram */
.instagram-section {
  background-color: #000;
  padding: 60px 40px;
}

.instagram-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  word-break: break-word;
}

.instagram-header h2 {
  font-size: 64px;
  color: #fff;
  letter-spacing: 1px;
}

.instagram-header a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.insta-photo img,
.insta-photo video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  aspect-ratio: 366/426;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  overflow: visible;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
}

.whatsapp-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background-color: #111;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  visibility: visible;
  opacity: 1;
}



/* Blog */
.blog-section {
  background-color: #000;
  color: #fff;
  padding: 80px 40px;
}

.blog-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(204, 41, 44, 0.2);
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 20px !important;
  }
  
  .blog-grid-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .blog-header-section h2 {
    font-size: 28px !important;
  }
}

.wrapper-nr {
  margin: auto;
}

.articles_flex_column {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.headline_sticky {
  flex: 0 0 30%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.art_sticky h2 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
}

.button_wrap .button {
  display: inline-block;
  text-decoration: none;
  color: #f1f1f1;
  border: 1px solid #f1f1f1;
  padding: 10px 16px;
  border-radius: 3px;
  transition: 0.3s;
}

.button:hover {
  background-color: #fff;
  color: #000;
}

.arrow_button img {
  width: 14px;
  height: 14px;
}

.articles_column_list {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.article_on_home,
.article_cover img {
  width: 100%;
  max-width: 556px;
  height: auto;
}

.article_content {
  padding: 20px;
}

.tagline {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.topic_nd_date {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #aaa;
}

.article_headline .blog-headling {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

/* Reviews */
.reviews-section {
  background-color: #e3e3e3;
  padding: 90px 40px;
  overflow: hidden;
  min-height: 300px;
}

.reviews-section h1 {
  font-size: 3.5em;
  margin-bottom: 40px;
  color: #111;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.review {
  flex: 0 0 auto;
  width: 400px;
  margin-right: 60px;
}

.review p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #000;
}

.review span {
  font-size: 13px;
  color: #333;
}

.review a {
  color: #000;
  text-decoration: underline;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(227, 227, 227, 1), rgba(227, 227, 227, 0));
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(227, 227, 227, 1), rgba(227, 227, 227, 0));
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e0e0e0;
  color: #000;
  font-size: 55px;
  letter-spacing: -0.05em;
  line-height: 0.6;
  font-weight: 400;
  text-decoration: none;
  border-top: 1px solid #aaa;
  transition: background 0.3s, color 0.3s;
}

.booking-header h1 {
  padding: 40px;
  margin: 0;
}

.booking-header .arrow-link {
  font-size: 40px;
  padding: 40px;
  border-left: 1px solid #ccc;
  transition: background 0.3s, color 0.3s;
}

.booking-header:hover .arrow-link {
  background: #fff;
  filter: invert(100%);
}

.studio-info {
  width: 35%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.studio-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.studio-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.map-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border: 1px solid white;
  color: white;
  width: 220px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.map-button img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: filter 0.3s;
}

.map-button:hover {
  background: #fff;
  color: #000;
}

.map-button:hover img {
  filter: invert(100%);
}

.footer-map-wrapper {
  display: flex;
  flex-direction: row;
  height: 100vh;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.map-embed {
  width: 65%;
  height: 100%;
}

.dark-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) brightness(0.4) contrast(1.2);
  border-radius: 6px;
}

.footer-full {
  background: #000;
  color: #fff;
  padding: 60px 40px 30px;
}

.footer-upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  color: #aaa;
  font-size: 13px;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column input {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  margin-bottom: 10px;
}

.footer-column button {
  width: 100%;
  padding: 12px;
  background: #f2f2f2;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid #333;
  padding-top: 40px;
  margin-top: 40px;
}

.footer-middle h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-middle p {
  font-size: 13px;
  color: #aaa;
  margin: 4px 0;
}

.footer-middle button {
  padding: 12px 24px;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}

.footer-lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
}

.footer-lower a {
  color: #fff;
  text-decoration: underline;
}

.form-wrapper {
  max-width: 960px;
  margin: 60px auto;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  padding: 40px;
}

h1.form-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.col {
  flex: 1;
  min-width: 220px;
}

input[type="text"],
input[type="email"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 12px;
  min-height: 52px;
  border: 1px solid #ccc;
  background-color: transparent;
  font-size: 14px;
}

textarea {
  min-height: 172px;
}

input:focus,
textarea:focus {
  background-color: #000;
  color: #fff;
  outline: none;
  transition: background 0.3s, color 0.3s;
}

.inline-options {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}

.inline-options label {
  padding: 13px 24px;
  font-size: 1em;
  font-weight: 400;
  line-height: 2em;
  transition: all 0.45s;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  border: 1px solid #aaa;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

input:checked + label {
  background: #000;
  color: #fff;
  border-color: #000;
}

.submit-btn {
  margin-top: 20px;
  padding: 14px 30px;
  font-size: 14px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  width: 100%;
}


@media (max-width: 1024px) {
  section {
    padding: 64px 20px 80px;
  }

  .booking-header {
    flex-direction: column;
    text-align: center;
    font-size: 36px;
    gap: 20px;
  }

  .artists-header h1 {
    font-size: 36px;
  }

  .instagram-header h2 {
    font-size: 48px;
  }

  .map-container {
    margin-left: 0;
  }

  .arrow-link {
    font-size: 28px;
  }
}

@media (max-width: 768px) {

  .booking-header {
    flex-direction: row !important;
    font-size: 18px;
    padding: 20px 24px;
    gap: 10px;
  }

  .booking-header h1 {
    padding: 0;
  }

  .booking-header .arrow-link {
    font-size: 24px;
    padding: 0;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .booking-header .arrow-link img {
    width: 40px;
    height: auto;
  }

.slider-section {
  position: relative;
  width: 100%;
  margin: 0;
  margin-bottom: 50px;
  padding: 0;
  overflow: hidden;
}
}


@media (max-width: 768px) {
  .form-wrapper {
    margin: 30px 16px;
    padding: 24px;
  }

  h1.form-title {
    font-size: 32px;
    text-align: center;
  }

  .row {
    flex-direction: column;
    gap: 12px;
  }

  .inline-options {
    flex-direction: column;
    gap: 10px;
  }

  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-info,
  .map-embed,
  .footer-map-wrapper {
    width: 100%;
    padding: 40px 20px;
    flex-direction: column;
    height: auto;
  }

  .dark-map iframe {
    height: 300px;
    border-radius: 0;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles_flex_column {
    flex-direction: column;
    gap: 40px;
  }

  .headline_sticky,
  .articles_column_list {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  section {
    padding: 10px 10px 0px;
  }

  .booking-header {
    font-size: 18px;
    padding: 20px;
  }

  .map-button {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .studio-info h2 {
    font-size: 20px;
  }

  .instagram-header h2 {
    font-size: 32px;
  }

  .instagram-header a {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 16px;
  }

  .info {
    font-size: 12px;
    text-align: center;
  }
  
  /* Blog Section Responsive */
  .blog-section {
    padding: 40px 20px !important;
  }
  
  .article_on_home {
    max-width: 100% !important;
  }
  
  .headline_sticky {
    position: relative !important;
    top: 0 !important;
  }
  
  /* FAQ Responsive */
  .faq-section {
    padding: 0 20px !important;
  }
  
  .faq-section h2 {
    font-size: 28px !important;
  }
  
  .faq-question h3 {
    font-size: 15px !important;
  }
}

/* Additional Responsive Improvements */
@media (max-width: 480px) {
  .blog-section {
    padding: 30px 15px !important;
  }
  
  .faq-section h2 {
    font-size: 24px !important;
    margin-bottom: 30px !important;
  }
  
  .faq-question {
    padding: 15px 0 !important;
  }
  
  .art_sticky h2 {
    font-size: 20px !important;
  }
  
  .article_on_home {
    margin-bottom: 30px !important;
  }
}