/*
Theme Name: Sinatra Child
Template: sinatra
Version: 1.1
Description: Custom child theme for Zaak Materials header layout
Author: Imran
*/

/* Reset basic spacing */
body, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- TOP INFO BAR ---------- */
.top-bar {
  background-color: #1a2735;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 50px;
  font-size: 14px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar i {
  color: #00c9c9;
  margin-right: 6px;
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: #00c9c9;
}

/* ---------- MAIN HEADER ---------- */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-left img {
  height: 55px;
  width: auto;
}

.brand-text {
  font-size: 13px;
  color: #777;
  line-height: 1.2;
}

.brand-text strong {
  font-weight: 700;
  color: #444;
}

/* ---------- NAVIGATION MENU ---------- */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
}

.nav-menu li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #00c9c9;
}

/* ---------- GET STARTED BUTTON ---------- */
.get-started {
  background: linear-gradient(to right, #00d2c5, #007bff);
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.3);
}

.get-started:hover {
  opacity: 0.9;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 8px 20px;
  }
  .main-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}


/*
Theme Name: Sinatra Child
Template: sinatra
Version: 1.0
*/

/* ---------- FOOTER BASE STYLES ---------- */
.custom-footer {
  background-color: #0b2239;
  color: #ffffff;
  padding: 70px 5%;
  font-family: 'Inter', sans-serif;
  position: relative;
  background-image: radial-gradient(#132f4b 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ---------- FOOTER GRID ---------- */
.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ---------- LOGO + ABOUT ---------- */
.footer-logo {
  width: 160px;
  margin-bottom: 25px;
}

.footer-column.about p {
  line-height: 1.7;
  color: #cfd6df;
  font-size: 15px;
  margin-bottom: 20px;
}

/* ---------- SOCIAL ICONS ---------- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #00b8a9;
}

/* ---------- COLUMN HEADINGS ---------- */
.footer-column h4 {
  color: #00b8a9;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* ---------- LINKS ---------- */
.footer-menu,
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li,
.footer-column ul li {
  margin-bottom: 10px;
}

.footer-menu a,
.footer-column ul li {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #00b8a9;
}

/* ---------- CONTACT BOX ---------- */
.contact-box {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px 18px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-box:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact-box i {
  color: #00b8a9;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 4px;
}

.contact-box strong {
  display: block;
  font-weight: 700;
  color: #ffffff;
}

.contact-box div {
  font-size: 14px;
  color: #cfd6df;
  line-height: 1.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .custom-footer {
    padding: 50px 20px;
  }
  .footer-social {
    justify-content: start;
  }
}
/*
Theme Name: Sinatra Child
Template: sinatra
Version: 1.0
*/

/* ---------- FOOTER ---------- */
.custom-footer {
  background-color: #0b2239;
  color: #ffffff;
  padding: 70px 5%;
  font-family: 'Inter', sans-serif;
  background-image: radial-gradient(#132f4b 1px, transparent 1px);
  background-size: 22px 22px;
}

/* GRID LAYOUT */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

/* LOGO + ABOUT */
.footer-logo {
  width: 160px;
  margin-bottom: 25px;
}

.footer-column.about p {
  line-height: 1.7;
  color: #cfd6df;
  font-size: 15px;
  margin-bottom: 25px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 15px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #00b8a9;
}

/* HEADINGS */
.footer-column h4 {
  color: #00b8a9;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

/* LINKS */
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #00b8a9;
}

/* CONTACT BOX */
.contact-box {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px 18px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-box:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact-box i {
  color: #00b8a9;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 4px;
}

.contact-box strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
}

.contact-box a {
  color: #cfd6df;
  text-decoration: none;
  font-size: 14px;
}

.contact-box a:hover {
  color: #00b8a9;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .custom-footer {
    padding: 50px 20px;
  }
}
