:root {
  --blue: #0b6fa4;
  --gold: #f5c400;
  --dark: #111;
  --light: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f4f4f4;
}
.mobile-menu {
  display: none;
}

/* NAV */
nav {
  display: flex;
  gap: 20px;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #f4f4f4;
  margin: 4px 0;
  transition: 0.3s;
}

.navbar {
  position: fixed;
  width: 100%;
  background: var(--blue);
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
  z-index: 1000;
}

.logo {
  color: var(--gold);
}
.logo img {
  size: 20%;
}

.logo span {
  color: white;
}

.navbar nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  background: url("images/hero.jpg") center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
    background: rgba(0,0,0,0.6);
  padding: 40px;
  text-align: center;
  color: white;
  border-radius: 16px;
  animation: fadeIn 1.5s ease;
}

.hero h2 {
  font-size: 4rem;
  padding: 30px;
  color: var(--gold);
}
.hero p {
    font-size: 1.5rem;
    padding-bottom: 30px;
}

/* BUTTONS */
.btn {
  padding: 12px 20px;
  margin: 10px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn.gold {
  background: var(--gold);
  color: black;
}

.btn.blue {
  background: var(--dark);
  color: white;
  border-color: #f5c400;
}

/* SECTIONS */
.section {
  padding: 100px 50px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--blue);
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: var(--blue);
  padding: 30px;
  border-radius: 12px;
  color: #f4f4f4;
  width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}
/* SERVICES */
.light {
    color: #f4f4f4;
}

/* PARALLAX */
.parallax {
  background: url("images/HERO.jpg") center/cover fixed;
  padding: 100px 50px;
  color: white;
  text-align: center;
}

.portfolio img {
  width: 250px;
  margin: 10px;
}

/* ABOUT */
.about-text {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  background: var(--blue);
  color: white;
  font-size: 1.5rem;
  padding: 80px 50px;
  text-align: center;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 15px;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

  
/* MOBILE */
@media (max-width: 768px) {
  .navbar h1 {
    display: none;
  }
 .hero {
  background-position: center;
 }
 .hero h2 {
  font-size: 1.8rem;
 }
 .hero p {
  font-size: 0.8rem;
 }
 .hero-content{
  padding: 0 10px;
 }
  .mobile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #0b6aa8;
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
  }
  .logo-mobile {
    color: #f4f4f4;
    font-weight: bold;
  }
  .logo-mobile span {
    color: #f5c400;
    font-weight: bold;
  }
 
  nav a {
    color: #f4f4f4;
    text-decoration: none;
  }
  .navText {
    padding-left: 60px;
  }
   
  /* HIDE DESPTOP NAV */
  .desktop-nav {
    display: none;
  }
  .contact {
    font-size: 1.1rem;
  }
  .cards {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}