/*
Theme Name: Wilson NakMuay
Theme URI: https://example.com
Author: ChatGPT
Description: Theme WordPress inspiré de la chaîne YouTube Wilson NakMuay
Version: 1.0
Requires at least: 6.9
Tested up to: 6.9.4
Requires PHP: 8.1
Text Domain: wilson-nakmuay
*/
body {
margin: 0;
font-family: Arial, sans-serif;
background: #0b0b0b;
color: #fff;
}
header {
background: #111;
padding: 20px;
position: sticky;
top: 0;
z-index: 999;
border-bottom: 2px solid #d90429;
}
.logo {
font-size: 28px;
font-weight: bold;
color: #d90429;
}
nav ul {
display: flex;
list-style: none;
gap: 20px;
padding: 0;
}
nav a {
color: white;
text-decoration: none;
}
.hero {
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
url('https://images.unsplash.com/photo-1517438476312-10d79c077509?
q=80&w=1600&auto=format&fit=crop');
background-size: cover;
background-position: center;
}
.hero h1 {
font-size: 64px;
margin-bottom: 10px;
}
.hero p {
font-size: 20px;
max-width: 700px;
}
.btn-primary {
margin-top: 30px;
padding: 15px 30px;
background: #d90429;
color: white;
border-radius: 8px;
text-decoration: none;
transition: 0.3s;
}
.btn-primary:hover {
background: #ef233c;
}
.section {
padding: 80px 10%;
}

footer {
padding: 40px;
text-align: center;
background: #111;
border-top: 2px solid #d90429;
}
@media(max-width:768px){
.hero h1 {
font-size: 42px;
}
nav ul {
flex-direction: column;
}
}