/*
Theme Name: Aldex Oun
Author: Aldex Oun
Description: A sleek, responsive website
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #2c3e50;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: linear-gradient(135deg, #f8fbff, #e8f1f9);
  padding: 40px 0;
  text-align: center;
}

header img {
  width: 160px;
  max-width: 100%;
}

nav {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 10px 0;
  text-align: center;
}

nav a {
  margin: 0 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to right, #f0f4f8, #ffffff);
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: #444;
}

.button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background: #0077cc;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button:hover {
  background: #005fa3;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover img {
  transform: scale(1.1);
}

footer {
  background: #f1f1f1;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}
