

/* =====================================================

   STEENERSEN CUSTOM GUITARS

   VERSION 3.0

===================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:#0b0b0b;

    color:#f5f5f5;

    font-family:'Montserrat',sans-serif;

    line-height:1.8;

}

img{

    max-width:100%;

    display:block;

}

a{

    color:#c8a86a;

    text-decoration:none;

}

/* HEADER */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 60px;

    background:rgba(8,8,8,.94);

    backdrop-filter:blur(10px);

    border-bottom:1px solid #222;

    z-index:999;

}

.logo img{

    height:70px;

}

nav{

    display:flex;

    align-items:center;

    gap:28px;

}

nav a{

    color:#ddd;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:2px;

    transition:.3s;

}

nav a:hover{

    color:#c8a86a;

}

/* HERO */

.hero{

    height:100vh;

    background:

    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.60)),

    url(hero.jpg);

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.hero-overlay{

    max-width:900px;

    padding:30px;

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:92px;

    letter-spacing:8px;

    font-weight:500;

}

.hero h2{

    font-family:'Cormorant Garamond',serif;

    color:#c8a86a;

    font-size:42px;

    letter-spacing:5px;

    margin-bottom:30px;

}

.hero-tagline{

    font-size:24px;

    letter-spacing:2px;

}

.hero-sub{

    color:#bbb;

    margin:18px 0 40px;

}

.button{

    display:inline-block;

    padding:16px 36px;

    border:1px solid #c8a86a;

    color:#c8a86a;

    text-transform:uppercase;

    letter-spacing:2px;

    transition:.3s;

}

.button:hover{

    background:#c8a86a;

    color:#111;

}

/* CONTENT */

section{

    padding:120px 30px;

}

.content{

    width:90%;

    max-width:1100px;

    margin:auto;

}

h3{

    font-family:'Cormorant Garamond',serif;

    color:#c8a86a;

    font-size:48px;

    margin-bottom:25px;

}

p{

    color:#ddd;

    margin-bottom:20px;

}

/* FEATURED */

.featured{

    border-radius:10px;

    margin:40px 0;

    box-shadow:0 20px 40px rgba(0,0,0,.55);

}

/* BUILDER */

.builder-grid{

    display:grid;

    grid-template-columns:220px 1fr;

    gap:55px;

    align-items:center;

    margin-top:35px;

}

.builder-image img{

    width:220px;

    border-radius:10px;

    box-shadow:0 20px 40px rgba(0,0,0,.5);

}

.builder-text strong{

    color:#c8a86a;

    font-size:24px;

}

/* GALLERY */

.gallery{

    display:grid;

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

    gap:24px;

    margin-top:45px;

}

.gallery img{

    border-radius:10px;

    transition:.35s;

    cursor:pointer;

}

.gallery img:hover{

    transform:scale(1.03);

    box-shadow:0 18px 40px rgba(0,0,0,.55);

}

/* FOOTER */

footer{

    border-top:1px solid #222;

    padding:70px 20px;

    text-align:center;

}

footer h3{

    font-size:40px;

}

footer p{

    color:#aaa;

}

/* MOBILE */

@media(max-width:900px){

header{

    flex-direction:column;

    padding:20px;

}

.logo{

    margin-bottom:15px;

}

nav{

    flex-wrap:wrap;

    justify-content:center;

    gap:14px;

}

.hero h1{

    font-size:54px;

    letter-spacing:3px;

}

.hero h2{

    font-size:28px;

}

.hero-tagline{

    font-size:18px;

}

section{

    padding:90px 20px;

}

h3{

    font-size:36px;

}

.builder-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.builder-image{

    margin:auto;

}

.builder-image img{

    width:180px;

}

}
/* Workshop */

.workshop-card{

background:#111;

padding:20px;

border-radius:10px;

transition:.3s;

}

.workshop-card:hover{

transform:translateY(-6px);

}

.workshop-card h4{

margin:20px 0 10px;

color:#c8a86a;

font-size:24px;

font-family:'Cormorant Garamond',serif;

}

.workshop-card p{

font-size:15px;

}

/* Journal */

.journal-post{

margin:60px 0;

}

.journal-post h4{

font-size:34px;

font-family:'Cormorant Garamond',serif;

color:#c8a86a;

}

.journal-date{

color:#888;

font-size:14px;

letter-spacing:2px;

text-transform:uppercase;

margin-bottom:20px;

}

hr{

border:none;

border-top:1px solid #222;

margin:70px 0;

}
/* Fade animation */

.hidden{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

/* Lightbox */

#lightbox{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

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

display:flex;

justify-content:center;

align-items:center;

z-index:9999;

cursor:pointer;

}

#lightbox img{

max-width:92%;

max-height:92%;

border-radius:10px;

box-shadow:0 20px 60px rgba(0,0,0,.7);

}
```
