* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@view-transition {
  navigation: auto;
}
html {
    scroll-behavior: smooth;
    height: 100%; /* Force le HTML à prendre toute la hauteur de l'écran */
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #3e568d;
    line-height: 1.6;
    
    /* CORRECTIONS ICI : */
    margin: 0;               /* Supprime le bandeau blanc à gauche et à droite du footer */
    padding: 0;              /* Sécurité pour éviter les décalages */
    min-height: 100%;        /* Force le body à faire au moins la taille de l'écran */
    display: flex;           /* Active Flexbox pour gérer l'alignement vertical */
    flex-direction: column;  /* Aligne les éléments du site (header, main, footer) en colonne */
}
main {
    flex: 1; /* Dit à Flexbox d'étirer le contenu pour pousser le footer tout en bas */
}

a img {
    border: none;
    text-decoration: none;
}
header {
    background: #1F2A44;
    color: #FFFFF0;
    padding: 20px 0;
}

.active-filter {
    color: #1F2A44 !important;
    text-decoration: underline !important;
    font-weight: 800; /* Plus épais pour voir quel filtre est actif */
}

/* Définition de l'animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px); /* Légère impulsion vers le haut */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Application de l'animation sur la grille */
.animate-fade {
    animation: fadeInUp 0.4s ease-out forwards;
}

/* Animation bonus pour les liens de la barre latérale */
.portee-link {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    color: #3e568d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.25s ease-in-out; /* Transition douce au survol */
}

.portee-link:hover, .active-filter {
    color: #1F2A44 !important;
    background-color: #eef2f7; /* Un léger fond apparaît au survol/clic */
    text-decoration: none !important;
    padding-left: 12px; /* Petit effet de décalage dynamique */
}

.nav-container {
    width: 90%;
    text-align: center;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav {
    display: flex;
    gap: 30px;
}
nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    font-weight: 600;
    color: #FFFFF0;

    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

nav a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #FFFFF0;
    transition: width 0.3s ease;
}

nav a .arrow {
    transition: transform 0.3s ease;
}

nav a:hover::after{
    width: 100%;
}

nav a:hover .arrow{
    transform: translateX(4px);
}

/* =========================
   HAMBURGER STYLE
========================= */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: rgb(56, 56, 56);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animation en X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}


/* =========================
   VERSION MOBILE
========================= */
.mobile-call-btn {
    display: none;
}
.mobile-calendar-btn {
    display: none;
}
/* ======================
   MOBILE
====================== */

@media (max-width: 900px) {

    .nav-container {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #1F2A44;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    /* Barre hamburger + bouton */
    .mobile-bar {
        width: 100%;
        display: flex;
        justify-content: space-between; /* ← clé ici */
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 12px 20px;
    }

    /* Menu caché */
    nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        align-items: center;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.35s ease;
    }

    nav a {
        padding: 15px 0;
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.15);
    }

    nav.active {
        max-height: 600px;
        opacity: 1;
    }

    /* Hamburger */
    .hamburger {
        display: flex;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        justify-self: center;
        margin: 0;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #ffffff;
        border-radius: 3px;
        transition: all 0.4s ease;
    }

    /* Bouton appeler */
    .mobile-call-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #ffffff;
        color: #1F2A44;
        border-radius: 50%;
        text-decoration: none;
        /* Animation d’apparition */
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.3s ease forwards;
        animation-delay: 0.1s;
        transition: transform 0.15s ease, background 0.3s ease;
    }

    .mobile-call-btn:active {
        transform: scale(1.12);
    }

    .phone-icon {
        width: 20px;
        height: 20px;
    }
    .mobile-calendar-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #ffffff; /* couleur secondaire */
        color: #1F2A44;
        border-radius: 50%;
        text-decoration: none;
        transition: transform 0.15s ease, background 0.3s ease;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.3s ease forwards;
        animation-delay: 0.1s;
    }

    .mobile-calendar-btn:active {
    transform: scale(1.12);
    }

    .calendar-icon {
        width: 20px;
        height: 20px;
    }

    body {
        padding-bottom: 80px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    padding: 200px 100px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.left {
    text-align: end;
    color: #FFFFF0;
}

.bckimg {
    background-image: url("images/baniereAstresFelins.jpg");
    background-size: cover;            /* étire proprement */
    background-position: center;       /* centre l’image */
}
.ctr {
    text-align: center;
}

/* h2 section */
h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  letter-spacing: .5px;
  color: var(--primary-dark);
}

.h2-separator {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2%;
    gap: 20px;
}

.h2-separator::before,
.h2-separator::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #ccc
    );
}

