/* GLOBAL ------------------------------------------------------------ */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0b0b0c; /* Noir profond */
    color: #f2f2f2;
    overflow-x: hidden;
}

h1, h2, h3 {
    letter-spacing: 0.6px;
    color: #f6f3e9; /* Blanc chaud */
}

/* GOLD ACCENT -------------------------------------------------------- */
:root {
    --gold: #d4af37; /* Or premium */
    --gold-light: #e8c766;
    --gold-glow: rgba(212, 175, 55, 0.35);
}

/* HEADER -------------------------------------------------------------- */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 10;
}

header .container {
    width: 90%;
    margin: auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.7rem;
    background: linear-gradient(90deg, var(--gold), #fff2b3);
    -webkit-background-clip: text;
    color: transparent;
}

header nav a {
    color: #eee;
    margin-left: 30px;
    text-decoration: none;
    font-size: 1.05rem;
    transition: 0.25s;
}

header nav a:hover {
    color: var(--gold-light);
}

/* HERO --------------------------------------------------------------- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #131313 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    animation: pulse 6s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff9e6;
    margin-bottom: 15px;
}

/* BUTTON ---------------------------------------------------------------- */
.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    color: #171717;
    border-radius: 12px;
    font-size: 1.15rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 12px var(--gold-glow);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px var(--gold-glow);
}

/* SECTIONS ------------------------------------------------------------ */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 55px;
    color: var(--gold-light);
}

/* SERVICES ------------------------------------------------------------ */
.services-section {
    padding: 140px 30px 100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* GLASS BOX ----------------------------------------------------------- */
.glass-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(16px);
    transition: 0.3s;
}

.glass-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(212,175,55,0.20);
    border-color: var(--gold-light);
}

.glass-box img {
    height: 70px;
    margin-bottom: 20px;
}

.glass-box a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
}

/* ABOUT -------------------------------------------------------------- */
.about-section {
    padding: 150px 30px;
}

.about-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
    align-items: center;
}

.about-img {
    width: 300px;
    height: 300px;
    border-radius: 25px;
    object-fit: cover;
    border: 2px solid var(--gold-light);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.about-text p {
    color: #d1cfc8;
    line-height: 1.7;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    margin-top: 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: .25s;
}

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
}

/* WHY -------------------------------------------------------------- */
.why-section {
    padding: 140px 30px;
}

.why-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
}

.why-box {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.18);
    backdrop-filter: blur(10px);
    transition: .2s;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px var(--gold-glow);
}

/* GALLERY ------------------------------------------------------------ */
.gallery-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-grid img {
    width: 100%;
    border-radius: 18px;
    border: 2px solid rgba(212,175,55,0.15);
    box-shadow: 0 0 15px rgba(212,175,55,0.12);
}

/* CTA ------------------------------------------------------------ */
.cta-section {
    padding: 150px 30px;
    text-align: center;
}

.cta-section h2 {
    color: var(--gold);
    margin-bottom: 15px;
}

/* FOOTER ------------------------------------------------------------- */
footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 70px;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(212,175,55,0.2);
    color: #e9e5d8;
}


.user-menu img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.user-menu img:hover {
    transform: scale(1.05);
}

.big-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.login-container, .profile-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 25px;
    text-align: center;
}

input {
    width: 90%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: none;
}

#avatarUpload {
    margin-bottom: 15px;
}


/* HEADER FIX */
.glass-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* force les éléments à se séparer */
    position: relative;
}

nav {
    display: flex;
    gap: 20px;
}

/* Position du menu utilisateur à droite */
.user-menu {
    margin-left: 20px;
}

.user-menu img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: 0.2s;
    object-fit: cover;
}

.user-menu img:hover {
    transform: scale(1.07);
}


.logo-img {
    height: 42px;
    margin-right: 10px;
    vertical-align: middle;
    filter: drop-shadow(0 0 4px rgba(212,175,55,0.35));
}


/* Curseur personnalisé */
body {
    cursor: url('assets/img/info-cursor.png'), auto; /* Remplace l'image par celle de ton curseur */
}

/* Curseur spécifique aux éléments cliquables (liens, boutons) */
a, button {
    cursor: url('assets/img/info-cursor-clickable.png'), pointer; /* Un autre curseur pour les éléments cliquables */
}
