@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

@font-face {
    font-family: "scarlet";
    src: url("../fonts/scarlet-jazz.otf") format("woff2"),
}

@font-face {
    font-family: "GeosansLight";
    src: url("../fonts/GeosansLight.ttf") format("woff2"),
}

@font-face {
    font-family: "GeosansLight-Oblique";
    src: url("../fonts/GeosansLight-Oblique.ttf") format("woff2"),
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "GeosansLight", sans-serif;
    transition: all .3s linear;
}

:root {
    --primary-color: #5A3824;
    --secondary-color: #311C10;
}

body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    width: 100%;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    box-shadow: 0 25px 3px var(--primary-color), 0 25px 3px var(--primary-color), 10px 25px 3px var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #512201;
}

img {
    width: 100%;
    height: auto;
}

.default-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.custom-btn {
    padding: 30px 70px;
    border: 2px solid #fff;
    border-radius: 90px;
    font-size: 40px;
    color: #fff;
    margin: 29px 0;
    font-family: "GeosansLight", sans-serif;
    font-weight: 100;
}

.custom-btn:hover {
    background-color: #fff;
    color: #000;
}

.section-title {
    font-size: 65px;
    color: var(--primary-color);
    font-weight: 100;
    font-family: "scarlet", sans-serif;
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 40px;
    color: #cdcdcd;
    font-weight: 100;
}

