/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', sans-serif; }
body { color: #333; background: #fafafa; line-height: 1.6; }

/* Navbar */
header { background: #fff; padding: 1rem 2rem; border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: #111; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: #333; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #0077b6; }

/* Hero */
.hero { 
  height: 90vh; 
  background: url('./Assets/Greyhound\ silhouette2.jpg') center/cover no-repeat; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  color: white; 
}
.hero-content { background: rgba(0,0,0,0.5); padding: 2rem; border-radius: 10px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 1.5rem; }

/* Button */
.btn { background: #0077b6; color: #fff; padding: 0.8rem 1.5rem; border-radius: 5px; text-decoration: none; transition: background 0.3s; }
.btn:hover { background: #023e8a; }

/* Gallery */
.gallery { padding: 3rem 2rem; text-align: center; }
.gallery h2 { margin-bottom: 2rem; font-size: 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.grid-item { overflow: hidden; border-radius: 10px; }
.grid-item img { width: 100%; display: block; transition: transform 0.4s; }
.grid-item:hover img { transform: scale(1.1); }

/* Contact */
.contact { padding: 3rem 2rem; max-width: 600px; margin: auto; text-align: center; }
.contact h2 { margin-bottom: 1.5rem; }
form { display: flex; flex-direction: column; gap: 1rem; }
input, textarea { padding: 0.8rem; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; }
textarea { resize: none; height: 150px; }

/* Footer */
footer { text-align: center; padding: 1rem; background: #111; color: #fff; margin-top: 2rem; }
a { text-decoration: none; color: #fff;}