/* Hair Studio Bloomington - Main Stylesheet */
:root {
  --primary-color: #8a6f5c; /* Warm brown tone */
  --secondary-color: #c3a995; /* Lighter brown */
  --accent-color: #d1b48c; /* Gold accent */
  --text-color: #333333;
  --light-color: #f9f5f1;
  --dark-color: #3a2e24;
  --font-main: 'Montserrat', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-left: 10px;
}

.logo svg {
  height: 40px;
  width: auto;
}

/* Navigation */
nav ul {
  display: flex;
  list-style-type: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 180px 5% 100px;
  background: linear-gradient(135deg, rgba(195, 169, 149, 0.1) 0%, rgba(209, 180, 140, 0.2) 100%);
  text-align: center;
}

.hero h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--dark-color);
}

/* Services Section */
.services {
  padding: 80px 5%;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

/* About Section */
.about {
  padding: 80px 5%;
  background-color: var(--light-color);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Game Module */
.game-module {
  padding: 80px 5%;
  background-color: white;
  text-align: center;
}

.game-links {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: left;
}

.game-links p {
  margin-bottom: 20px;
  line-height: 1.8;
  display: flex;
  align-items: center;
}

.game-links p a {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-right: 10px;
}

.game-links p a:hover {
  color: var(--dark-color);
  text-decoration: underline;
}

.game-links p:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: 80px 5%;
  background-color: var(--light-color);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
}

.contact-info {
  text-align: left;
}

.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin: 25px 0 15px 0;
  font-size: 1.4rem;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.info-section {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-section:last-of-type {
  border-bottom: none;
}

.info-section p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-section p a:hover {
  color: var(--dark-color);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
}

.contact-page {
  padding: 150px 5% 80px;
  background-color: var(--light-color);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 5% 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-column ul {
  list-style-type: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo svg {
  height: 30px;
  width: auto;
  margin-right: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .header-container {
    padding: 10px 5%;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .logo svg {
    height: 30px;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li {
    margin: 0;
    text-align: center;
  }
  
  nav ul li a {
    display: block;
    padding: 15px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    padding: 130px 5% 70px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .cta-button {
    padding: 10px 20px;
  }
}
