/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0B0B0B;
  color: #F5F5F5;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: #0B0B0B;
  z-index: 100;
}
.site-header .logo {
  display: inline-block;
  font-size: 1.8rem;
  color: #F5F5F5;
}
.main-nav {
  display: inline-block;
  margin-left: 30px;
}
.main-nav ul {
  list-style: none;
}
.main-nav ul li {
  display: inline-block;
  margin-left: 20px;
}
.main-nav ul li a {
  color: #CCCCCC;
  font-weight: 500;
}
.main-nav ul li a:hover {
  color: #F5F5F5;
}
.btn-accent {
  display: inline-block;
  padding: 10px 20px;
  background-color: #E67E22;
  color: #0B0B0B;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.btn-accent:hover {
  background-color: #D7661A;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background: url('images/hero-tattoo.jpg') center/cover no-repeat;
}
.hero-overlay {
  background: rgba(11,11,11,0.6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-center: center;
  text-align: center;
  color: #F5F5F5;
}
.hero-overlay .container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-overlay .container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.btn-large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  text-align: center;
  margin: 60px 0 30px 0;
  color: #F5F5F5;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Feminine Tattoos Section */
.feminine {
  background-color: #111;
  padding: 60px 0;
}
.section-subtitle {
  text-align: center;
  color: #CCCCCC;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.feminine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}
.tattoo-item {
  text-align: center;
  color: #F5F5F5;
}
.tattoo-item img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.tattoo-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(230,126,34,0.7);
}
.tattoo-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #E67E22;
  font-weight: 500;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}
.service-item h4 {
  font-size: 1.4rem;
  margin: 15px 0 10px;
  color: #E67E22;
}
.service-item p {
  color: #CCCCCC;
}

/* Artists Grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.artist-card h4 {
  margin: 10px 0 5px;
  color: #F5F5F5;
}
.artist-card p {
  color: #CCCCCC;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}
.contact-form input {
  height: 45px;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form button {
  align-self: flex-start;
}

/* Footer */
.site-footer {
  padding: 30px 0;
  text-align: center;
  background-color: #080808;
  color: #777777;
}
