
/*
Theme Name: Beauty Salon Starter
Theme URI: https://example.com
Author: Copilot
Description: Minimal Beauty Salon homepage theme with hero image and radio navigation
Version: 1.0
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.hero h1 {
  font-size: 64px;
  margin-bottom: 40px;
}
.radio-menu {
  display: flex;
  gap: 15px;
}
.radio-menu input { display:none; }
.radio-menu label span {
  background:#fff;
  color:#000;
  padding:14px 28px;
  border-radius:30px;
  cursor:pointer;
}
.radio-menu input:checked + span {
  background:#c79b7b;
  color:#fff;
}
