/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 300; }
h2 { font-size: 2rem; font-weight: 400; }
h3 { font-size: 1.5rem; font-weight: 500; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header */
.header {
  background-color: var(--background-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  color: var(--primary-color);
}

/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(255,255,255,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tagline {
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-color);
  margin-bottom: 1rem;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-contact {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.about-description {
  margin-bottom: 3rem;
}

.signature {
  height: 60px;
  width: auto;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Service Sections */
.service-section {
  padding: 5rem 0;
}

.service-light {
  background-color: var(--background-color);
}

.service-dark {
  background-color: var(--secondary-color);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-content.image-left {
  grid-template-columns: 1fr 1fr;
}

.service-content.image-right .service-image {
  order: 2;
}

.service-category {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.service-text h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-list {
  list-style: none;
  margin-top: 2rem;
}

.service-list li {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '•';
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.service-list strong {
  color: var(--text-color);
  display: block;
  margin-bottom: 0.5rem;
}

.service-list p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Opening Hours */
.opening-hours {
  padding: 4rem 0;
  background-color: var(--secondary-color);
}

.opening-hours h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 3rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.day-hours {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.day-hours.appointment-only::after {
  content: '📅';
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.2rem;
}

.day {
  font-weight: 600;
  color: var(--text-color);
}

.hours-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours {
  color: var(--text-light);
  font-weight: 500;
}

.hours-info small {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 500;
}

.hours-info .notes {
  color: var(--text-light);
  font-style: italic;
}

.appointment-note {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: var(--accent-color);
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 95, 112, 0.8);
}

.products-content {
  position: relative;
  z-index: 1;
}

.products h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.products p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: var(--accent-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.address {
  margin-top: 1rem;
}

.opening-hours-list {
  list-style: none;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  line-height: 1.8;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.social-links {
  margin-bottom: 1.5rem;
}

.social-links a {
  color: var(--secondary-color);
  text-decoration: none;
  margin-right: 1rem;
}

.footer-note {
  margin-bottom: 1.5rem;
}

.phone-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 2rem;
}

.legal-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: white;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .about-content,
  .service-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-content.image-right .service-image {
    order: 0;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    min-height: 50vh;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .service-section,
  .about {
    padding: 3rem 0;
  }
}