/*
Theme Name: Kon9 Website
Author: Ikram
Description: A custom WordPress theme designed by Ikram.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kon9-website
*/


@font-face {
  font-family: 'Futura';
  src: url('./assets/fonts/Futura-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


body {
  font-family: 'Futura';
  background-color: #000; /* dark background */
  color: #fff; /* white text */
  margin: 0;
  padding: 0;
}

/* Header and Footer styling */
header, footer {
  padding: 20px;
  text-align: center;
  background-color: #111; /* darker than body for contrast */
  color: #fff;
}

/* Logo styles */
.logo-placeholder, .logo {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
}

.navbar-brand svg {
  height: 70px; /* Increase from 40px to 70px */
  width: auto;
  fill: white;
}

/* Section styling */
section {
  padding: 40px 20px;
}

/* Lists */
ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
}

/* Client logos container */
.client-logos {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Individual client block */
.client {
  background-color: #333;
  padding: 20px;
  width: 100px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  transition: background-color 0.3s ease;
}

.client:hover {
  background-color: #555;
}

main {
  padding-top: 100px; /* adjust based on header height */
}

.selector {
  font-family: 'Futura', sans-serif;
}