﻿/* ==========================================================
   STOON BOOTH
   HOME.CSS
========================================================== */

/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* =========================
   VARIABLES
========================= */

:root{

    --bg:#090909;

    --bg2:#111111;

    --card:rgba(255,255,255,.05);

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

    --gold:#D4AF37;

    --gold2:#b8911d;

    --white:#F8F8F8;

    --gray:#9A9A9A;

    --shadow:0 20px 80px rgba(0,0,0,.45);

    --radius:22px;

    --transition:.35s ease;

}

/* =========================
   RESET
========================= */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:"Manrope",sans-serif;

background:var(--bg);

color:var(--white);

overflow-x:hidden;

}

/* =========================
   LINKS
========================= */

a{

text-decoration:none;

color:inherit;

}

/* =========================
   NAVBAR
========================= */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

height:82px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 70px;

z-index:999;

transition:.4s;

background:transparent;

}

.navbar.scrolled{

background:rgba(10,10,10,.72);

backdrop-filter:blur(18px);

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

}

/* =========================
   LOGO
========================= */
.logo{

display:flex;

align-items:center;

gap:14px;

cursor:pointer;

transition:all .35s ease;

z-index:1000;

}

.logo-image{

height:56px;

width:auto;

display:block;

transition:all .35s ease;

filter:drop-shadow(0 0 18px rgba(212,175,55,.15));

}

.logo-text{

font-size:24px;

font-weight:800;

letter-spacing:3px;

color:var(--white);

transition:all .35s ease;

}

.logo:hover .logo-image{

transform:scale(1.05);

filter:drop-shadow(0 0 28px rgba(212,175,55,.35));

}

.logo:hover .logo-text{

color:var(--gold);

}
/* =========================
   MENU
========================= */

nav{

display:flex;

align-items:center;

gap:48px;

}

nav a{

font-size:15px;

font-weight:600;

color:#d8d8d8;

transition:.3s;

position:relative;

}

nav a:hover{

color:white;

}

nav a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--gold);

transition:.3s;

}

nav a:hover::after{

width:100%;

}

/* =========================
   BOOK BUTTON
========================= */

