/**
 * Theme Name:        ARTRACS Theme
 * Theme URI:         https://artracs.com/
 * Description:       Nothing tbh
 * Version:           1.0.0
 * Author:            Tijesunimi Adebiyi
 * Template:          twentytwentyfive
 * Tags:              block-patterns, full-site-editing
 * Text Domain:       atracs-theme
 * Tested up to:      6.8
 * Requires at least: 6.2
 * Requires PHP:      5.6
 */
 
 
 

/* Root variables */
:root {
  --primary-color: #faebeb;
  --accent-color: #50045a;
  --bg-light: #f9f9f9;
  --text-color: #070118;
  --header-text: #001f4d;
}

/* Resets / basic layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter';
  color: var(--text-color);
  background: white;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700; /* or whatever weight you prefer */
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar / Header */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  background: var(--primary-color);
  color: var(--header-text);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

.site-title {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
  color: #333;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--header-text);
  font-weight: bold;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Hero section */
.hero {
  position: relative;
  height: 80vh;
  background: url('https://images.unsplash.com/photo-1590455374472-3c6db422cadb?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 0, 0.5);
}

.hero-text {
  position: relative;
  padding: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Button */
.btn {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #3a0343;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-light);
}

.section.dark {
  background: url('https://images.unsplash.com/photo-1508780709619-79562169bc64?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  position: relative;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

.section.dark > * {
  position: relative;
  z-index: 1;
}

/* Mission cards / Cards */
.mission-cards {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  background: rgba(23, 1, 44, 0.9);
  color: var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Footer & Social icons */
.footer {
  width: 100%;
  clear: both;
  position: relative;
  margin-top: 2rem;
  background: var(--primary-color);
  color: var(--header-text);
  text-align: center;
  padding: 2rem 1rem;
}

.social-icons {
  margin-bottom: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  border-radius: 50%;
  background: #fff;
  color: #001f4d;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.social-icons a:hover {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .mission-cards {
    flex-direction: column;
    align-items: center;
  }
}


/* Team page */
.gallery-picture {
  max-width: 70%;}