/*
Theme Name: Your Company Theme
Theme URI: https://grandstream.co.id
Author: Your Company Name
Author URI: https://grandstream.co.id
Description: Custom lightweight WordPress theme for company profile website.
Version: 1.0
Text Domain: yourcompany-theme
Tags: custom, responsive, company-profile
*/

/* ===========================
   BASE
=========================== */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #111;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =============================
   HEADER
   ============================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.header-inner {
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

/* NAVIGATION */
nav.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

nav.main-nav .menu {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav.main-nav li {
  display: inline-flex;
}

nav.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
  padding: 6px 0;
}

nav.main-nav a:hover,
nav.main-nav a:focus {
  color: #ccc;
  opacity: 0.9;
}

/* Mobile Menu */
.header-menu-toggle {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .header-menu-toggle {
        display: block;
    }
}

/* Footer Base */
.site-footer {
  width: 100%;
  background: linear-gradient(#1aa8ff, #003a99);
  color: #fff;
  padding: 60px 0 30px;
  font-family: 'Merriweather', serif;
}

/* Inner Width */
.footer-inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Grid (5 columns like sisi.id) */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}

/* Column Titles */
.footer-col h4 {
  font-size: 17px;
  margin-bottom: 16px;
  color: #fff;
}

/* Navigation Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #e8e8e8;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* Certification images */
.cert-list img {
  display: block;
  margin-bottom: 12px;
  width: 120px;
}

/* Company Column */
.footer-company p {
  margin: 6px 0;
  line-height: 1.5;
}

.footer-btn:hover {
  opacity: 0.85;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
}

.footer-social a:hover {
  opacity: 0.8;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 40px;
  padding-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #eaeaea;
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-social {
    justify-content: center;
  }
}