.book-btn{

padding:14px 26px;

border-radius:999px;

background:linear-gradient(135deg,var(--gold),#f1d27a);

color:black;

font-weight:800;

box-shadow:0 10px 40px rgba(212,175,55,.35);

transition:.35s;

}

.book-btn:hover{

transform:translateY(-3px);

box-shadow:0 15px 50px rgba(212,175,55,.45);

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

.hero{

position:relative;

width:100%;

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:120px 40px 80px;

overflow:hidden;

background:transparent;

}


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

.hero-background{

position:fixed;

top:0;

left:0;

width:100vw;

height:100vh;

background:url("/images/app_bg.png") center center no-repeat;

background-size:cover;

z-index:-100;

pointer-events:none;

}

.hero-background::after{

content:"";

position:absolute;

inset:0;

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

}
/* =========================
   GOLD GLOW
========================= */

.glow{

display:none;

}

.glow1{

width:700px;

height:700px;

left:-220px;

top:-220px;

background:rgba(212,175,55,.18);

}

.glow2{

width:650px;

height:650px;

right:-180px;

bottom:-180px;

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

animation-delay:4s;

}

/* =========================
   GRID
========================= */

.grid{

display:none;

}

/* =========================
   HERO CONTENT
========================= */
.hero-content{

position:relative;

z-index:5;

width:min(950px,90%);

max-width:900px;

margin:auto;

text-align:center;

}

/* =========================
   TITLE
========================= */

.hero h1{

font-size:clamp(72px,10vw,150px);

font-weight:800;

line-height:.9;

letter-spacing:-4px;

margin:25px 0;

}

.hero h1 span{

color:var(--gold);

display:block;

text-shadow:

0 0 18px rgba(212,175,55,.25),

0 0 45px rgba(212,175,55,.15);

}

/* =========================
   SUB TITLE
========================= */

.hero .lead{

margin:auto;

max-width:720px;

font-size:22px;

line-height:1.8;

color:var(--gray);

}

/* =========================
   BUTTONS
========================= */

.hero-buttons{

margin-top:50px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/* PRIMARY */

.primary-btn{

padding:18px 34px;

border-radius:999px;

background:linear-gradient(
135deg,
var(--gold),
#f4d57f
);

color:#111;

font-weight:800;

transition:.35s;

box-shadow:

0 15px 45px rgba(212,175,55,.35);

}

.primary-btn:hover{

transform:translateY(-4px) scale(1.03);

box-shadow:

0 25px 65px rgba(212,175,55,.55);

}

/* SECONDARY */

.secondary-btn{

padding:18px 34px;

border-radius:999px;

border:1px solid rgba(255,255,255,.12);

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

backdrop-filter:blur(15px);

font-weight:700;

transition:.35s;

}

.secondary-btn:hover{

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

transform:translateY(-4px);

}

/* =========================
   SCROLL
========================= */

.scroll{

position:absolute;

bottom:35px;

left:50%;

transform:translateX(-50%);

font-size:30px;

color:var(--gold);

animation:scrollDown 2.2s infinite;

z-index:10;

}

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

@keyframes scrollDown{

0%{

transform:translate(-50%,0);

opacity:0;

}

50%{

opacity:1;

}

100%{

transform:translate(-50%,15px);

opacity:0;

}

}

@keyframes floatGlow{

0%{

transform:translate(0,0) scale(1);

}

50%{

transform:translate(40px,-30px) scale(1.12);

}

100%{

transform:translate(0,0) scale(1);

}

}
/* ==========================================================
   GLASS NAVBAR
========================================================== */

.navbar::before{

content:"";

position:absolute;

inset:0;

background:

linear-gradient(
90deg,
rgba(255,255,255,.05),
transparent,
rgba(255,255,255,.03)
);

opacity:0;

transition:.4s;

pointer-events:none;

}

.navbar.scrolled::before{

opacity:1;

}

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

.hero-content{

animation:heroFade 1.2s ease;

}

@keyframes heroFade{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

/* ==========================================================
   GOLD LINE
========================================================== */

.eyebrow{

display:inline-flex;

align-items:center;

gap:14px;

font-size:14px;

letter-spacing:4px;

text-transform:uppercase;

font-weight:700;

color:var(--gold);

margin-bottom:25px;

}

.eyebrow::before{

content:"";

width:60px;

height:2px;

background:var(--gold);

}

.eyebrow::after{

content:"";

width:60px;

height:2px;

background:var(--gold);

}

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

.hero h1{

text-shadow:

0 12px 60px rgba(0,0,0,.5);

}

.hero .lead{

text-shadow:

0 5px 30px rgba(0,0,0,.25);

}

/* ==========================================================
   BUTTON SHINE
========================================================== */

.primary-btn{

position:relative;

overflow:hidden;

}

.primary-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:70%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.45),

transparent

);

transform:skewX(-25deg);

transition:.8s;

}

.primary-btn:hover::before{

left:150%;

}

/* ==========================================================
   NAV HOVER
========================================================== */

nav a{

padding:6px 0;

}

nav a:hover{

transform:translateY(-2px);

}

/* ==========================================================
   LOGO EFFECT
========================================================== */

.logo{

user-select:none;

}

.logo:hover{

letter-spacing:6px;

}

/* ==========================================================
   HERO MAX WIDTH
========================================================== */

.hero-content{

padding-top:70px;

}

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

@media(max-width:1100px){

.navbar{

padding:0 35px;

}

nav{

gap:24px;

}

.hero h1{

font-size:90px;

}

}

@media(max-width:850px){

.navbar{

padding:0 24px;

height:76px;

}

nav{

display:none;

}

.logo{

gap:10px;

}

.logo-image{

height:42px;

}

.logo-text{

font-size:17px;

font-weight:700;

letter-spacing:1.5px;

}

.hero h1{

font-size:64px;

letter-spacing:-2px;

}

.hero .lead{

font-size:18px;

line-height:1.7;

}

.hero-buttons{

flex-direction:column;

align-items:center;

margin-bottom:45px;

}

.primary-btn,

.secondary-btn{

width:260px;

text-align:center;

}

.social-links{

margin-top:35px;

}

.scroll{

display:none;

}

}

@media(max-width:520px){

.hero{

padding:30px;

}

.hero h1{

font-size:46px;

}

.logo{

font-size:22px;

letter-spacing:2px;

}

.eyebrow{

font-size:11px;

gap:8px;

}

.eyebrow::before,

.eyebrow::after{

width:30px;

}

.hero .lead{

font-size:16px;

}

}

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

.section{

padding:140px 8%;

position:relative;

}

.section-title{

font-size:54px;

font-weight:800;

text-align:center;

margin-bottom:25px;

}

.section-text{

max-width:760px;

margin:auto;

text-align:center;

font-size:20px;

color:var(--gray);

line-height:1.8;

}
/* ==========================================================
   APP.JS SUPPORT
========================================================== */

.hidden{

opacity:0;

transform:translateY(70px);

transition:1s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

.mouse-glow{

display:none;

}

.primary-btn,

.secondary-btn,

.book-btn{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

border-radius:50%;

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

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}
/* ==========================================================
   MOBILE MENU
========================================================== */

.menu-toggle{

display:none;

width:48px;

height:48px;

border:none;

border-radius:14px;

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

color:white;

font-size:26px;

cursor:pointer;

backdrop-filter:blur(20px);

transition:.3s;

}

.menu-toggle:hover{

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

}

@media(max-width:850px){

.menu-toggle{

display:flex;

align-items:center;

justify-content:center;

}

#mainMenu{

position:fixed;

top:90px;

left:20px;

right:20px;

display:flex;

flex-direction:column;

gap:18px;

padding:25px;

border-radius:22px;

background:rgba(10,10,10,.92);

backdrop-filter:blur(30px);

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

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

transform:translateY(-20px);

opacity:0;

pointer-events:none;

transition:.35s;

}

#mainMenu.open{

transform:translateY(0);

opacity:1;

pointer-events:auto;

}

#mainMenu a{

font-size:18px;

padding:8px 0;

}

.book-btn{

text-align:center;

margin-top:10px;

}

}
/* ==========================================================
   SOCIAL LINKS
========================================================== */

.social-links{

display:flex;

justify-content:center;

align-items:center;

gap:28px;

margin-top:40px;

}

.social-links a{

color:rgba(255,255,255,.75);

font-size:26px;

transition:all .3s ease;

}

.social-links a:hover{

color:var(--gold);

transform:translateY(-4px) scale(1.15);

}