/*
 Theme Name: SkyTechNY Convergint Style
 Theme URI: https://skytechny.com
 Author: Skyline Technologies, Inc.
 Author URI: https://skytechny.com
 Description: Clean, corporate, Convergint-inspired theme for SkyTechNY (government, high-rise, commercial security).
 Version: 1.0
 Text Domain: skytechny-convergint-style
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f3f4f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Nav – white like Convergint */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}



.site-branding {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-title {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #111827;
}

.site-title span {
  color: #b91c1c; /* red accent, similar to Convergint */
}

.site-description {
  font-size: 0.7rem;
  color: #6b7280;
  text-transform: uppercase;
}

.site-logo-link {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.site-logo-link:hover .site-title {
  color: #b91c1c; /* subtle hover effect, adjust or remove if you want */
}


.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: #b91c1c;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.18s ease;
}

.btn-primary {
  background: #b91c1c;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(185, 28, 28, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.45);
}

.btn-outline {
  background: transparent;
  color: #b91c1c;
  border: 1px solid #b91c1c;
}

.btn-outline:hover {
  background: #b91c1c;
  color: #ffffff;
}

/* Hero – left text, right image, corporate feel */

/* HERO – FULL-WIDTH SLIDER ABOVE CONTENT */

.hero {
  padding: 0;
  margin: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 70vh; /* makes the images big */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(
    120deg,
    rgba(15,23,42,0.7),
    rgba(15,23,42,0.4)
  );
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  padding: 4.5rem 1.5rem;
}

.home-intro-inner {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b91c1c;
  margin-bottom: 0.8rem;
}

.home-intro-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin-bottom: 0.7rem;
  color: #111827;
}

.home-intro-text {
  color: #4b5563;
  margin-bottom: 1.6rem;
}


.hero-content h1 {
  font-size: clamp(2.3rem, 3.5vw, 3.2rem);
  margin-bottom: 0.8rem;
}

.hero-content p {
  max-width: 40rem;
  margin: 0 auto 1.8rem auto;
  color: #e5e7eb;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* on mobile, keep it tall */
@media (max-width: 960px) {
  .hero-slider {
    min-height: 65vh;
  }
}





/* Sections */

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.section-subtitle {
  color: #6b7280;
  max-width: 38rem;
  margin-bottom: 2.4rem;
  font-size: 0.98rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.7rem;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #111827;
}

.card p {
  margin-bottom: 0.4rem;
  color: #4b5563;
  font-size: 0.93rem;
}

.pill-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

/* Services page hero */

.services-hero {
  padding: 5.5rem 0 2.5rem;
  background:
    linear-gradient(90deg, rgba(248,250,252,0.96), rgba(241,245,249,0.92)),
    url("assets/cybersecurity%20cameras.jpg") center/cover no-repeat;
}




.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
}

.service-list {
  display: grid;
  gap: 1.4rem;
}

.service-item {
  border-radius: 1rem;
  background: #ffffff;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

/* Contact page hero */

.contact-hero {
  padding: 5.5rem 0 2.5rem;
  background:
    linear-gradient(90deg, rgba(15,23,42,0.9), rgba(15,23,42,0.75)),
    url("assets/NY%20cameras.jpg") center/cover no-repeat;
  color: #f9fafb;
}




/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

/* Contact page — static hero image above content */

.contact-hero-static {
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.contact-hero-static-inner {
  width: 100%;
  min-height: 45vh; /* make this bigger (60–70vh) if you want a taller banner */
  background-image: url("assets/consultation.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
form label {
  display: block;
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.25rem;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */

.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 2.4rem 0;
  font-size: 0.85rem;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* Responsive */

@media (max-width: 960px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 0.75rem 0;
    gap: 0.75rem;
  }
  .main-nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .contact-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
