/*==========================
    RAIKA STUDIO
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
text-decoration:none;
list-style:none;
scroll-behavior:smooth;
font-family:'Poppins',sans-serif;
}

body{

background:#0F0F0F;
color:#fff;
overflow-x:hidden;

}

/* Scroll */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:#D4AF37;
border-radius:20px;

}

::-webkit-scrollbar-track{

background:#111;

}

/*==================
Navbar
==================*/

header{

position:fixed;
top:0;
left:0;
width:100%;
padding:25px 8%;
background:rgba(0,0,0,.75);
backdrop-filter:blur(15px);
z-index:999;

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

}

.images{
margin-right: 300px;
display:flex;
align-items:center;
gap:20px;
    
}

.logo{

font-size:28px;
font-weight:700;
color:#D4AF37;
letter-spacing:2px;

}

.menu{

display:flex;
gap:40px;

}

.menu a{

color:#fff;
font-size:16px;
transition:.4s;

}

.menu a:hover{

color:#D4AF37;

}

.btn-order{

background:#D4AF37;
color:#111;
padding:12px 28px;
border-radius:40px;
font-weight:bold;
transition:.4s;

}

.btn-order:hover{

transform:translateY(-4px);

box-shadow:0 0 20px #D4AF37;

}

/*==================
Hero
==================*/

.hero{

height:100vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:0 10%;

background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.80)),
url("../images/hero.jpg");

background-size:cover;

background-position:center;

}

.hero-content{

max-width:850px;

}

.hero h1{

font-size:72px;

font-weight:700;

line-height:1.3;

margin-bottom:20px;

}

.hero p{

font-size:22px;

color:#ddd;

margin-bottom:40px;

}

/* Buttons */

.buttons{

display:flex;

justify-content:center;

gap:20px;

}

.btn-gold{

background:#D4AF37;

color:#111;

padding:15px 45px;

border-radius:50px;

font-weight:600;

transition:.4s;

}

.btn-gold:hover{

transform:translateY(-5px);

box-shadow:0 0 25px #D4AF37;

}

.btn-border{

border:2px solid #D4AF37;

padding:15px 45px;

border-radius:50px;

color:#D4AF37;

transition:.4s;

}

.btn-border:hover{

background:#D4AF37;

color:#111;

}

/*==================
Sections
==================*/

section{

padding:120px 8%;

}

h2{

text-align:center;

font-size:42px;

margin-bottom:60px;

color:#D4AF37;

}


/*==================
Cards
==================*/

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.card{

background:#181818;

padding:40px;

border-radius:20px;

transition:.5s;

border:1px solid #222;

}

.card:hover{

transform:translateY(-10px);

border:1px solid #D4AF37;

box-shadow:0 0 25px rgba(212,175,55,.3);

}

.card h3{

margin-bottom:20px;

color:#D4AF37;

}

/*==================
Portfolio
==================*/

.portfolio{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}


.box{

height:280px;

background:#1d1d1d;

border-radius:20px;

transition:.5s;

}

.box:hover{

transform:scale(1.05);

border:2px solid #D4AF37;

}

/*==================
Contact
==================*/

form{

max-width:700px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

}

input,

textarea{

padding:18px;

background:#181818;

border:none;

outline:none;

color:#fff;

border-radius:15px;

}

textarea{

height:180px;

resize:none;

}

button{

background:#D4AF37;

color:#111;

padding:18px;

border:none;

border-radius:50px;

font-size:18px;

cursor:pointer;

transition:.4s;

}

button:hover{

box-shadow:0 0 25px #D4AF37;

}

/*==================
Footer
==================*/

footer{

padding:30px;

text-align:center;

background:#080808;

color:#999;

}