:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
}

body {
  padding-top: 56px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
              url('/Picsart_24-11-21_16-45-40-632.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-brand img {
  height: 40px;
  margin-right: 10px;
}

/* Service Cards */
.service-card {
  transition: transform 0.3s ease;
  text-align: center;
  padding: 2rem;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Forms */
.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Social Links */
.social-links a {
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

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

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

/* Calendar */
#calendar {
  margin: 2rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
}