/* =====================================================
   Aleya Corporation — CSS Base
   Foundation only (no design)
===================================================== */

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root */
:root {
    --font-main: 'Montserrat', sans-serif;
}

/* Document */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Body */
body {
    font-family: var(--font-main);
    line-height: 1.5;
    min-height: 100vh;
    background-color: #000000;
}

/* Text elements */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
}

p {
    max-width: 75ch;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Media */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Forms */
input,
button,
textarea,
select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Buttons */
button {
    cursor: pointer;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Accessibility */
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* NAVBAR CONTAINER */
.navbar {
    position: fixed;
    height: 5rem;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
}

/* BLUR + TRANSPARENCE */
.navbar-blur {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(18px);
}

/* CONTENT */
.navbar-content {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 40px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* LOGO */
.navbar-logo img {
    height: 3rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.navbar-logo:hover img {
    opacity: 1;
}

/* LINKS */
.navbar-links {
    display: flex;
    justify-content: center;
    gap: 6rem;
    list-style: none;
}

.navbar-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.navbar-links a:hover {
    color: white;
}

/* ACCOUNT ICON */
.navbar-account img {
    height: 3rem;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.navbar-account:hover img {
    opacity: 1;
}

/* IMAGE DE FOND FIXE */
.background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("media/homeview_back.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

/* CONTENU QUI SCROLL */
.content {
    position: relative;
    z-index: 1;
    min-height: 200vh;
    /* juste pour tester le scroll */
}

#section-text1 {
    color: rgb(255, 255, 255);
    text-align: center;
    font-weight: bold;
    margin-top: 7%;
    font-size: 20px;
}

#section-text1-1 {
    color: rgb(255, 255, 255);
    text-align: center;
    align-items: center;
    margin-top: 1%;
    font-size: 10px;
    display: flex;
    margin-bottom: 6%;
    justify-content: center;
}

.hw-section {
    padding: 0px 5%;
    align-items: center;
    justify-content: center;
    display: flex;
}

/* =========================                         carte ADC 2023                               ============================*/

.hw-card {
    background: rgb(255, 255, 255);
    border-radius: 30px;
    width: 100%;
    height: 800px;
    padding: 24px;
    color: #000000;
    display: flex;
    flex-direction: column;
}

.hw-title {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.hw-desc-1 {
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 25px;
}

.hw-desc-2 {
    text-align: left;
    font-size: 12px;
    margin-bottom: 25%;
}


/* FOOTER */
footer {
    background: #222;
    color: white;
    padding: 50px 80px;
    margin-top: 80px;
}

.h4footer {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col {
    width: 300px;
    margin-bottom: 30px;
}

.col ul {
    list-style: none;
    margin-top: 10px;
}

.col ul li {
    margin: 5px 0;
}

.socials {
    display: flex;
    margin-top: 60px;
    gap: 16%;
}

.socials img {
    width: 24px;
    margin: 10px 10px 0 0;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 50px;
    font-size: 12px;
    justify-content: center;
    display: flex;
    text-align: center;
}