/* ===========================
   GÉNÉRAL
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0b0b0b;
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
}

/* ===========================
   MENU
=========================== */

nav{
    max-width:1200px;
    margin:0 auto;
    padding:25px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:180px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#d4af37;
}

/* ===========================
   SECTION ORACLE
=========================== */

.oracle{

    max-width:1200px;
    margin:70px auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;

    padding:0 30px;

}

.oracle-image{

    flex:1;
    text-align:center;

}

.oracle-image img{

    width:100%;
    max-width:420px;

}

.oracle-content{

    flex:1;

}

.badge{

    display:inline-block;

    background:#d4af37;

    color:#000;

    padding:8px 15px;

    border-radius:20px;

    font-weight:bold;

    margin-bottom:20px;

}

.oracle-content h1{

    font-size:48px;

    margin-bottom:20px;

    color:#d4af37;

}

.price{

    font-size:38px;

    color:#ffffff;

    font-weight:bold;

    margin-bottom:25px;

}

.oracle-content p{

    font-size:18px;

    color:#dddddd;

    margin-bottom:30px;

}

.oracle-content h2{

    color:#d4af37;

    margin-bottom:20px;

}

.oracle-list{

    list-style:none;

    margin-bottom:35px;

}

.oracle-list li{

    margin-bottom:12px;

    font-size:18px;

}

.oracle-list i{

    color:#d4af37;

    margin-right:10px;

}

label{

    display:block;

    margin-bottom:10px;

    font-weight:bold;

}

select{

    width:100%;

    padding:14px;

    border-radius:8px;

    border:none;

    margin-bottom:20px;

    font-size:16px;

}

button{

    width:100%;

    padding:18px;

    background:#d4af37;

    color:#000;

    font-size:18px;

    font-weight:bold;

    border:none;

    border-radius:8px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#f1cb52;

}

.infos{

    margin-top:35px;

}

.infos p{

    margin-bottom:12px;

}

.infos i{

    color:#d4af37;

    margin-right:8px;

}

/* ===========================
   FOOTER
=========================== */

footer{

    text-align:center;

    padding:40px;

    color:#999999;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

.oracle{

    flex-direction:column;

    text-align:center;

}

.oracle-content h1{

    font-size:36px;

}

.price{

    font-size:30px;

}

}