/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }

/* Header */
header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 30px; background: #003366; color: white; position: sticky; top: 0;
}
header .logo { font-size: 1.5rem; font-weight: bold; }
nav ul { list-style: none; display: flex; gap: 15px; }
nav ul li a { color: white; text-decoration: none; }
nav ul li a:hover { text-decoration: underline; }

/* Hero */
#hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("assets/hero.jpg") no-repeat center/cover;
  color: white; text-align: center; padding: 100px 20px;
}
#hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
#hero p { margin-bottom: 20px; font-size: 1.2rem; }
.btn { background: #ffcc00; color: #003366; padding: 10px 20px; border-radius: 5px; text-decoration: none; }

/* Sections */
section { padding: 60px 20px; max-width: 1000px; margin: auto; }
section h2 { text-align: center; margin-bottom: 20px; color: #003366; }

/* Services */
.service-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.box { background: #f4f4f4; padding: 20px; text-align: center; border-radius: 8px; transition: 0.3s; }
.box:hover { background: #ffcc00; color: #003366; }

/* About */
#about p { text-align: center; max-width: 800px; margin: auto; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.gallery-grid img { width: 100%; border-radius: 8px; cursor: pointer; transition: transform 0.3s; }
.gallery-grid img:hover { transform: scale(1.05); }

/* Contact */
.contact-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
form { flex: 1; min-width: 250px; display: flex; flex-direction: column; gap: 10px; }
form input, form textarea { padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
form button { background: #003366; color: white; padding: 10px; border: none; border-radius: 5px; cursor: pointer; }
form button:hover { background: #ffcc00; color: #003366; }
.contact-info { flex: 1; min-width: 200px; }

/* Footer */
footer { text-align: center; padding: 15px; background: #003366; color: white; margin-top: 30px; }
