/*

=====================================

Pantheon Projects Theme — FINAL 2025

British Navy Edition (#0A1A4F)

=====================================

*/



/* ---- BASE ---- */

body {

  margin: 0;

  font-family: "Helvetica Neue", Arial, sans-serif;

  color: #111;

  background: #fff;

  line-height: 1.6;

  overflow-x: hidden;

}



h1, h2, h3, h4 {

  font-weight: 700;

  margin-bottom: 15px;

}



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

img { max-width: 100%; display: block; }



.container {

  width: 90%;

  max-width: 1100px;

  margin: 0 auto;

}



/* =====================================

   HEADER (Sticky + Responsive)

===================================== */

.site-header {

  position: sticky;

  top: 0;

  width: 100%;

  background: rgba(10, 26, 79, 0.97); /* 🇬🇧 British Navy */

  color: #fff;

  z-index: 1000;

  padding: 15px 0;

  backdrop-filter: blur(8px);

  transition: all 0.3s ease;

}



.header-inner {

  display: flex;

  justify-content: space-between;

  align-items: center;

  max-width: 1100px;

  margin: 0 auto;

  padding: 0 5%;

}



.site-logo img {

  height: 50px;

  width: auto;

  transition: transform 0.3s;

}

.site-logo img:hover {

  transform: scale(1.05);

}



.main-navigation .nav-menu {

  display: flex;

  list-style: none;

  gap: 25px;

}



.main-navigation .nav-menu li a {

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: color 0.3s;

}



.main-navigation .nav-menu li a:hover {

  color: #d32f2f;

}



/* --- MOBILE MENU --- */

.menu-toggle {

  display: none;

  font-size: 1.6rem;

  color: #fff;

  cursor: pointer;

}



@media (max-width: 768px) {

  .main-navigation .nav-menu {

    display: none;

    flex-direction: column;

    background: #0A1A4F;

    position: absolute;

    top: 70px;

    right: 5%;

    width: 220px;

    border-radius: 6px;

    padding: 15px;

  }

  .main-navigation.active .nav-menu {

    display: flex;

  }

  .menu-toggle {

    display: block;

  }

}



/* =====================================

   HERO SECTION

===================================== */

.hero {

  position: relative;

  min-height: 90vh;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  background-size: cover;

  background-position: center;

  color: #fff;

}

.hero-overlay {

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.45);

}

.hero-content {

  position: relative;

  z-index: 2;

  padding: 0 60px;

  max-width: 600px;

}

.hero h1 {

  font-size: 3.5rem;

  text-shadow: 0 2px 6px rgba(0,0,0,0.3);

}

.hero p {

  font-size: 1.2rem;

  color: #f5f5f5;

  margin-bottom: 25px;

}

.btn-primary {

  background: #d32f2f;

  color: #fff;

  padding: 12px 28px;

  border-radius: 4px;

  font-weight: 600;

  display: inline-block;

  transition: background 0.3s;

}

.btn-primary:hover {

  background: #b71c1c;

}



/* =====================================

   PAGE HERO SECTIONS

===================================== */

.page-hero {

  position: relative;

  height: 60vh;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  background-size: cover;

  background-position: center;

  text-align: center;

}

.page-hero .overlay {

  position: absolute;

  inset: 0;

  background: rgba(0,0,0,0.35);

}

.page-hero .hero-content {

  position: relative;

  z-index: 2;

}

.about-hero { background-image: url('images/hero-home.webp'); }

.services-hero { background-image: url('images/project2.webp'); }

.projects-hero { background-image: url('images/project1.webp'); }

.contact-hero { background-image: url('images/project3.webp'); }



/* =====================================

   PAGE CONTENT

===================================== */

.page-content {

  padding: 80px 0;

  text-align: center;

}

.page-content h2 {

  font-size: 2rem;

  color: #111;

  margin-bottom: 15px;

}

.page-content p {

  color: #444;

  max-width: 800px;

  margin: 0 auto 25px;

}



/* =====================================

   SERVICES GRID

===================================== */

.services-grid {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 25px;

}

.service-box {

  background: #fff;

  border-radius: 8px;

  box-shadow: 0 2px 10px rgba(0,0,0,0.05);

  padding: 30px;

  text-align: center;

  width: 280px;

  transition: transform 0.3s ease;

}

.service-box:hover {

  transform: translateY(-6px);

}



/* =====================================

   FOOTER

===================================== */

footer {

  background: #0A1A4F; /* 🇬🇧 British Navy Blue */

  color: #fff;

  text-align: center;

  padding: 50px 0 40px;

}

.footer-social {

  margin-bottom: 15px;

}

.footer-social a {

  color: #d32f2f;

  margin: 0 10px;

  font-size: 1.2rem;

  transition: color 0.3s;

}

.footer-social a:hover {

  color: #fff;

}

footer p {

  color: #ccc;

  font-size: 0.9rem;

}



/* =====================================

   ANIMATIONS

===================================== */

.fade-up {

  opacity: 0;

  transform: translateY(20px);

  animation: fadeUp 1s ease forwards;

}

.fade-up-delay {

  opacity: 0;

  transform: translateY(30px);

  animation: fadeUp 1.2s ease forwards;

}

@keyframes fadeUp {

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/* =====================================

   RESPONSIVE TWEAKS

===================================== */

@media (max-width: 1024px) {

  .hero h1 {

    font-size: 3rem;

  }

}



@media (max-width: 768px) {

  .hero, .page-hero {

    min-height: 70vh;

    text-align: center;

    justify-content: center;

  }

  .hero-content {

    padding: 0 25px;

    text-align: center;

  }

  .hero h1, .page-hero h1 {

    font-size: 2.2rem;

  }

  .hero p, .page-hero p {

    font-size: 1rem;

  }

}
.footer-links {

  margin-top: 10px;

}



.footer-links a {

  color: #ccc;

  text-decoration: none;

  font-size: 0.9rem;

  transition: color 0.3s;

}



.footer-links a:hover {

  color: #fff;

}



.footer-links span {

  margin: 0 8px;

  color: #666;

}.site-logo img {
  height: 65px;
  width: auto;
  display: block;
  margin-left: 15px;
}
