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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
}

/* Colors from logo */
:root {
  --primary-color: #0A2E4E; /* Dark navy blue */
  --accent-color: #F4C542;  /* Gold/yellow */
  --light-color: #f8f9fa;
}

/* Container */
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Header */
.site-header {
  background: var(--primary-color);
  color: #fff;
}

/* Top Navigation Logo */
header .logo img {
  max-height: 50px;   /* adjust size */
  width: auto;        /* keep aspect ratio */
}

@media (max-width: 768px) {
  header .logo img {
    max-height: 40px; /* smaller on tablets */
  }
}

@media (max-width: 480px) {
  header .logo img {
    max-height: 35px; /* smallest on mobile */
  }
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.logo img {
  max-width: 50%;
  height: auto;
  display: block;
}

.logo {
  max-width: 50px; /* adjust as needed */
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.brand-text {
  font-size: 1.2rem;
  font-weight: bold;
}

.nav {
  display: flex;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
}

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

/* Hamburger (mobile menu) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

/* Hero Sections */
/* Hero Section Logo Fix */
.hero {
  height: 60vh; /* shorter than full screen */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* push content up */
  align-items: center;
  padding-top: 50px; /* move logo higher */
  text-align: center;
}

.hero img {
  max-width: 200px; /* smaller on desktop */
  height: auto;
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
    padding-top: 30px;
  }

  .hero img {
    max-width: 150px; /* smaller on tablets/mobiles */
  }
}

@media (max-width: 480px) {
  .hero {
    height: 45vh;
    padding-top: 20px;
  }

  .hero img {
    max-width: 120px; /* fits small phones */
  }
}

.page-hero {
  background: var(--light-color);
  padding: 2rem 0;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn-accent {
  background: var(--accent-color);
  color: #000;
}

.btn-light {
  background: #fff;
  color: var(--primary-color);
}

.btn:hover {
  opacity: 0.9;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.img-placeholder {
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

/* Footer */
.site-footer {
  background: var(--primary-color);
  color: #fff;
  margin-top: 3rem;
  position: relative;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-grid > div {
  flex: 1 1 200px; /* Flexible columns */
  min-width: 150px;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.footer-grid ul {
  padding-left: 0;
  list-style: none;
}

.footer-grid li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.4rem; /* Reduced from 0.9rem */
}

/* Contact Form */
.contact-form {
  margin: 2rem 0;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 1rem;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: var(--primary-color);
    position: absolute;
    top: 70px;
    right: 0;
    
    width: 200px;
    padding: 1rem;
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
    }

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
