/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
   PAGE
=========================== */

body{

    background:#0b0b0b;
    color:#ffffff;
    font-family:Arial, Helvetica, sans-serif;

}

/* ===========================
   HEADER
=========================== */

header{

    max-width:1200px;
    margin:auto;

    padding:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;

}

.logo img{

    width:150px;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    color:#ffffff;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;

}

nav a:hover{

    color:#d4af37;

}

/* ===========================
   SECTION DVD
=========================== */

.dvd-page{

    max-width:1200px;

    margin:60px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    padding:20px;

}

.dvd-image{

    flex:1;

    text-align:center;

}

.dvd-image img{

    width:100%;
    max-width:500px;

    transition:.4s;

}

.dvd-image img:hover{

    transform:scale(1.03);

}

.dvd-content{

    flex:1;

}

.badge{

    display:inline-block;

    background:#d4af37;

    color:#000;

    padding:10px 18px;

    border-radius:30px;

    font-weight:bold;

    margin-bottom:25px;

}

h1{

    font-size:58px;

    color:#d4af37;

    margin-bottom:30px;

}

.price{

    font-size:48px;

    font-weight:bold;

    margin-bottom:35px;

}

.dvd-content p{

    font-size:20px;

    line-height:1.8;

    color:#dddddd;

    margin-bottom:35px;

}

h2{

    color:#d4af37;

    margin-bottom:20px;

}

ul{

    list-style:none;

    margin-bottom:35px;

}

ul li{

    margin-bottom:15px;

    font-size:20px;

}

label{

    display:block;

    margin-bottom:12px;

    font-weight:bold;

    font-size:18px;

}

select{

    width:100%;

    padding:15px;

    border-radius:8px;

    border:none;

    margin-bottom:25px;

    font-size:16px;

}

button{

    width:100%;

    padding:18px;

    background:#d4af37;

    color:#000;

    border:none;

    border-radius:8px;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#f1cb52;

}

.infos{

    margin-top:35px;

}

.infos p{

    margin-bottom:12px;

    color:#cccccc;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:900px){

header{

    flex-direction:column;

    gap:25px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}

.dvd-page{

    flex-direction:column;

    text-align:center;

}

h1{

    font-size:42px;

}

.price{

    font-size:38px;

}

.dvd-image img{

    max-width:350px;

}

}