.h2-separator::after {
    background: linear-gradient(
        to left,
        transparent,
        #ccc
    );
}

/* Titre Site Web */
.htitle {
    font-size: 3rem;
    letter-spacing: 1px;
}


.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.cards-container {
    width: 85%;
    margin: auto;
    display: flex;
    gap: 30px;           /* espace entre les cards */
    flex-wrap: wrap;      /* passe à la ligne si besoin */
    align-items: stretch; /* toutes les cards prennent la même hauteur */
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.card {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
.card1 {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: justify;
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
    margin-bottom: 10px;
}
.card1 img {
    cursor: pointer;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
}

.card-title {
    text-align: center;
    margin: 15px 10px 5px;
    font-size: 1.2em;
}

.card-desc {
    flex-grow: 1;        /* occupe l’espace disponible pour pousser le footer vers le bas */
    padding: 0 15px;
}
.card h3 {
    margin: 15px 0 10px 0;
}
.card p {
    flex-grow: 1;
}

.card-price {
    margin-top: auto;
    font-weight: 600;
    color: #CC5E13;
    font-size: 18px;
}
.card-footer {
    text-align: center;
    padding: 15px;
    margin-top: auto;    /* pousse le footer tout en bas de la card */
}
.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.section-cta {
    text-align: center;
    background: #F5F5E8;
    padding: 80px 20px;
}
/* Card Premium */
.premium-card {
    position: relative;
    background: #FFFFF0;
    border: 2px solid #98A869;
    border-radius: 16px;
    padding: 25px 20px 30px;
    box-shadow: 0 10px 25px rgba(83, 92, 57, 0.15);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(83, 92, 57, 0.25);
}

/*cards chaton*/
.chatons-section {
    padding: 80px 20px;
    background: #ffffff; /* ivoire */
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.chatons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.chaton-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.chaton-card:hover {
    transform: translateY(-8px);
}

.chaton-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.chaton-content {
    padding: 20px;
}

.chaton-content h3 {
    color: #535C39;
    margin-bottom: 8px;
}

.chaton-status {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chaton-status.disponible {
    background: #98A869;
    color: white;
}

.chaton-status.reserve {
    background: #CC5E13;
    color: white;
}
.chaton-status.adopte {
    background: #7e7e7e;
    color: white;
}
.chaton-status.soon {
    background: #2a395c;
    color: white;
}

.chatons-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 900px) {
    .chatons-grid {
        grid-template-columns: 1fr;
    }
}

.chatons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.chaton-card-hover {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    background: white;
    transition: 0.4s ease;
}

.chaton-card-hover:hover {
    transform: translateY(-8px);
}

.chaton-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.chaton-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.chaton-card-hover:hover .chaton-image img {
    transform: scale(1.1);
}

/* Overlay info caché */
.chaton-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,240,0.97); /* ivoire */
    padding: 25px;
    transition: 0.4s ease;
}

.chaton-card-hover:hover .chaton-info {
    bottom: 0;
}

.chaton-info h3 {
    color: #535C39;
    margin-bottom: 10px;
}
.chaton-detail-section {
    padding: 80px 20px;
    background: #FFFFF0;
}

.chaton-title {
    text-align: center;
    font-size: 2.5rem;
    color: #535C39;
    margin-bottom: 50px;
}

.chaton-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* SLIDER */

.chaton-slider {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.4s ease;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(83,92,57,0.8);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev { left: 15px; }
.next { right: 15px; }

/* DESCRIPTION */

.chaton-description {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.description-text {
    margin: 20px 0 30px;
    line-height: 1.6;
}

/* Bouton réservation */

.reserve-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
}
/* Conteneur principal en Flexbox */
.page-layout-columns {
    display: flex;
    gap: 30px; /* Espace entre la grille et la barre latérale */
    align-items: flex-start;
}

/* La colonne des chatons prend la majorité de l'espace */
.main-chatons-content {
    flex: 3;
}

/* La barre latérale prend le reste */
.sidebar-portees {
    flex: 1;
    background: #f9fbfd; /* Léger fond pour la faire ressortir */
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #3e568d; /* Rappel de votre couleur principale */
}

.sidebar-title {
    font-size: 20px;
    color: #3e568d;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Style des éléments de la liste */
.portee-item {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.portee-item:last-child {
    border-bottom: none;
}

.portee-item h4 {
    margin: 0 0 5px 0;
    color: #1F2A44;
}

.portee-date {
    font-size: 12px;
    color: #718096;
    display: block;
    margin-bottom: 5px;
}

/* RESPONSIVE : Sur mobile, on remet tout l'un en dessous de l'autre */
@media (max-width: 900px) {
    .page-layout-columns {
        flex-direction: column;
    }
    
    .main-chatons-content, .sidebar-portees {
        width: 100%;
        flex: none;
    }
}
/* RESPONSIVE */

@media (max-width: 900px) {
    .chaton-detail-grid {
        grid-template-columns: 1fr;
    }

    .chaton-slider {
        height: 300px;
    }
}
/* Badges */
.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.badge.disponible {
    background: #98A869;
}

.badge.reserve {
    background: #CC5E13;
}
.badge.vendu {
    background: #666;
}
.badge.bientot {
    background: #2a395c;
}

/* Responsive */
@media (max-width: 900px) {
    .chatons-grid {
        grid-template-columns: 1fr;
    }

    .chaton-info {
        position: relative;
        bottom: 0;
    }
}

/* Badge Premium */
.premium-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #CC5E13;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Prix en bas */
.premium-card .card-price {
    margin-top: auto;
    font-size: 1.4rem;
    font-weight: 700;
    color: #535C39;
    padding-top: 15px;
}
@media (max-width: 900px) {

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .three-columns {
        grid-template-columns: 1fr;
    }

}

/*Btn class */ 
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #1F2A44;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    margin-right: 1%;
    border: 2px solid #1F2A44;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.btn:hover {
    background: #2f498b;
    border: 2px solid #ffffff;
    transform: scale(1.03);
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 14px;
  font-weight: 600;
  color: #0077ff;

  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.btn-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #0077ff;
  transition: width 0.3s ease;
}

.btn-more .arrow {
  transition: transform 0.3s ease;
}

.btn-more:hover::after {
  width: 100%;
}

.btn-more:hover .arrow {
  transform: translateX(4px);
}

hr {
    width: 80%;
    margin: 20px auto;
    border: none;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #7a7a7a,
        transparent
    );
}

/*Section FOOTER INDEX*/
.icon-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
    margin: 60px 0;
    flex-wrap: wrap; /* sécurité responsive */
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box img {
    width: 100px;        /* taille icône */
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}

.icon-box:hover img {
    transform: scale(1.05);
}

.info-section {
    padding: 60px 20px;
}


.info-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.info-col {
    flex: 1;
    padding: 0 40px;
}

.info-col:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.1);
}

