:root {
  --primary-color: #023E8A;    /* dark blue */
  --secondary-color: #0077B6;  /* medium blue */
  --accent-color: #90E0EF;     /* light blue */
  --light-bg: #CAF0F8;         /* pale blue */
  --text-color: #333;
  --spacing: 2rem;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color 0.3s;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 70px;
  width: auto;
}

nav a {
  color: var(--primary-color);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(2, 62, 138, 0.8), rgba(0, 119, 182, 0.8)),
              url('https://ezhospitalitymgmt.com/wp-content/uploads/2023/05/EZ-Hospitality-Management-Hero.jpg') center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.hero p {
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.3s;
}

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

/* Sections */
section {
  padding: var(--spacing) 0;
}

.about {
  background: var(--light-bg);
  height:500px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing);
  color: var(--primary-color);
  text-align: center;
}

#contact {
  background: var(--light-bg);
  height:500px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing);
  color: var(--primary-color);
  text-align: center;
}
#contact p{  text-align: center;}

/* Properties */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing);
  margin-top: var(--spacing);
}

.property-card {
  background: white;
  border-radius: 10px;
  padding: var(--spacing);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(2, 62, 138, 0.15);
}

.property-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
}

.property-logo.fpo {
  width: 200px;
  height: 100px;
}

.property-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.button:hover {
  background: var(--secondary-color);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: var(--spacing) 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  nav {
    display: none;
  }
}