.section-p {
    font-size: 40px;
    color: #cdcdcd;
    font-weight: 100;
    text-align: justify;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.is-centered {
    align-items: center;
}

.mx-auto {
    margin: 0 autoss;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.hide {
    display: none;
}

.container-lr {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Small */
@media (min-width: 768px) {
    .container-lr {
        width: 100%;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container-lr {
        width: 100%;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container-lr {
        width: 80%;
    }
}

/*
    HEADER
*/

header {
    box-shadow: 2px 1px 6px var(--primary-color);
    background-color: #000;
}

header .container-lr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 5px;
}

header .container-lr .btn__header {
    background-color: #311C10;
    padding: 10px 30px;
    border-radius: 40px;
    border: 2px solid #794E10;
}

header .brand-logo {
    width: 200px;
}

header .header-links {
    display: inline-flex;
    align-items: center;
    gap: 60px;
}

header .header-links li a.active {
    color: var(--primary-color);
}

header .header-links li {
    list-style: none;
}

header .header-links li a {
    color: #fff;
    font-size: 35px;
    text-decoration: none;
}

/* HEADER */
header {
    box-shadow: 2px 1px 6px var(--primary-color);
    position: relative;
}

header .container-lr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 5px;
}

header .brand-logo {
    width: 200px;
}

header .brand-logo img {
    width: 100%;
    height: auto;
}

header .header-links {
    display: inline-flex;
    align-items: center;
    gap: 60px;
}

header .header-links li {
    list-style: none;
}

header .header-links li a {
    color: #fff;
    font-size: 35px;
    text-decoration: none;
    transition: color 0.3s;
}

header .header-links li a.active {
    color: var(--primary-color);
}

header .header-links li a:hover {
    color: var(--primary-color);
}

header .container-lr .btn__header {
    background-color: #311C10;
    padding: 10px 30px;
    border-radius: 40px;
    border: 2px solid #794E10;
}

header .blob-btn__inner {
    background-color: #ad643a38;
}

header .blob-btn {
    color: #fff;
}

header .blob-btn:before {
    border: 2px solid #794E10;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    box-shadow: 0 4px 6px rgba(212, 165, 116, 0.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: color 0.3s;
}

.mobile-menu ul li a.active {
    color: var(--primary-color);
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
}

.mobile-menu ul li.btn__header {
    background-color: #311C10;
    border-radius: 40px;
    border: 2px solid #794E10;
    text-align: center;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header .header-links li a {
        font-size: 28px;
    }

    header .header-links {
        gap: 40px;
    }

    header .brand-logo {
        width: 160px;
    }
}

@media (max-width: 768px) {
    header .header-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    header .brand-logo {
        width: 140px;
    }
}

@media (max-width: 480px) {
    header .brand-logo {
        width: 120px;
    }

    .mobile-menu ul li a {
        font-size: 20px;
    }
}

/*
    HERO SECTION
*/

.hero {
    position: relative;
    background-color: #000;
}

.hero img.decore {
    position: absolute;
    top: 24px;
    left: -8%;
    width: 38%;
    height: auto;
}

.hero h1 {
    font-size: 5em;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "scarlet", sans-serif;
}

.hero h2 {
    font-size: 4em;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 2.3em;
    text-align: justify;
    color: #cdcdcd;
    font-family: 'Outfit', sans-serif;
    font-weight: 100;
    line-height: 55px;
    margin-bottom: 20px;
}

.hero figure {
    width: 100%;
}

.hero .blob-btn__inner {
    background-color: rgba(255, 0, 0, 0);
}

.hero .blob-.blob-btn:before {
    border: 1px solid #fff;
}

/*
    ABOUT SECTION
*/

.about {
    position: relative;
    background-color: #000;
}

.about .about-btn {
    font-size: 25px;
    text-transform: uppercase;
    color: #fff;
}

.about .bottom-about {
    position: absolute;
    bottom: 10em;
    left: 16px;
}

.about .bottom-about img {
    width: 180px;
    height: auto;
}

.about .about-decore {
    position: absolute;
    right: -60px;
    top: 50%;
    width: 300px;
}


/*
    SOIREE SECTION
*/

.soiree {
    position: relative;
    background-color: #101010;
}

.soiree .section-title {
    text-align: center;
    width: 100%;
}

.soiree .soiree-main-content {
    margin-top: 80px;
    margin-bottom: 50px;
}

.soiree .soiree-main-content .soiree-card-image {
    width: 100%;
    height: auto;
}

.soiree .soiree-main-content h5 {
    font-size: 65px;
    color: var(--primary-color);
    font-weight: 100;
}

.soiree .soiree-main-content p {
    font-size: 52px;
    color: #cdcdcd;
    font-weight: 100;
}

.soiree .soiree-card {
    margin-bottom: 30px !important;
}

.soiree .soiree-image {
    width: 325px;
    position: absolute;
    bottom: 0;
    left: -63px;
}

.soiree .custom-btn {
    margin: 0 auto;
    display: flex;
}

.soiree button.blob-btn {
    margin: auto;
    text-align: center;
    display: flex;
}

/*
    EVENT SECTION
*/

.events {
    background-color: #000;
}

.events .container-lr {
    margin: auto;
    width: 60%;
}

.events .events-btn {
    background-color: var(--primary-color);
    padding: 22px 10px;
    border-radius: 50px;
    color: #ffffff;
    width: 100%;
    font-size: 25px;
    letter-spacing: 2px;
    font-family: "scarlet";
    border: 3px solid var(--primary-color);
}

.events .events-btn:hover {
    background-color: #fff;
    color: #512308;
    border: 3px solid var(--primary-color);
}

.events .event-text {
    color: #cdcdcd;
    font-size: 47px;
}

/*
    BLOG SECTION
*/

.blogs {
    position: relative;
    background-color: #000;
}

.blogs .column {
    z-index: 999;
}

.blogs::before {
    content: "";
    position: absolute;
    top: 0%;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url("../images/blog-bg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.7;
}

.blogs::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 46%;
    background-image: url('../images/piano.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.blogs .section-content {
    margin-top: 60px;
    margin-bottom: 60px;
}

.blogs h5 {
    position: relative;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #fff;
    font-size: 30px;
    text-align: center;
}

.blogs h5::before {
    content: "";
    position: absolute;
    background: var(--primary-color);
    height: 1px;
    width: 44%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*
    OFFER SECTION
*/

.offer {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
    background-color: #000;
}

.offer .sections-titles {
    position: relative;
    z-index: 3;
}

.offer::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 13%;
    width: 50%;
    height: 50%;
    background-image: url('../images/jazz-04.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.offer .custom-btn {
    margin: 180px auto 0 !important;
    display: flex;
}

.offer .span-bottom-btn {
    font-size: 20px;
    color: var(--primary-color);
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 99;
}

.offer .logo-billetteries {
    width: 425px;
    margin: 129px auto 48px;
    position: relative;
    z-index: 3;
}

.offer .section-subtitle {
    font-size: 30px;
    width: 80%;
    margin: 0 auto;
}

.offer.default-padding {
    padding-bottom: 0 !important;
}

.offer .blob-btn {
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    display: flex;
    padding: 34px 73px;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 600;
    z-index: 9999;
}

/*
    FOOTER SECTION
*/

footer {
    box-shadow: 4px -2px 12px var(--primary-color);
    position: relative;
    background-color: #000;
    /* your color */
    background-image: url('../images/footer-bg1.png');
    background-size: 352px;
    background-position: bottom right;
    background-repeat: no-repeat;
    min-height: 25vh;
}

/* footer::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/footer-bg1.png");
    background-size: 34% auto;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 0;
    pointer-events: none;
} */

footer .section-subtitle {
    font-size: 40px;
}

footer .bottom-footer p {
    color: #fff;
}

footer .brand-logo {
    width: 200px !important;
}

footer .bottom-footer {
    padding: 30px 0;
    text-align: center;
}

footer .bottom-footer p {
    font-size: 20px;
}

footer .bottom-footer a {
    font-size: 20px;
    color: var(--primary-color);
}

footer .social-media-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

footer .social-media-flex svg {
    width: 37px;
}



/* ============= PRELOADER ============= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

/* Animated Logo/Text */
.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4b8 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInScale 1s ease;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Jazz Note Animation */
.musical-notes {
    position: relative;
    width: 200px;
    height: 40px;
    margin: 0 auto 2rem;
}

.note {
    position: absolute;
    font-size: 2.5rem;
    color: #d4af37;
    animation: float 3s ease-in-out infinite;
    opacity: 0;
}

.note:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.note:nth-child(2) {
    left: 40%;
    animation-delay: 0.5s;
}

.note:nth-child(3) {
    left: 60%;
    animation-delay: 1s;
}

.note:nth-child(4) {
    left: 80%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        transform: translateY(-50px) rotate(15deg);
        opacity: 1;
    }
}

/* Vinyl Record Spinner */
.vinyl-spinner {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    position: relative;
    animation: fadeIn 1s ease 0.3s backwards;
}

.vinyl {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    position: relative;
    animation: spin 3s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.vinyl::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.vinyl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: #0a0a0a;
    border-radius: 50%;
}

.vinyl-groove {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vinyl-groove:nth-child(1) {
    width: 90%;
    height: 90%;
}

.vinyl-groove:nth-child(2) {
    width: 75%;
    height: 75%;
}

.vinyl-groove:nth-child(3) {
    width: 60%;
    height: 60%;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading Bar */
.loading-bar-container {
    width: 300px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.5s backwards;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f4e4b8 50%, #d4af37 100%);
    background-size: 200% auto;
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards, shimmer 1.5s linear infinite;
    width: 0%;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

/* Loading Text */
.loading-text {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.span-bottom-btn {
    position: relative;
    z-index: 999;
}

/* Animation shine image */

/* Shine */
.hover14 figure {
	position: relative;
}
.hover14 figure {
    overflow: hidden;
}
.hover14 figure::before {
	position: absolute;
	top: 0;
	left: -100%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.hover14 figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}