.info-col h3 {
    margin-bottom: 10px;
    text-align: center;
}

.info-col hr {
    width: 60%;
    margin: 15px auto 25px auto;
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #b08d57, transparent);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

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

@media (max-width: 900px) {
    .info-container {
        flex-direction: column;
        gap: 40px;
    }

    .info-col {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 30px;
    }

    .info-col:last-child {
        border-bottom: none;
    }
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltip-text {
  visibility: hidden;       /* caché par défaut */
  width: max-content;       /* s'adapte au texte */
  background-color: #333;   /* fond sombre */
  color: #fff;              /* texte blanc */
  text-align: center;
  padding: 5px 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120%;                /* place le tooltip en dessous */
  opacity: 0;               /* pour l'animation */
  transition: opacity 0.3s ease, top 0.3s ease; 
  z-index: 10;
  white-space: nowrap;      /* éviter le retour à la ligne */
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  top: 100%;                /* remonte légèrement pour un effet smooth */
  opacity: 1;
}

/* Overlay pour l'image agrandie */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

#lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}

#lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);

    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#lightbox-overlay.show img {
  transform: scale(1);
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

#lightbox-close:hover {
  color: #CC5E13;
}

 /* section*/
.section {
    padding: 20px 10px;
}

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

.section h1,
.section h2 {
    text-align: center;
    margin-bottom: 25px;
}

.section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

/*UL*/
.section ul {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 10px;
}

/* ===== FORMULAIRE DEVIS ===== */
small {
    font-size: 15px;
    font-style: italic;
}
.devis-form {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a395c; /* ton vert foncé */
}
.form-group input {
    width: 100%;
}

.form-row.full {
    flex-direction: column;
}

.devis-form input,
.devis-form textarea,
.devis-form select {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.15);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.devis-form textarea {
    min-height: 150px;
    resize: vertical;
}

.devis-form input:focus,
.devis-form textarea:focus,
.devis-form select:focus {
    outline: none;
    border: 1px solid #98A869;
    box-shadow: 0 0 0 3px rgba(152,168,105,0.2);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.checkbox-row {
    align-items: center;
}

.devis-form button {
    align-self: center;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .form-row {
        flex-direction: column;
    }

    .radio-group {
        flex-wrap: wrap;
    }
}

.success-message {
    background: #1F2A44;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/*Footer*/

footer {
    background: #1F2A44;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}
