/* Tanaris Media Custom Styles */

:root {
  --primary-color: #2c3e50;
  --accent-color: #3498db;
  --text-color: #2c3e50;
  --light-bg: #ecf0f1;
  --white: #ffffff;
}

/* Logo Styling */
.site-logo {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
}

/* Navigation Styling */
.nav-link {
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  padding: 4rem 0;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

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

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

/* Buttons */
.btn-primary {
  background: var(--accent-color);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  color: var(--white);
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .site-logo {
    max-height: 40px;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .service-card {
    padding: 1.5rem;
  }
} 