/*
Theme Name: Astra Child — Galerie Marjorie
Template: astra
Version: 1.0
*/

/* === Galerie Marjorie — Design custom === */
body {
    background-color: #0a0a0a !important;
    color: #e0e0e0 !important;
}

/* Header */
.site-header {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15) !important;
}

.site-title a, .site-branding .site-title a {
    color: #c9a96e !important;
    letter-spacing: 0.15em;
    font-weight: 300;
}

/* Navigation */
.main-navigation a, .ast-builder-menu a {
    color: #e0e0e0 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.main-navigation a:hover, .ast-builder-menu a:hover {
    color: #c9a96e !important;
}

/* Content */
.entry-content {
    background: #0a0a0a;
}

/* Gallery shortcode styling */
.gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 40px 0;
}

.gallery-item {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.12);
}

.gallery-item img {
    border: none !important;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* Footer */
.site-footer, .ast-footer-copyright {
    background: #050505 !important;
    border-top: 1px solid rgba(201, 169, 110, 0.1) !important;
}

.ast-footer-copyright a {
    color: #c9a96e !important;
}

/* Headings */
h1, h2, h3 {
    font-weight: 300 !important;
    letter-spacing: 0.1em !important;
}

/* Links */
a {
    color: #c9a96e;
    transition: color 0.3s;
}

a:hover {
    color: #e0c080;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr !important;
    }
}

/* Masquer le titre de la page sur l'accueil (déjà dans le hero) */
.home .entry-header,
.home .page-title,
.home h1.entry-title {
    display: none !important;
}

/* Masquer le site-title dans le header sur l'accueil (MARJORIE est déjà dans le hero) */
.home .site-branding .site-title {
    display: none !important;
}

/* Sauf sur les autres pages */
.ast-page-builder-template .site-branding .site-title {
    display: block !important;
}
