/*
Theme Name: Webinfotek
Theme URI: https://www.webinfotek.in
Author: Webinfotek
Description: Custom creative black & white theme for Webinfotek Agency.
Version: 1.0
License: GPL v2 or later
Text Domain: webinfotek
*/

/* ==================================================
   COLOR SYSTEM
================================================== */

:root {
  --black: #000;
  --white: #fff;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-300: #cfcfcf;
  --gray-400: #b0b0b0;
  --gray-500: #999;
  --gray-600: #666;
  --gray-700: #444;
  --gray-800: #151515;
  --primary: #000;
  --secondary: #ed2224;
}

/* ==================================================
   BASE
================================================== */

html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-y: scroll;
}

/* ==================================================
   FULLPAGE SECTION BEHAVIOR
================================================== */

main section {
  min-height: 100vh;
  display: flex;
  align-items: center;              /* vertical centering */
}

/* Relax on mobile */
@media (max-width: 768px) {
  main section {
    min-height: auto;
    padding: 20px 0;
    display: block;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================================================
   GLOBAL TYPOGRAPHY
================================================== */

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: 0.3px;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.section-intro {
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 50px;
  text-align: center;
}

/* ==================================================
   LINKS
================================================== */

a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gray-300);
}


/* ==================================================
   BUTTON SYSTEM
================================================== */

.btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.25s ease;
}

/* Primary */
.btn,
.btn-primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

.btn:hover,
.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

/* Dark */
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}

.btn-dark:hover {
  background: transparent;
  color: var(--black);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

