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

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

/* Navbar */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #222;
  position: relative;
  z-index: 1000; /* ✅ keeps menu above hero */
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .logo h1 {
        font-size: 24px;
        font-weight: bold;
        color: #f5b921;
        margin: 0;
    }

    .logo .tagline {
        font-size: 14px;
        color: #ccc;
    }

/* Nav links (desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.nav-links a:hover {
  color: #f5b921;
}

/* Hamburger menu (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;        /* always white */
  cursor: pointer;
  z-index: 10000;     /* ✅ ensures it's always on top */
  position: relative; /* keeps it above hero background */
}


/* Mobile styles */
/* Mobile dropdown */
@media (max-width: 768px) {
    .menu-toggle {
    display: block;   /* show hamburger on mobile */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    z-index: 9999; /* ✅ ensures dropdown stays above hero */
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
/* Hero Section */
/* Hero Section *//* Hero Section */
/* Hero Section Default (Desktop) */
/* Hero Section Default (Desktop) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/Header-desktop.jpg") no-repeat center center;
    background-size: cover; /* Desktop: fill screen */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1; /* keep text above overlay */
    max-width: 600px;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #f5b921;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero-content button {
    padding: 12px 24px;
    margin-top: 20px;
    background: #f5b921;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-content button:hover {
    background: #d4a015;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
   /* Hero Section Default (Desktop) */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("images/Header-desktop.jpg") no-repeat center center;
    background-size: cover; /* Desktop: fill screen */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

    .hero-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-content button {
        font-size: 15px;
        padding: 8px 16px;
    }
}



    .logo-below-heading {
    margin: 10px 0 15px; /* spacing around logo */
}

    .logo-below-heading img {
        width: 100px; /* adjust logo size */
        height: auto;
        display: block;
    }

/* Services */
.services {
    padding: 50px 20px;
    text-align: center;
    background: #1a1a1a;
}

    .services h2 {
        margin-bottom: 30px;
        color: #f5b921;
    }

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: scale(1.05);
    }

    .card h3 {
        color: #f5b921;
        margin-bottom: 10px;
    }

/* Team Photo Section */
.team-photo {
    text-align: center;
    background: #111;
    padding: 40px 20px;
}

.team-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}


/* About */
.about {
    padding: 60px 20px;
    background: #111;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

    .about h2 {
        color: #f5b921;
        margin-bottom: 20px;
    }

    .about p {
        margin: 15px 0;
        font-size: 18px;
        line-height: 1.8;
        color: #ddd;
    }

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
    background: #1a1a1a;
}

    .contact h2 {
        font-size: 32px;
        margin-bottom: 15px;
        color: #f5b921;
    }

    .contact p {
        font-size: 18px;
        margin-bottom: 10px;
    }

.contact-info p {
    font-size: 18px;
    margin: 8px 0;
}

.contact-info a {
    color: #f5b921;
    text-decoration: none;
}

    .contact-info a:hover {
        text-decoration: underline;
    }

/* Social Media */
.social-icons {
    margin-top: 25px;
}

    .social-icons a {
        display: inline-block;
        margin: 0 15px;
    }

    .social-icons img {
        width: 40px;
        height: 40px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .social-icons img:hover {
            transform: scale(1.2);
            opacity: 0.8;
        }

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #000;
    color: #888;
}
