/* ========= RESET ========= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#050505;

    color:white;

    font-family:
    "Yu Gothic",
    sans-serif;

    overflow-x:hidden;

}

/* ========= LOADING ========= */

#loading{

    position:fixed;

    width:100%;

    height:100%;

    background:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

#loading h1{

    color:#d6b25e;

    font-size:48px;

    letter-spacing:8px;

}

/* ========= HEADER ========= */

header{

    position:fixed;

    top:0;

    width:100%;

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 80px;

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(10px);

    z-index:100;

}

.logo{

    font-size:30px;

    color:#d6b25e;

    letter-spacing:5px;

    font-weight:bold;

}

nav ul{

    list-style:none;

    display:flex;

    gap:40px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

    font-size:15px;

    letter-spacing:2px;

}

nav a:hover{

    color:#d6b25e;

}

/* ========= HERO ========= */

#hero{

    position:relative;

    height:100vh;

    background:

    linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.7)),
    url(images/hero.jpg);

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle,
    transparent 20%,
    rgba(0,0,0,.4));

}

.hero-text{

    position:relative;

    z-index:5;

}

.hero-text h1{

    font-size:72px;

    letter-spacing:6px;

    margin-bottom:25px;

    color:white;

    text-shadow:

    0 0 20px black;

}

.hero-text p{

    font-size:22px;

    line-height:1.8;

    color:#ddd;

}

/* ========= BUTTON ========= */

.btn{

    margin-top:45px;

    display:inline-block;

    padding:16px 45px;

    border:2px solid #d6b25e;

    color:#d6b25e;

    text-decoration:none;

    transition:.4s;

    letter-spacing:3px;

}

.btn:hover{

    background:#d6b25e;

    color:black;

    box-shadow:

    0 0 25px #d6b25e;

}

/* ========= CONTENT ========= */

.content{

    width:1200px;

    max-width:92%;

    margin:120px auto;

}

.content h2{

    text-align:center;

    color:#d6b25e;

    font-size:42px;

    margin-bottom:25px;

    letter-spacing:4px;

}

.line{

    width:120px;

    height:3px;

    background:#d6b25e;

    margin:25px auto 60px;

}

.content p{

    line-height:2;

    color:#ccc;

    font-size:18px;

}

/* ========= CHARACTER ========= */

.cards{

    margin-top:60px;

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    background:#111;

    border:1px solid #333;

    overflow:hidden;

    transition:.4s;

}

.card:hover{

    transform:translateY(-12px);

    border-color:#d6b25e;

    box-shadow:

    0 0 35px rgba(214,178,94,.4);

}

.card img{

    width:100%;

    height:350px;

    object-fit:cover;

}

.card h3{

    padding:20px;

    color:#d6b25e;

}

.card p{

    padding:0 20px 25px;

}/* ===================================
   WORLD
=================================== */

.world-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    margin-top:60px;

}

.world-card{

    background:#111;

    border:1px solid #333;

    overflow:hidden;

    transition:.4s;

}

.world-card:hover{

    transform:translateY(-10px);

    border-color:#d6b25e;

    box-shadow:0 0 25px rgba(214,178,94,.5);

}

.world-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.world-card h3{

    padding:20px;

    text-align:center;

    color:#d6b25e;

}

/* ===================================
   GALLERY
=================================== */

.gallery{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

    margin-top:50px;

}

.gallery img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.4s;

    cursor:pointer;

}

.gallery img:hover{

    transform:scale(1.05);

}

/* ===================================
   NEWS
=================================== */

.news{

    display:flex;

    flex-direction:column;

    gap:30px;

    margin-top:60px;

}

.news article{

    background:#111;

    padding:30px;

    border-left:5px solid #d6b25e;

    transition:.4s;

}

.news article:hover{

    transform:translateX(10px);

    background:#1a1a1a;

}

.news span{

    color:#999;

    font-size:14px;

}

.news h3{

    margin:10px 0;

    color:#d6b25e;

}

/* ===================================
   FOOTER
=================================== */

footer{

    background:#080808;

    padding:80px 20px;

    text-align:center;

    margin-top:120px;

    border-top:1px solid #222;

}

footer h2{

    color:#d6b25e;

    font-size:34px;

    letter-spacing:6px;

}

footer p{

    margin-top:20px;

    color:#777;

}

/* ===================================
   FADE ANIMATION
=================================== */

.fade{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

/* ===================================
   SCROLL BAR
=================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:#d6b25e;

}

/* ===================================
   MOBILE
=================================== */

@media(max-width:900px){

header{

    flex-direction:column;

    height:auto;

    padding:20px;

}

nav ul{

    gap:20px;

    flex-wrap:wrap;

    justify-content:center;

}

.hero-text h1{

    font-size:48px;

}

.hero-text p{

    font-size:18px;

}

.content h2{

    font-size:34px;

}

}

@media(max-width:600px){

.logo{

    font-size:22px;

}

nav ul{

    flex-direction:column;

    gap:15px;

}

.hero-text h1{

    font-size:36px;

}

.btn{

    padding:12px 28px;

}

.card img{

    height:250px;

}

.world-card img{

    height:180px;

}

.gallery img{

    height:180px;

}

}