/*
Theme Name: Vectora Lobby Vision Craft
Theme URI: https://lovable.dev/projects/ab59f1d3-a70a-4312-bb52-4abf7d5c1fab
Author: Generated by ChatGPT
Description: Custom WordPress theme replicating the layout and style of the Vectora Lobby Vision Craft project on Lovable. Includes hero, services, about, contact sections and a dark footer. Colours approximated from the original design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lobby-vision-craft
Tags: custom, business, corporate, blog
*/

/* Basic resets */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #231f3a;
}

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

.container {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #231f3a;
}

.main-navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.main-navigation .nav-menu li {
    display: inline-block;
}

.cta-button {
    background-image: linear-gradient(90deg, #f66d6d, #f085b7);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(120deg, #0e1555, #3d236f);
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    border-radius: 4px;
    font-weight: 600;
    margin-right: 1rem;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background-image: linear-gradient(90deg, #f66d6d, #f085b7);
    color: #ffffff;
}

.btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: #faf7fc;
    color: #231f3a;
}

.services h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.services p {
    text-align: center;
    margin-bottom: 2rem;
    color: #5f5a77;
}
.services .container {
  max-width: 1100px;     /* ajuste si besoin (ex. 960 / 1200) */
  margin-inline: auto;   /* centre le bloc */
  padding-inline: 1rem;  /* respiration sur petits écrans */
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #231f3a;
}

.card p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.card ul {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.card ul li::before {
    content: "\279C";
    margin-right: 0.4rem;
    color: #f66d6d;
}

/* About section */
.about {
    padding: 4rem 0;
    background-color: #ffffff;
    color: #231f3a;
}

.about h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.about .about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.about .value-card {
    background-color: #faf7fc;
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
}

.about .stats-bar {
    margin-top: 3rem;
    background-image: linear-gradient(90deg, #f66d6d, #f085b7);
    padding: 2rem 1rem;
    border-radius: 8px;
    color: #ffffff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.about .stats-bar .number {
    font-size: 2rem;
    font-weight: 700;
}

.about .stats-bar .label {
    font-size: 0.9rem;
}

/* Contact section */
.contact {
    padding: 4rem 0;
    background-color: #faf7fc;
    color: #231f3a;
}

.contact h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.contact p {
    text-align: center;
    margin-bottom: 2rem;
    color: #5f5a77;
}
/* Centre le bloc sur la page et limite la largeur */
.contact-info.two-cols {
  display: grid;
  grid-template-columns: 1fr;      /* 1 colonne sur mobile */
  gap: 1rem 2rem;
  max-width: 900px;                /* largeur max du bloc */
  margin: 0 auto;                  /* centre horizontalement */
}

/* Passe en 2 colonnes et garde le bloc centré */
@media (min-width: 768px) {
  .contact-info.two-cols {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;   /* centre les colonnes */
  }

}

/* Texte aligné à gauche dans chaque colonne (optionnel) */
.contact-info.two-cols .info-item {
  text-align: left;
}

}

.contact-form {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    background-image: linear-gradient(90deg, #f66d6d, #f085b7);
    color: #443a6b;
    padding: 0.8rem 1.4rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.contact-info {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.free-consult {
    margin-top: 2rem;
    background-image: linear-gradient(90deg, #f66d6d, #f085b7);
    padding: 1.5rem;
    border-radius: 8px;
    color: #443a6b;
    text-align: center;
}

.free-consult h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.free-consult a {
    display: inline-block;
    margin-top: 0.5rem;
    background-color: #ffffff;
    color: #f66d6d;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

/* Footer */
.site-footer {
    background-color: #0c0422;
    color: #ffffff;
    padding: 3rem 0 2rem;
}

.site-footer .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #f9f6f8;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.site-footer .copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #a99fc7;
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/* Custom bullets for the Coalition Building card */
.custom-bullets {
    list-style: none;
    padding-left: 0;
}
.custom-bullets li {
    position: relative;
    padding-left: 1.3em;
    margin-bottom: 0.4em;
}
.puces-personnalisees li::before {
  content: "\279C";     /* symbole flèche (puce) */
  position: absolute;
  left: 0;              /* aligné au début */
  color: #f66d6d;       /* couleur de la puce, à adapter */
  font-size: 0.8em;
  top: 0.15em;
}

/* Force justification on paragraphs in services, about, and contact sections */
.services p,
.contact p,
.about p {
    text-align: center;
}

/* Logo sizing */
.logo img {
    height: 100px;
}
