:root {
  --green-dark: #5f7f73;
  --green-light: #a8c5b7;
  --yellow: #f0b400;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IM Fell English SC", serif;
  background: #111;
  color: #fff;
  text-align: center;
}

/* HERO */
.hero {
  padding: 90px 20px;
  background: var(--green-dark);
}

.logo-text {
  font-family: "IM Fell English SC", serif;
  font-size: 3.4rem;
  letter-spacing: 5px;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--yellow);
}

.hero-tagline {
  font-style: italic;
  color: var(--green-light);
  font-size: 1.1rem;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-family: "IM Fell English SC", serif;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 35px;
}

/* Button Style for View Work */
.view-work-btn {
  display: inline-block;
  background-color: #f0b400;  /* Yellow background */
  color: #111;  /* Black text */
  padding: 12px 25px;  /* Adjust padding for rectangular shape */
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px; /* Keep a slight roundness for a cleaner look */
  font-size: 1rem;
  margin-top: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;  /* Smooth transition on hover */
}

.view-work-btn:hover {
  background-color: #e0a400;  /* Darker yellow on hover */
  color: #fff;  /* White text on hover */
  cursor: pointer;
}

/* Artist Card Layout */
.artist-card {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
}

.artist-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 3px solid var(--yellow);
}

.artist-card h3 {
  margin: 10px 0 6px;
}

.artist-card a {
  text-decoration: none;
}


/* ARTISTS */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.artist-card {
  background: #1a1a1a;
  padding: 30px 20px;
  border-radius: 16px;
}

.artist-card.single {
  max-width: 320px;
  margin: auto;
}

.artist-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 3px solid var(--yellow);
}

.artist-card h3 {
  margin: 10px 0 6px;
}

.artist-card a {
  color: var(--green-light);
  text-decoration: none;
  font-weight: bold;
}

/* Map Container */
#location {
  max-width: 100%; /* Full width of its container */
  width: 100%;
  height: 500px; /* Increase height for better visibility */
  margin: 20px 0; /* Adds spacing above and below the map */
}

/* Ensure iframe also fills container */
#location iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* Google Reviews Section */
#google-reviews {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  border-radius: 10px;
}

#google-reviews h2 {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 20px;
}

/* Star Rating */
.star-rating {
  font-size: 2rem;
  color: #f0b400;
  margin-bottom: 20px;
}

.star {
  margin-right: 4px;
}

.rating-text {
  font-size: 1rem;
  color: #fff;
  margin-left: 10px;
}

/* Reviews Section */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-author {
  font-weight: bold;
  text-align: right;
  color: var(--yellow);
}

/* FOOTER */
footer {
  background: #000;
  padding: 35px;
  font-size: 0.9rem;
}
