* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Arial', sans-serif;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px    50px;
    background: rgba(0, 0, 0, 0.8); /* Primary Color - Black */
    color: #DBD9D7; /* Updated Color */
    z-index: 1000;
}

.logo {
    font-size: 18px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #DBD9D7; /* Updated Color */
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

.hero {
    height: 100%;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0); /* Dark overlay */
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #DBD9D7; /* Updated Color */
}

h1 {
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 30px;
    font-size: 16px;
    color: #DBD9D7; /* Primary Color - Black */
    text-decoration: none;
    border: 1px solid #DBD9D7; /* Updated Color */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.play-btn {
    background-color: rgba(219, 217, 215, 0.1); /* Semi-transparent Updated Color */
}

.all-videos-btn {
background-color: rgba(219, 217, 215, 0.1); /* Semi-transparent Updated Color */
}

.btn:hover {
    background-color: #000; /* Primary Color - Black */
    color: #DBD9D7; /* Updated Color */
}

.section {
    padding: 100px 50px;
    text-align: center;
    background-color: #000; /* Primary Color - Black */
    color: #DBD9D7; /* Updated Color */
}

#bio, #book, #experience, #contact {
    min-height: 50vh;
}

h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.contact-bg {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(12,35,80,1) 100%);
}

.book-bg {
    background: rgb(57,72,79);
    background: linear-gradient(0deg, rgba(57,72,79,1) 0%, rgba(0,0,0,1) 100%);   
}

/* Contact Info Section */
.contact-info {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between LinkedIn and Email buttons */
}

.img_soundcloud {
    width: 8%; /* Responsive image /
    height: 8%; / Maintain aspect ratio */
}
.contact-info .btn {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: #DBD9D7; /* Updated Color */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-info .btn:hover {
    background-color: #000; /* Background becomes black on hover */
    color: #DBD9D7; /* Text color changes on hover */
    border-width: 0;
}

/* Reduce size of LinkedIn icon */
.contact-info .linkedin-icon {
    width: 15px;
    height: 15px; /* Smaller LinkedIn icon size */
    margin-right: 8px; /* Space between LinkedIn icon and text */
}

.contact-info .icon {
    width: 20px;
    height: 20px; /* Size for the email icon */
    margin-right: 10px; /* Space between icon and text */
}


/* Style for Section Images */
.section-image {
    width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure image is treated as a block element */
}

.section-image2 {
    width: 100%; /* Responsive image */
    height: 100%; /* Maintain aspect ratio */
    display: block; /* Ensure image is treated as a block element */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 768px) {
    .hero {
        height: 50%;
    }
}

.tamerelapute {
    width: 50%; /* Responsive image */
    height: 40%; /* Maintain aspect ratio */
    display: block;
    margin: auto;
}

.soundcloud-links {
	display: flex;
	align-items: center;
    justify-content: center;
}

/* Styles de base pour la grille */
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Deux colonnes sur les écrans larges */
    gap: 20px;
    padding: 20px;
}

.element {
     background-color: #232323;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.element i {
    font-size: 2rem;
    color: #d7d7d7;
    margin-bottom: 10px;
}

.content_sa h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #d7d7d7;
}

.content_sa p {
    color: #d7d7d7;
    margin: 5px 0;
}

/* Responsive styling for small screens */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr; /* Une seule colonne sur les petits écrans */
    }
}

/* Styles de base pour le conteneur des vidéos */
.video-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Deux colonnes pour la vue desktop */
    gap: 20px; /* Espace entre les vidéos */
    margin: 20px auto; /* Centrer le conteneur et ajouter un peu d'espace */
    max-width: 1200px; /* Limiter la largeur pour de plus grandes écrans */
    padding: 10px;
}

/* Styles pour les iframes pour qu'elles soient bien dimensionnées */
.video-container iframe {
    width: 100%;
    height: 315px; /* Hauteur fixe pour garder le format 16:9 */
}

/* Adaptation de la grille pour les petits écrans (mobile) */
@media screen and (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr; /* Une seule colonne pour la vue mobile */
    }
}

/* Style de base pour le header */
header {
    color: #DBD9D7; /* Updated Color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px    50px;
    background: rgba(0, 0, 0, 0.8);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Style pour le bouton burger */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.burger-menu div {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

/* Media query pour la vue mobile */
@media screen and (max-width: 768px) {
    nav ul {
        display: none; /* Cacher le menu en vue mobile */
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0, 0, 0, 0.8);
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        border-radius: 5px;
    }

    nav ul.open {
        display: flex; /* Afficher le menu lorsqu'il est ouvert */
    }

    .burger-menu {
        display: flex; /* Afficher le bouton burger en vue mobile */
    }
}
