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

@font-face {
font-family: 'asdasd';
src: url('../asdasd.ttf') format('truetype');
}

:root {
    --black: #bc4b7dd4;
    --charcoal: #795f72ed;
    --crimson: #a7476a;
    --white: #ffffff;
}

body {
    font-family:'asdasd';
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background:#a7476aa2;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #a7476aa2;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 90px;
    width: 75px;
    transition: transform 0.3s ease;
}

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

/* Active state */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav.active {
  right: 0;
}

/* The burger icon */
.menu-toggle {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 4px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav panel */

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.95); /* Dark overlay */
  display: none; /* hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* make sure it's above everything */
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.5rem;
  margin: 15px 0;
  text-decoration: none;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -240px;
  width: 240px;
  height: 100%;
  background: #0f0f0fb2;
  box-shadow: -2px 0 8px #0c0c0cab;
  padding-top: 60px;
  transition: right 0.3s ease;
  z-index: 900;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin: 16px 0;
  text-align: center;
}

.mobile-nav a {
  text-decoration: none;
  color: #ffffffcb;
  font-size: 18px;
}

/* Example for overlay menu */
.overlay {
  position: fixed;      /* instead of absolute */
  top: 0;
  left: 0;
  width: 100vw;         /* full width */
  height: 100vh;        /* full height */
  background: rgba(0, 0, 0, 0.9); /* dark background */
  z-index: 999;         /* above everything */
  display: none;        /* hidden by default */
}

/* Show when active */
.overlay.active {
  display: flex;        /* or block, or grid depending on your design */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: #ffffffa2;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
  transform: scale(1.1);
  color: #ffffffa2; /* blue highlight */
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffffee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a7476aa2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #a7476aa2;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(87, 86, 86, 0.5), rgba(87, 86, 86, 0.5)),url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Fallback background if hero image is not available */



.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    font-family: "asdasd";
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}



.cta-button {
    background: #a7476aa2;
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #e56190a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 18, 31, 0.3);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--crimson);
}

/* About Section */
.about {
    background: var(--charcoal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img,
.placeholder-image {
    max-width: 100%;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.placeholder-image {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--crimson);
    font-size: 1.2rem;
}

.placeholder-image::before {
    content: '🎨 Studio Interior';
}

/* Artists Section */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    justify-self: center;
}

.artist-card {
    background: var(--charcoal);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: var(--crimson);
}

.artist-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--crimson);
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder for artist images */
.artist-avatar:empty::before {
    font-size: 3rem;
    color: var(--crimson);
}

.artist-card:nth-child(1) .artist-avatar:empty::before { content: '🎭'; }
.artist-card:nth-child(2) .artist-avatar:empty::before { content: '🌺'; }
.artist-card:nth-child(3) .artist-avatar:empty::before { content: '⚡'; }

.artist-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.artist-specialty {
    color: var(--crimson);
    font-style: italic;
    margin-bottom: 15px;
}

.see-more-btn {
      display: inline-block;
      padding: 12px 28px;
      font-size: 16px;
      font-weight: 600;
      color: white;
      background: #e56190a3;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
      text-decoration: none;
    }

    .see-more-btn:hover {
      background: #e56190a3;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
      transform: translateY(-2px);
    }

    .see-more-btn:active {
      transform: translateY(0);
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }

/* Gallery Section */
.gallery {
    background: var(--charcoal);
}

.gallery-slider {
  position: relative;
  width: 100%;
  max-width: 500px;   /* center nicely on big screens */
  margin: 0 auto;
  overflow: hidden;    /* only one slide visible */
}

/* Track: horizontal row of slides */
.gallery-track {
  display: flex;
  width: 100%;
}

/* Each Slide */
.gallery-slide {
  flex: 0 0 100%;   /* always 100% width of slider */
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5); /* semi-transparent dark */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease;
}

.gallery-arrow.left {
  left: 16px;
}

.gallery-arrow.right {
  right: 16px;
}

.gallery-arrow:hover {
  background: rgba(255, 64, 129, 0.8); /* pink accent */
  transform: translateY(-50%) scale(1.1);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.gallery-dots button {
  width: 10px;
  height: 10px;
  background: #777;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease;
}
.gallery-dots button.active { background: #ff69b4; }

/* Placeholder for gallery images */
.gallery-item:empty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--crimson);
}

/* Contact */

.contact-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.contact-block {
  margin-bottom: 40px;
}

.contact-block h2 {
  font-size: 22px;
  margin: 15px 0;
  font-weight: bold;
}

.contact-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.purple-line {
  width: 80px;
  height: 5px;
  background: #a7476a; /* purple */
  margin: 0 auto 15px;
}

.phone {
  color: #a7476a;
  font-weight: bold;
  text-decoration: none;
}

.phone:hover {
  text-decoration: underline;
}

.map-block {
  margin-top: 30px;
}

.website-link {
  margin-top: 10px;
}

.website-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.website-link a:hover {
  color: #a7476a;
}

/* --- Contact Section --- */
.contact {
  background: #0f0f0f;
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 40px;
  position: relative;
}

.contact h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff4081;
  margin: 12px auto 0;
  border-radius: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.contact-card {
  background: #ff619659;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
}

.contact-card i {
  font-size: 2rem;
  color: #ff4081;
  margin-bottom: 12px;
}

.contact-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-card a {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1e1e1e;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #ff4081;
  background: #262626;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  background: #ff4081;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #ff5c98;
  transform: scale(1.03);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .contact h2 {
    font-size: 1.8rem;
  }
  .contact-card {
    padding: 20px;
  }
  .contact-form button {
    font-size: 1rem;
  }
}

/* Booking Section */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--charcoal);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #202020e1;
    border-radius: 5px;
    background: #202020e1;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--crimson);
}

.file-upload {
    border: 2px dashed var(--crimson);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin-bottom: 20px;
}

.file-upload:hover {
    background-color: rgba(193, 18, 31, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--crimson);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #e78890b4;
}

/* Footer */
.footer {
    background: rgba(31, 30, 30, 0.55);
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: #b89875;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
        font-family: 'asdasd.ttf';
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(4000px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        font-family: 'asdasd';
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .booking-form {
        padding: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

.insta-link {
  vertical-align: middle;
    margin-bottom: 20px;
}

.insta-icon {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1); /* makes sure it's white even if it's gray */
  vertical-align: middle;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.instagram-icon {
  display: flex;                  /* center image inside */
  align-items: center;
  justify-content: center;
}

.instagram-icon img {
  width: 40px;                    /* adjust size */
  height: 40px;
  filter: brightness(0) invert(1); /* make it white if needed */
}