:root {
    --main-bg: #fff;
    --main-color: #111;
    --primary: #2D082A;
    --primary-light: #3e0b3f;
    --secondary: #565181;
    --text-light: #f6f6f6;
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}


body {
    font-family: var(--font-body);
    font-weight: 400;
    margin: 0;
    padding: 0;
    background-color: var(--main-bg);
    color: var(--main-color);
    overflow-x:hidden;
}

/* === Typography === */
h1, h2, h3,
.header a,
.title-a h1,
.studio-button {
    font-family: var(--font-title);
    font-weight: 700;
}

/* === Header === */
.header {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px 40px;
    height: 120px;
    flex-wrap: wrap;
}

.header img {
    height: 80px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--text-light);
    margin-bottom: 3px;
    border-radius: 1px;
    transition: transform 0.4s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
}

.nav-menu {
    display: flex;
}

.header ul {
    list-style: none;
    display: flex;
    gap: 48px;
    margin: 0;
    padding: 0;
}

.header a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 24px;
    transition: opacity 0.3s ease;
}

.header a:hover {
    opacity: 0.8;
}


/* === Intro Section === */
.intro {
    position: relative;
    z-index: 0;
    overflow: hidden;

    min-height: 100px;
    max-height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 250px 20px;

    background-image:
        linear-gradient(rgba(45, 8, 42, 0.6), rgba(45, 8, 42, 0.6)),
        url("../res/Studio-header.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.intro header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 100px 0px;
}

/* === Titre principal === */
.intro h1 {
    font-size: 64px;
    margin: 0;
    color: #fff;
    border: 3px solid #fff;
    padding: 20px 40px;
    border-radius: 8px;
}

/* === Adresse === */
.subtitle {
    font-size: 24px;
    padding: 16px 32px;
    border-radius: 8px;
}

.subtitle a {
    color: var(--text-light);
    text-decoration: none;
}

.subtitle a:hover {
    text-decoration: underline;
}

/* === Bouton principal === */
.studio-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 20px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.studio-button:hover {
    background-color: var(--primary-light);
}

/* === Articles de contenu === */
.title-b,
.description {
    color: var(--text-light);
    padding: 30px 20px;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
}

.title-b, .description p {
    font-size: 18px;
    letter-spacing: 1.1px;
}

.description p {
    
    font-size: 18px;
    letter-spacing: 1.1px;
    
}

/* === HOME PAGE --- NOS SERVICES === */

.main-container {
  display: flex;
  justify-content: center;    
  background-color: #292930;
  color: var(--text-light);
  padding: 50px 20px;
}

.main-contain {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;    
  width: 100%;
  max-width: 1100px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;     
  align-items: center;        
}

.main-head {
  display: flex;
  align-items: center;       
  gap: 30px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.main-head h2 {
  font-size: 32px;
  margin: 0;
}

.main-desc {
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0 0;           
  max-width: 600px;
  text-align: left;          
}

/* === HOME PAGE --- NOS SERVICES --- ENREGISTREMENT === */

.enregistrement-container, .mixage-and-mastering-container {
    background: linear-gradient(#36363E 0%, #2B2B33 80%, #292930 100%);
    display: flex;
    max-width: 640px;
    padding: 20px;
    border: 1px solid #424245;
    border-radius: 20px;
    margin-bottom: 20px;
    justify-content: spa;

}

.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-container-title {
    min-width: 250px;
    background-color: #2C2C33;
    padding: 10px;
    margin: auto;
    border: 1px solid #424245;
    border-radius: 20px;
    font-family: manrope;
    text-align: center;
    font-weight: 400;
    font-size: x-large;
    text-transform: uppercase;
    
}

.text-container p {
    padding: 0px 20px;
}

.text-container a {
    color: var(--text-light);
    text-decoration: none;
    background-color: #4B2C58;
    padding: 10px 80px;
    border: 1px solid #424245;
    border-radius: 10px;
}

.bg-circle {
    max-width: 80px;
    border-radius: 50px;
    background-color: #292930;
    padding: 10px;
}


/* === HOME PAGE --- NOS SERVICES --- MIXAGE & MASTERING === */

.mixage-and-mastering-container { 
    background: transparent;
    border: transparent;
    gap: 40px;
    padding: 20px;
    max-width: 700px;
   
    
}

.mixage-container {
    max-width: 300px;
    padding: 10px;
    border: 1px solid  #424245;
    border-radius: 10px;
    background: linear-gradient(#36363E 0%, #2B2B33 80%, #292930 100%);
    
}

.text-container a:hover{
    background-color: var(--primary-light);
}



/* === NOS SERVICES === */
.services-title {
    text-align: center;
    padding: 30px;
}

.container-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 96px;
    background-color: #f5f5f5; 
    padding: 160px 20px;
}

.service {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 300px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    gap: 16px;
}


.service p {
    font-size: 18px;
    color: #828282;
    padding: 0px 20px;
}

.service img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    display: block;
}

.prix {
    background-color: #292930;  
    padding: 100px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prix-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    padding: 60px;
    gap: 30px;
}

.prix-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 1px;
    margin-bottom: 30px;
    background-color: #36363E;
    border: 1px solid #424245;
    border-radius: 10px;
    width: 90%;
    font-size: 32px;
    text-transform: uppercase; 
}

.prix-head img {
    width: 60px;
}

.prix-card {
    background: linear-gradient(#36363E 0%, #292930 100%);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #424245;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 30%;

}

.prix-card-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
    background-color: #292930;
    width: 95%;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.prix-card-head img {
    width: 60px;
}

.prix-card-prix {
    background-color: var(--text-light);
    color: #292930;
    border-radius: 70px;
    padding: 8px 24px;
    width: 50%;
    text-align: center;
    margin-bottom: 10px;
}

.prix-card-prix span {
    font-weight: 600;
    font-size: 24px;
}

.prix-card-description {
    padding: 10px;
    text-align: center;
    width: 70%;
    margin-bottom: auto;
}

.prix-card-description span {
    display: block;
    border: 1px solid #8c8c8c;
}

.prix-card-detail {
    background: linear-gradient(#2B2B33 80%, #292930 100%);
    border: 1px solid #424245;
    border-radius: 10px;
    padding: 10px;
    width: 60%;
    text-align: center;
    margin-bottom: 20px;
}

.prix-card-detail span {
    background-color: var(--text-light);
    color: #292930;
    padding: 1px 10px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    margin-right: 20px;
}

.prix-card a {
    padding: 10px 12px;
    color: var(--text-light);
    background-color: #4B2C58;
    text-decoration: none;
    text-align: center;
    width: 40%;
    border-radius: 5px;
}

.prix-card a:hover {
    background-color: var(--primary-light);
}

/* === LE STUDIO === */

.studio-button {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--text-light);
    font-size: 20px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.studio-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap; 
}

.studio-text {
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-text h2 {
    margin-top: 0;
    font-size: 28px;
    padding: 0 40px;
}

.studio-text p {
    padding: 0 40px;
}

.studio-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.studio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2/2;
    display: block;
}

.studio-materiel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  background-color: var(--primary);
  color: var(--text-light);
}


.studio-materiel h2 {
  font-size: 48px;
  margin-bottom: 40px;
  text-align: center;
  padding: 80px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  
}

.contents h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contents ul {
  padding-left: 20px;
  line-height: 1.6;
}

.studio-button-bis {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.studio-button-bis .studio-button {
     margin-top: 0px;
}


.footer {
  background-color: var(--primary-light);
  color: var(--text-light);
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 300px;
}

.footer-logo {
  width: 70px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.footer-logo-section h2 {
  margin: 0;
  font-size: 1.5em;
}

.footer-logo-section p {
  margin: 4px 0 0;
  font-size: 0.95em;
}

.footer-contact,
.footer-links {
  flex: 1 1 250px;
}

.footer-contact h3,
.footer-links h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.footer-contact ul li a {
    color: var(--text-light);
    text-decoration: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #bbbbff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: var(--text-light);
  border-top: 1px solid var(--text-light);
  padding-top: 15px;
  z-index: 1;
}

.qui {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.qui p {
    max-width: 1050px;
}

.pourquoi {
    background-color: #292930;
    color: var(--text-light);
    padding: 20px;
}

.pourquoi h2 {
    text-align: center;
}

.pourquoi li {
    list-style: none;
    margin-left: -40px;
}

.pourquoi h3, .pourquoi ul {
    margin-left: 25%;
}

.pourquoi-mention {
    display: flex;
    justify-content: center;
    padding: 20px;
}
.pourquoi a {
    text-decoration: none;
    color: var(--text-light);
    display: inline-block;
    text-align: center;
    padding: 10px 16px;
    background-color: #2D082A; 
}

.pourquoi a:hover {
    background-color: var(--primary-light);
}

/* === Mentions Section === */
.mentions-section {
    background-color: #292930;
    padding: 100px 20px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* === Card === */
.mentions-card {
    position: relative;
    background: linear-gradient(135deg, #1b1b1b, #2d2d2d);
    padding: 24px 32px;
    display: flex;
    gap: 40px;
    border-radius: 14px;
    color: #e0e0e0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

/* === Metallic brushed effect === */
.mentions-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: rotate(0deg);
    transition: transform 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.mentions-card:hover::before {
    transform: translateX(100%) translateY(0) rotate(25deg);
}

.mentions-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transform: scale(1.01);
}

/* === Head (left column) === */
.mentions-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.mentions-card-head img {
    width: 250px;
    max-width: 100%;
    margin-bottom: 30px;
}

.mentions-card-head span {
    font-size: 20px;
    padding: 10px;
    display: block;
}

/* === Description (right column) === */
.mentions-card-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

.mentions-card-desc h2 {
    font-size: 60px;
    margin: 100px 0 100px;
    color: gold;
}

/* === Info inside desc (if any links) === */
.mentions-card-info span a {
    text-decoration: none;
    color: gold;
}



/* === Responsive tablette === */
@media (max-width: 1024px) {

    /* === Home page === */
    .header {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .header ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .header a {
        font-size: 20px;
    }

    .title-a h1 {
        font-size: 32px;
        padding: 10px 20px;
    }

    .subtitle {
        font-size: 16px;
        padding: 8px 16px;
    }

    .studio-button {
        font-size: 16px;
        padding: 12px 24px;
    }

       .title-b,
    .description {
        padding: 20px;
        font-size: 14px;
    }
}

/* === Responsive mobile === */
@media (max-width: 768px) {

    /* === Home page === */
    .intro header {
        padding: 30px 0;
    }

    .intro h1 {
        font-size: 40px;
        padding: 16px 24px;
    }

    .subtitle {
        font-size: 18px;
        padding: 12px 20px;
    }

    .studio-button {
        font-size: 18px;
        padding: 12px 24px;
    }

    .title-b,
    .description {
        padding: 20px 15px;
    }

    .title-b, .description p {
        font-size: 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .header ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .header img {
        height: 60px;
    }

    .header a {
        font-size: 20px;
        padding: 8px 0;
    }

    /* === Home page - Nos Services === */

    .main-head {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    }

    .main-head h2 {
        font-size: 26px;
    }

    .main-desc {
        font-size: 13px;
        text-align: center;
    }

    /* === Home page - Enregistrement */
    .enregistrement-container,
    .mixage-and-mastering-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-container-title {
        font-size: 20px;
    }

    .text-container p {
        padding: 10px;
        font-size: 13px;
    }

    .text-container a {
        width: 90%;
        padding: 10px;
        font-size: 13px;
    }

    .bg-circle {
        max-width: 60px;
    }

    .mixage-and-mastering-container { 
        padding: 0px;
        gap: 20px;
    }

    .mixage-container {
        max-width: 100%;
    }

    /* === Nos Services === */
    .prix-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 150%;
        margin-bottom: -80px;
        padding: 15%;
    }

    .prix-card {
        width: 110%;
    }

    .prix-head {
        display: flex;
        font-size: 24px;
        text-align: center;
        width: 170%;
        /* padding: 0 20px; */
        margin-top: -50px;
    }

    .prix-card-head {
        flex-direction: column;
        font-size: 20px;
    }

    .prix-card-prix {
        width: 70%;
    }

    .prix-card-description {
        width: 100%;
        margin-bottom: 10px;
    }

    .prix-card-detail {
        width: 70%;
    }

    .prix-card a {
        width: 80%;
    }

    /* === Studio === */
    .studio-container {
        flex-direction: column;
    }

    .studio-text,
    .studio-img {
        width: 100%;
        padding: 20px 0px;
    }

    .studio-text h2 {
        font-size: 22px;
        padding: 0 20px;
    }

    .studio-text p {
        font-size: 16px;
        padding: 0 20px;
    }

    .studio-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .studio-container.reverse {
        flex-direction: column-reverse;
    }

    /* === Studio - Matériel === */

    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .studio-materiel {
        padding: 20px 10px;
        margin-top: -20px;
    }

    .studio-materiel h2 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .contents h3 {
        font-size: 18px;
    }

    .contents ul {
        font-size: 15px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: none;
    }

    .footer-contact,
    .footer-links {
        max-width: 400px;
        flex: 1 1 150px;
    }

    .footer-contact ul,
    .footer-links ul {
        text-align: left;
        margin: 0 auto;
    }

    .footer-links ul {
        columns: 2;
        column-gap: 40px;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .footer {
        padding-bottom: 30%; 
    }

    .mentions-card {
        flex-direction: column-reverse;
        padding: 20px;
        gap: 0px;
    }

    .mentions-card-head img {
        width: 180px;
        margin-bottom: 20px;
    }

    .mentions-card-desc h2 {
        font-size: 36px;
        margin: auto;
    }

}

