/* ===========================================
   SEE ME! V2 (gothic monochrome)
=========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Pacifico&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{

    /* Gothic monochrome palette */
    --bg:#0A0A0D;
    --card:#121218;
    --card2:#191A21;

    --accent:#F5F5F7;
    --accent-dim:rgba(255,255,255,.75);

    --white:#F8F8F8;
    --gray:#BEBEBE;

    --glass:rgba(255,255,255,.05);
    --border:rgba(255,255,255,.10);

    --shadow:rgba(0,0,0,.6);
    --line:rgba(255,255,255,.12);
    --glow:rgba(255,255,255,.18);

    /* backward compat */
    --pink:var(--accent);
    --pink2:var(--accent);
    --blue:var(--accent);
    --purple:var(--accent);
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:white;
    overflow-x:hidden;
    position:relative;
}

/*=============================
BACKGROUND BLOBS
=============================*/
body::before{
    content:"";
    position:fixed;
    width:600px;
    height:600px;
    background:rgba(255,255,255,.10);
    filter:blur(180px);
    top:-250px;
    left:-200px;
    z-index:-2;
    animation:blob1 18s infinite ease-in-out;
}

body::after{
    content:"";
    position:fixed;
    width:700px;
    height:700px;
    background:rgba(255,255,255,.07);
    filter:blur(180px);
    bottom:-350px;
    right:-250px;
    z-index:-2;
    animation:blob2 20s infinite ease-in-out;
}

@keyframes blob1{
    0%{ transform:translate(0,0); }
    50%{ transform:translate(80px,40px); }
    100%{ transform:translate(0,0); }
}

@keyframes blob2{
    0%{ transform:translate(0,0); }
    50%{ transform:translate(-80px,-50px); }
    100%{ transform:translate(0,0); }
}

/*=========================
SCROLLBAR
=========================*/
::-webkit-scrollbar{ width:8px; }
::-webkit-scrollbar-thumb{
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.65),
        rgba(255,255,255,.25)
    );
    border-radius:100px;
}

::selection{
    background:rgba(255,255,255,.18);
    color:#0A0A0D;
}

/*=========================
FLOATING ICONS
=========================*/
.floating{
    position:fixed;
    opacity:.18;
    z-index:-1;
    pointer-events:none;
    animation:float 9s infinite ease-in-out;
}

.star1{ left:4%; top:120px; font-size:2rem; }
.star2{ right:6%; top:320px; font-size:1.8rem; }
.heart1{ left:8%; bottom:120px; }
.heart2{ right:10%; top:180px; }
.bow1{ right:18%; bottom:180px; }
.moon1{ left:15%; bottom:260px; }

@keyframes float{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-20px); }
    100%{ transform:translateY(0); }
}

/*=========================
NAVBAR
=========================*/
nav{
    position:sticky;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 9%;
    backdrop-filter:blur(25px);
    background:rgba(10,10,13,.72);
    border-bottom:1px solid rgba(255,255,255,.06);
    z-index:999;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    height: 80px;      /* Ubah sesuai ukuran yang diinginkan */
    width: auto;
    display: block;
    object-fit: contain;
}

nav ul{ display:flex; list-style:none; gap:35px; }
nav ul a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.35s;
}
nav ul a:hover{ color:rgba(255,255,255,.75); }

/*=========================
HERO
=========================*/
.hero{
    width:100%;
    min-height:95vh;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
    padding:80px 9%;
}

.hero-left{ flex:1; }

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.16);
    color:rgba(255,255,255,.85);
    font-size:.9rem;
    margin-bottom:30px;
}

.hero-left h1{
    font-size:4.3rem;
    line-height:1.08;
    margin-bottom:22px;
    font-weight:800;
}

.hero-left h1 span{
    background:linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.55));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left p{
    color:var(--gray);
    line-height:1.9;
    max-width:620px;
    margin-bottom:35px;
}

/*=========================
BUTTONS
=========================*/
.hero-buttons{ display:flex; gap:18px; flex-wrap:wrap; }

.btn-primary{
    padding:16px 30px;
    border-radius:18px;
    text-decoration:none;
    color:#0A0A0D;
    background:linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.55));
    box-shadow:0 10px 30px rgba(255,255,255,.08);
    transition:.35s;
}
.btn-primary:hover{ transform:translateY(-4px); }

.btn-secondary{
    padding:16px 30px;
    border-radius:18px;
    text-decoration:none;
    color:white;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(15px);
    transition:.35s;
}
.btn-secondary:hover{
    border-color:rgba(255,255,255,.22);
    transform:translateY(-4px);
}

/*=========================
FEATURED FRAME
=========================*/
.hero-right{ flex:1; display:flex; justify-content:center; }

.preview-card{
    width:360px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(25px);
    border-radius:30px;
    padding:22px;
    border:1px solid rgba(255,255,255,.06);
    box-shadow:0 15px 60px rgba(0,0,0,.45);
}

.preview-header{ text-align:center; margin-bottom:18px; color:rgba(255,255,255,.85); font-weight:600; }

.frame-preview{
    background:
    url("assets/frames/y2k/y2k-01.png");
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    border-radius:20px;
    overflow:hidden;
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.preview-footer{ margin-top:18px; text-align:center; color:#d9d9d9; font-size:.9rem; }

/*==========================================
COLLECTIONS
==========================================*/
.themes{
    padding:120px 9%;
}

.themes h2{
    font-size:3rem;
    text-align:center;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:var(--gray);
    margin-bottom:60px;
}

.theme-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.theme-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    min-height:380px;
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    transition:.45s;
    isolation:isolate;
}

/* Dark overlay for readability */
.theme-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    );
    z-index:-1;
}

.theme-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 20px 45px rgba(0,0,0,.45);
}

