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

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #c9a961;
  --accent-color: #d4af37;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --bg-light: #f8f8f8;
  --bg-dark: #1a1a1a;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--text-light);
}

html {
  scroll-behavior: smooth;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

.nav-menu a:hover {
  color: var(--accent-color);
}

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

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #87CEEB;
  color: var(--text-light);
  text-align: center;
  padding: 80px 24px 0;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 56px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.section-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.services {
  padding: 96px 0;
  background-color: var(--bg-light);
}

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

.service-card {
  background-color: white;
  padding: 40px 24px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.service-card p {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.price {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-color);
}

.hours {
  padding: 96px 0;
  background-color: white;
}

.hours-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.hours-table {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: var(--transition);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:hover {
  transform: translateX(8px);
}

.hours-row.today {
  background-color: rgba(212, 175, 55, 0.1);
  padding: 16px;
  margin: 0 -16px;
  border-radius: 8px;
}

.day {
  font-weight: 600;
  font-size: 18px;
}

.time {
  color: #666;
  font-size: 16px;
}

.status-box {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
  border-radius: 12px;
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.status-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: pulse 2s infinite;
}

.status-indicator.open {
  background-color: #4caf50;
}

.status-indicator.closed {
  background-color: #f44336;
}

.status-text {
  font-size: 20px;
  font-weight: 600;
}

.contact {
  padding: 96px 0;
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-item p {
  color: #666;
  line-height: 1.5;
}

.contact-form {
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.submit-button {
  width: 100%;
  padding: 16px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 32px 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hours-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
