body, html {
	height: 100%;
	margin: 0;
	font-family: "Helvetica Neue", "Arial", sans-serif;
	background-color: var(--primary-bg-container-color);
    color: var(--primary-font-color);
}

a {
    color: var(--primary-color);	
}

.film img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.film:hover img {
    filter: brightness(70%);
}

.film:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(var(--primary-bg-color), 0.75);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 1500;
}

#scrollTopBtn:hover {
    background: var(--primary-color);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; /* IMPORTANT : hauteur connue */
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.navbar-bg {
    background: var(--primary-bg-menu-color);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);	
}

.navbar-brand, .navbar-brand:hover {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar-brand:focus, .navbar-brand:hover {
    color: #fff;
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: #fff;
    background: transparent;
}

.lang-switch-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    margin-top: 2rem; 
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.lang-switch-container a {
    text-decoration: none;
    color: #fff;
    margin: 0 0.5rem;
}

.lang-switch-container a:hover {
    color: var(--primary-color);
}

.lang-switch-container .lang-separator {
    font-size: 1.5em;
    font-weight: 500;
    margin: 0 0.5rem;
    color: #fff;
}

/* MENU FULL SCREEN */
#fullscreenMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0,0,0,0.80);
    overflow: hidden;
    transition: height 0.5s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#fullscreenMenu.open {
	display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;	
    height: 100%;
}

#fullscreenMenu a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(1rem, 3vw, 2.3rem);
	line-height: 1.15;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

#fullscreenMenu a:hover {
    color: var(--primary-color);
}

#closeMenu {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

.menu-toggle {
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 3000;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.35s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* ÉTAT OUVERT */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}

/* PAGES */
.header {
	position: relative;
	overflow: hidden;
}

.header-bg {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100% - var(--nav-height));
    background-image: url('/img/parallax-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    padding: calc(var(--nav-height) + 2rem) 0 1rem;
    color: #fff;
    text-align: center;
}

.header-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
}

.container-bg {
	background-color: var(--primary-bg-container-color);	
}

.text-brand {
    color: var(--primary-color) !important;
}		

/* HERO */
.hero {
	position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	background: url("/img/photo-michel-petrossian.jpg") center center / cover no-repeat;
	color: #fff;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.hero-content {
	margin-top: auto;       /* pousse en bas */
	text-align: center;
	padding: 2rem;
	padding-bottom: 1.5rem; /* juste au-dessus des blocs */
}

.hero-content, .choice-blocks {
    position: relative;
    z-index: 2;
}

.hero h1, .hero h1 span {
	font-size: clamp(2rem, 5vw, 4rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.3rem;
}

.hero h3 {
	font-family: 'Cormorant Italic', serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    opacity: 0.9;
}

.hero-spacer {
    flex: 1;
}

/* BLOCKS */
.choice-blocks {
	width: 100%;
}

.choice {
	padding: 5rem 2rem;
	text-align: center;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
	font-size: 1.3rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.choice:hover {
	opacity: 0.8;
}

.choice-film {
	background: rgba(15, 15, 15, 0.9);
}

.choice-contemporary {
	background: rgba(70, 70, 70, 0.9);
}

/* MOBILE */
@media (max-width: 767px) {
	.hero {
		min-height: 100vh;
	}

	.hero-content {
		margin-top: 0;
		padding-top: 6rem;   /* sous la navbar */
		padding-bottom: 2rem;
	}

	.choice {
		font-size: 1.1rem;
		padding: 2.5rem 1.5rem;
	}
}

/* DESKTOP */
@media (min-width: 768px) {
    .hero-spacer {
        display: none;
    }
}

/* CONTACT */
.contact-form {
    margin-top: 3rem;
}

.contact-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    padding: 0.75rem 0;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
}

.contact-form .form-control:focus {
    background: transparent;
    box-shadow: none;
    border-bottom-color: var(--primary-color);
}

.contact-form textarea.form-control {
    resize: none;
    min-height: 160px;
}

.btn-send {
    background: none;
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 0.75rem 2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-send i {
    margin-right: 0.5rem;
}

.btn-send:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.contact-form .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left center;
}

/* PAGINATION */
.pagination li {
	margin: 5px 15px;	
}

.pagination li a {
	text-decoration: none;	
}

.pagination .active {
	font-weight: bold;	
}

.btn-danger {
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-color);
    --bs-btn-active-bg: var(--primary-color);
    --bs-btn-active-border-color: var(--primary-color);
    --bs-btn-disabled-color: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
	--bs-btn-bg: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-bg-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}
