/* ==========================================================
   Lineage2Fun
   Modern Style
   ========================================================== */

:root{

--bg:#090b10;
--panel:rgba(20,24,34,.82);
--panel2:rgba(18,22,30,.92);

--gold:#d7b45b;
--gold2:#f1d48d;

--text:#f2f2f2;
--muted:#b4bac4;

--border:rgba(255,255,255,.08);

--shadow:0 12px 35px rgba(0,0,0,.45);

--radius:18px;

--transition:.3s ease;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:
Segoe UI,
Roboto,
Arial,
sans-serif;

background:
linear-gradient(rgba(6,8,14,.82),rgba(8,10,16,.93)),
url("../img/hero.png");

background-size:cover;
background-position:center;
background-attachment:fixed;

color:var(--text);

line-height:1.7;

}

img{

display:block;
max-width:100%;

}

a{

color:var(--gold);

text-decoration:none;

transition:var(--transition);

}

a:hover{

color:var(--gold2);

}

.container{

width:min(1240px,92%);
margin:auto;

}

/* ==========================================================
HEADER
========================================================== */

header{

position:fixed;

top:0;
left:0;
right:0;

z-index:1000;

background:rgba(8,10,15,.82);

backdrop-filter:blur(12px);

border-bottom:1px solid rgba(255,255,255,.06);

}

header .container{

display:flex;

align-items:center;

justify-content:space-between;

padding:18px 0;

}

.logo{

display:flex;

align-items:center;

}

.logo img{

height:145px;

width:auto;

transition:.3s;

}

.logo img:hover{

transform:scale(1.04);

}

nav ul{

display:flex;

gap:36px;

list-style:none;

margin:0;

padding:0;

}

nav li{

list-style:none;

}

nav a{

font-size:17px;

font-weight:600;

letter-spacing:.4px;

position:relative;

padding:6px 0;

}

nav a::after{

content:"";

position:absolute;

left:0;
bottom:-6px;

width:0;

height:2px;

background:var(--gold);

transition:.3s;

}

nav a:hover::after{

width:100%;

}

/* ==========================================================
HERO
========================================================== */

.hero{

min-height:100vh;

display:flex;

align-items:center;

}

.hero-overlay{

width:100%;

padding-top:170px;

padding-bottom:120px;

background:

linear-gradient(

180deg,

rgba(0,0,0,.18),

rgba(0,0,0,.45),

rgba(0,0,0,.68)

);

}

.hero h1{

font-size:64px;

line-height:1.1;

margin-bottom:30px;

max-width:900px;

}

.hero p{

font-size:21px;

max-width:820px;

color:var(--muted);

margin-bottom:45px;

}

.btn{

display:inline-block;

padding:18px 42px;

background:

linear-gradient(
180deg,
#efcf79,
#b48b37
);

border-radius:999px;

color:#151515;

font-weight:700;

box-shadow:var(--shadow);

transition:.3s;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:

0 18px 45px rgba(0,0,0,.55);

color:#111;

}

/* ==========================================================
SECTIONS
========================================================== */

.section{

padding:90px 0;

}

.section h2{

font-size:38px;

color:var(--gold);

margin-bottom:45px;

position:relative;

display:inline-block;

}

.section h2::after{

content:"";

position:absolute;

left:0;

bottom:-12px;

width:90px;

height:3px;

background:var(--gold);

border-radius:4px;

}

/* ==========================================================
NEWS CARDS
========================================================== */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:34px;

margin-top:30px;

}

.card{

background:var(--panel);

border:1px solid var(--border);

border-radius:var(--radius);

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

display:flex;

flex-direction:column;

}

.card:hover{

transform:translateY(-10px);

border-color:rgba(215,180,91,.45);

}

.card img{

width:100%;

height:230px;

object-fit:cover;

}

.card h3{

font-size:24px;

color:var(--gold);

padding:24px 24px 10px;

}

.card p{

padding:0 24px;

color:var(--muted);

flex:1;

}

.btn-small{

display:inline-block;

margin:24px;

padding:12px 26px;

background:linear-gradient(
180deg,
#e6c66f,
#b48b37
);

border-radius:999px;

font-weight:700;

color:#181818;

transition:.3s;

}