.theme-card h3{
    font-size:2rem;
    margin-bottom:15px;
    color:#fff;
}

.theme-card p{
    color:rgba(255,255,255,.88);
    line-height:1.8;
}

/* Background Images */
.theme-card.y2k{
    background-image:url("assets/y2k-back.jpg");
}

.theme-card.frutiger{
    background-image:url("assets/frutiger-back.jpg");
}

.theme-card.gothic{
    background-image:url("assets/gothic-back.jpg");
}
/*==========================================
FEATURES
==========================================*/
.features{ padding:120px 9%; }
.features h2{ text-align:center; font-size:3rem; margin-bottom:60px; }
.feature-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; }

.feature{
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(20px);
    border-radius:28px;
    padding:35px;
    border:1px solid rgba(255,255,255,.06);
    transition:.4s;
}
.feature:hover{ transform:translateY(-10px); }

.feature i{
    font-size:2rem;
    background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.55));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:20px;
}

.feature h3{ margin-bottom:15px; }
.feature p{ color:var(--gray); line-height:1.8; }

/*==========================================
COMING SOON
==========================================*/
.coming-soon{ padding:120px 9%; }
.coming-soon h2{ text-align:center; font-size:3rem; margin-bottom:60px; }
.coming-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:25px; }

.coming-card{
    background:rgba(255,255,255,.04);
    border-radius:25px;
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(20px);
    text-align:center;
    padding:40px 20px;
    transition:.4s;
}
.coming-card:hover{ transform:translateY(-8px); }
.coming-card{ font-size:3rem; }
.coming-card h3{ margin-top:20px; font-size:1.3rem; }

/*==========================================
FOOTER
==========================================*/
footer{
    padding:70px 20px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.06);
    background:rgba(255,255,255,.02);
}

.footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:15px;
}

.footer-logo img{
    height:80px;          /* Ubah menjadi 90px atau 100px jika ingin lebih besar */
    width:auto;
    object-fit:contain;
    display:block;
    transition:transform .3s ease;
}

.footer-logo img:hover{
    transform:scale(1.05);
}

footer p{
    color:rgba(255,255,255,.78);
    margin-bottom:10px;
    font-size:1rem;
}

footer small{
    color:var(--gray);
    font-size:.9rem;
}

/*==========================================
HOVER GLOW
==========================================*/
.theme-card,
.feature,
.preview-card,
.coming-card{
    transition: transform .4s, box-shadow .4s;
}

.theme-card:hover,
.feature:hover,
.preview-card:hover,
.coming-card:hover{
    box-shadow:
        0 0 20px rgba(255,255,255,.14),
        0 0 50px rgba(255,255,255,.08);
}

/*==========================================
RESPONSIVE
==========================================*/
@media(max-width:1200px){
    .hero{ flex-direction:column; text-align:center; gap:60px; }
    .hero-left p{ margin:auto; }
    .hero-buttons{ justify-content:center; }
    .hero-right{ width:100%; }
    .preview-card{ width:380px; max-width:100%; }
}

@media(max-width:900px){
    nav{ padding:20px 7%; }
    nav ul{ gap:18px; }
    .hero{ padding:60px 7%; }
    .hero-left h1{ font-size:3.4rem; }
    .themes,.features,.coming-soon{ padding:90px 7%; }
}

@media(max-width:768px){
    nav{ flex-direction:column; gap:20px; }
    nav ul{ flex-wrap:wrap; justify-content:center; }
    .hero-left h1{ font-size:2.7rem; }
    .preview-card{ width:100%; }
    .theme-grid,.feature-grid,.coming-grid{ grid-template-columns:1fr; }
}

@media(max-width:500px){
    .hero{ padding-top:50px; }
    .hero-left h1{ font-size:2.2rem; }
    .btn-primary,.btn-secondary{ width:100%; text-align:center; }
    .preview-photo{ height:110px; }
}

/*==========================================
SMOOTH FADE
==========================================*/
.hero,.themes,.features,.coming-soon{ animation:fadeUp .9s ease; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(40px);} to{ opacity:1; transform:translateY(0);} }

/*==========================================
FLOATING CARD
==========================================*/
.preview-card{ animation:floatCard 6s ease-in-out infinite; }
@keyframes floatCard{ 0%{transform:translateY(0px);} 50%{transform:translateY(-12px);} 100%{transform:translateY(0px);} }

/*==========================================
BUTTON GLOW
==========================================*/
.btn-primary{ position:relative; overflow:hidden; }
.btn-primary::before{
    content:"";
    position:absolute;
    left:-120%;
    top:0;
    width:120%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
    transition:.8s;
}
.btn-primary:hover::before{ left:120%; }

/*==========================================
PREVIEW IMAGE
==========================================*/
.frame-preview{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.03);
}

.hero-frame{
    width: 100%;
    max-width: 360px;   /* Perbesar atau perkecil sesuai kebutuhan */
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .4s ease;
}

.hero-frame:hover{
    transform: scale(1.03);
}

.preview-photo{
    background: #1a1a1a;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}
/*==========================================
TV GIRL GRAIN
==========================================*/
body::after{ pointer-events:none; }
body::before{ pointer-events:none; }

.grain{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    opacity:.03;
    pointer-events:none;
    mix-blend-mode:soft-light;
    background-image:url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    z-index:9999;
}

/*==========================================
PRETTY SHADOW
==========================================*/
.preview-card{ box-shadow:0 20px 50px rgba(0,0,0,.5), 0 0 80px rgba(255,255,255,.06); }

/*==========================================
LOGO HOVER
==========================================*/
.logo{ transition:.4s; cursor:pointer; }
.logo:hover{ transform:scale(1.05); filter:drop-shadow(0 0 15px rgba(255,255,255,.25)); }

/*==========================================
END
==========================================*/

