/*
Theme Name: ChangingBrows LLC
Theme URI: http://changingbrowsllc.com
Author: Sam Knox
Author URI: http://changingbrowsllc.com
Description: Updated vibrant theme for ChangingBrows LLC with Instagram gallery and no prices.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: changingbrowsllc
*/

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}
a { color: #ff62a5; text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  background: linear-gradient(135deg, #f8b500, #ff62a5);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.btn {
  background: #ff62a5;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-top: 15px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.services, .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-item, .gallery img {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

form input, form select, form textarea, form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #f8b500;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background: #333;
  color: white;
  padding: 30px;
  text-align: center;
}