/* =========================
   Global Styles
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111111;
    
    color: #fff;
    line-height: 1.6;
}

/* =========================
   Navbar
========================= */

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Slide-out menu for mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        height: 100%;
        width: 250px;
        background-color: #111;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .nav-links.active {
        right: 0; /* Slide in */
    }
}

/* Hamburger animation */
.hamburger.toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.85);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #C81D25; /* Neon red */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar .nav-links li a:hover {
    color: #C81D25; /* Neon red hover */
}

/* =========================
   Hero Section
========================= */
/* In your animations.css */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #000; /* dark background */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.smoke {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: smokeMove 20s linear infinite;
  filter: blur(60px);
}

.smoke:nth-child(2) {
  animation-duration: 25s;
  left: -30%;
  top: -40%;
}

@keyframes smokeMove {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20%, -10%) scale(1.2); }
  100% { transform: translate(0,0) scale(1); }
}


.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6); /* dark overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #000000;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #C81D25;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #bc42425f;
}

.cta-button {
    text-decoration: none;
    padding: 15px 40px;
    background-color: #C81D25;
    color: #000000;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #a34b4b79; /* Neon green on hover */
    color: #ffffff;
    transition: 2000ms;
}

/* =========================
   Artists Section
========================= */
.artists {
    padding: 60px 20px;
    background-color: #1e1e1e;
    text-align: center;
}

.artists h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #C81D25;
}

.artist-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
}

.artist-card {
    background-color: #000000;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.artist-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.artist-card:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px #C81D25;
}

.artist-card h3 {
    color: #221d1d;
    margin-bottom: 5px;
}


/* =========================
   Gallery Section
========================= */
.gallery {
    padding: 60px 20px;
    background-color: #1e1e1e;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.gallery h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #C81D25;
    margin-bottom: 40px;
}

.gallery-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.gallery-carousel::-webkit-scrollbar {
    height: 8px;
}

.gallery-carousel::-webkit-scrollbar-thumb {
    background-color: #C81D25;
    border-radius: 5px;
}

.gallery-item {
    flex: 0 0 auto;
}

.gallery-item img {
    width: 250px;       /* fixed width */
    height: 250px;      /* fixed height to make all images square */
    border-radius: 10px;
    object-fit: cover;  /* crops images to fit without distortion */
    transition: transform 0.3s, box-shadow 0.3s;
}


.gallery-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #39FF14;
}

/* =========================
   Footer
========================= */
footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 20px 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .nav-links {
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}

/* About Artist Section */
.about-artist {
    padding: 60px 20px;
    background-color: #1e1e1e;
    color: #fff;
    text-align: center;
}

.about-artist h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    color: #C81D25;
}

.artist-card h3 a {
    color: #C81D25;
    text-decoration: none;
    transition: color 0.3s;
}

.artist-card h3 a {
    color: #9a3c3c80;
    transition: all 0.3s ease;
    display: inline-block; /* ensures transform works correctly */
}

.artist-card h3 a:hover {
    animation: blinkGrow 1s infinite;
}

@keyframes blinkGrow {
    0% {
        opacity: 1;
        transform: scale(1);
        color: #ffffff;
    }
    25% {
        opacity: 0.5;
        transform: scale(1.1);
        color: #ff0000; /* optional color change */
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        color: #ffff00; /* optional color change */
    }
    75% {
        opacity: 0.5;
        transform: scale(1.1);
        color: #ff00ff; /* optional color change */
    }
    100% {
        opacity: 1;
        transform: scale(1);
        color: #ffffff;
    }
}


.about-artist p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 15px auto;
    line-height: 1.8;
    color: #494949;
    transition: all 0.3s ease;
}

.about-artist p:hover {
    animation: pulseText 1.2s infinite;
}

@keyframes pulseText {
    0% {
        transform: scale(1);
        color: #ccc;
    }
    50% {
        transform: scale(1.05);
        color: #fff;
    }
    100% {
        transform: scale(1);
        color: #ccc;
    }
}




/* Reveasl some user experience */
/* Initial state */
.reveal {
    opacity: 0;
    transform: translateY(50px); /* Start 50px below */
    transition: all 0.8s ease-out;
}

/* When in view */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Booking page */
.booking-section {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(20,20,20,0.9);
    border-radius: 12px;
    text-align: center;
    color: #c81d268c;
    box-shadow: 0 0 20px rgba(69, 55, 55, 0.5);
}

.booking-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #c81d2674;
}

.booking-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.booking-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-section input,
.booking-section select,
.booking-section textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: #3318185a;
    color: #ffffff;
}

.booking-section input:focus,
.booking-section select:focus,
.booking-section textarea:focus {
    box-shadow: 0 0 10px #ff0099;
    transform: scale(1.02);
}

.booking-section button {
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(45deg, #ff0099, #6600ff);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-section button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff00ff;
}



/* footer section */
footer {
    background-color: #1e1e1e;
    text-align: center;
    padding: 30px 20px;
    color: #aaa;
    font-size: 0.9rem;
}

footer .footer-content p {
    margin: 8px 0;
}

footer a {
    color: #ee0800; /* Neon green phone number */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
}

footer p:nth-child(2) {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #C81D25; /* Neon red for "Get TATTOOS" */
}

footer p:nth-child(3),
footer p:nth-child(4) {
    color: #fff; /* Business hours & job openings */
    font-weight: 500;
}
.footer-socials {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    border-radius: 50px;
}

.footer-socials a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s, filter 0.3s;
    border-radius: 50px;
}

.footer-socials a img:hover {
    transform: scale(1.2);
    filter: brightness(1.3); /* makes icon brighter on hover */
}