.btn-small:hover{

transform:translateY(-3px);

color:#111;

box-shadow:0 10px 25px rgba(0,0,0,.45);

}

/* ==========================================================
GALLERY
========================================================== */

.gallery{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:28px;

margin-top:30px;

}

.gallery-item{

background:var(--panel);

border:1px solid var(--border);

border-radius:18px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.35s;

}

.gallery-item:hover{

transform:translateY(-8px);

border-color:rgba(215,180,91,.35);

}

.gallery-item img{

width:100%;

height:250px;

object-fit:cover;

transition:.45s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-item h3{

text-align:center;

padding:18px;

font-size:20px;

color:var(--gold);

background:rgba(0,0,0,.25);

}

/* ==========================================================
VIDEOS
========================================================== */

.videos{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(480px,1fr));

gap:36px;

margin-top:35px;

}

.video{

background:var(--panel);

padding:18px;

border-radius:18px;

border:1px solid var(--border);

box-shadow:var(--shadow);

transition:.3s;

}

.video:hover{

transform:translateY(-8px);

border-color:rgba(215,180,91,.35);

}

.video iframe{

width:100%;

aspect-ratio:16/9;

border:none;

border-radius:12px;

display:block;

}

/* ==========================================================
ABOUT
========================================================== */

#about p{

max-width:900px;

font-size:19px;

color:var(--muted);

line-height:1.9;

margin-top:20px;

}

/* ==========================================================
FOOTER
========================================================== */

footer{

margin-top:90px;

background:#08090d;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-content{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:50px;

padding:70px 0;

}

.footer-content h3{

color:var(--gold);

margin-bottom:18px;

font-size:22px;

}

.footer-content p{

color:#9ea5b0;

line-height:1.8;

}

.footer-links{

list-style:none;

padding:0;

margin:0;

}

.footer-links li{

margin-bottom:14px;

}

.footer-links a{

color:#cfd3da;

transition:.3s;

}

.footer-links a:hover{

color:var(--gold);

padding-left:6px;

}

footer hr{

border:none;

height:1px;

background:rgba(255,255,255,.08);

}

.copyright{

text-align:center;

padding:28px 0 36px;

font-size:14px;

color:#888;

line-height:1.8;

}

/* ==========================================================
SMALL EFFECTS
========================================================== */

::selection{

background:rgba(215,180,91,.35);

color:#fff;

}

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:#7d6732;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#c8a95c;

}

/* ==========================================================
RESPONSIVE
========================================================== */

@media (max-width:1100px){

.hero h1{

font-size:52px;

}

.footer-content{

grid-template-columns:1fr;

gap:35px;

}

.videos{

grid-template-columns:1fr;

}

}

@media (max-width:900px){

header .container{

flex-direction:column;

gap:18px;

padding:15px 0;

}

.logo img{

height:110px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

gap:22px;

}

.hero{

min-height:90vh;

}

.hero-overlay{

padding-top:180px;

}

.hero h1{

font-size:44px;

text-align:center;

}

.hero p{

font-size:18px;

text-align:center;

margin-left:auto;

margin-right:auto;

}

.btn{

display:table;

margin:auto;

}

.cards{

grid-template-columns:1fr;

}

.gallery{

grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

body{

background-attachment:scroll;

}

.logo img{

height:90px;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:17px;

}

.gallery{

grid-template-columns:1fr;

}

.gallery-item img{

height:220px;

}

.video{

padding:12px;

}

.section{

padding:70px 0;

}

}

@media (max-width:480px){

header .container{

padding:12px 0;

}

.logo img{

height:72px;

}

nav ul{

flex-direction:column;

gap:12px;

}

nav a{

font-size:16px;

}

.hero-overlay{

padding-top:170px;

padding-bottom:70px;

}

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.btn{

padding:15px 28px;

font-size:15px;

}

.card h3{

font-size:22px;

}

.section h2{

font-size:30px;

}

.footer-content{

padding:45px 0;

}

}

/* ==========================================================
ANIMATIONS
========================================================== */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(25px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.hero,
.section,
.card,
.gallery-item,
.video{

animation:fadeUp .7s ease;

}

/* ==========================================================
END OF FILE
========================================================== */
