
:root{
--bg:#f8f5ef;
--white:#ffffff;
--text:#1f1f1f;
--muted:#666;
--accent:#d8c9a8;
--border:#e8e1d5;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.7;
overflow-x:hidden;
}

/* NAVBAR */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:22px 5%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.92);
backdrop-filter:blur(12px);
z-index:999;
border-bottom:1px solid rgba(0,0,0,.05);
}

.logo{
font-family:'Playfair Display',serif;
font-size:1.2rem;
font-weight:600;
letter-spacing:1px;
}

.nav-links{
display:flex;
gap:32px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#222;
font-size:.95rem;
transition:.3s;
}

.nav-links a:hover{
opacity:.6;
}

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:26px;
height:2px;
background:#222;
}

/* HERO */

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
height:100%;
}

.hero-slide{
background-size:cover;
background-position:center;
animation:kenburns 12s ease-in-out infinite;
}
.hero-1{
background-image:url("../images/hero/artwork-01.JPG");
}

.hero-2{
background-image:url("../images/hero/artwork-02.jpg");
}

.hero-3{
background-image:url("../images/hero/artwork-03.jpg");
}

.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.45);
z-index:2;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:5;
width:90%;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:clamp(3rem,8vw,6rem);
line-height:1.05;
letter-spacing:2px;
background:linear-gradient(#fff,#d7d7d7);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-content p{
margin-top:20px;
font-size:1.15rem;
}

.hero-btn{
display:inline-block;
margin-top:30px;
padding:14px 32px;
background:white;
color:black;
text-decoration:none;
font-weight:600;
}

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

.hero-stats{

display:flex;

justify-content:center;

gap:50px;

margin-top:40px;

flex-wrap:wrap;

}

.hero-stat{

text-align:center;

}

.hero-stat span{

display:block;

font-size:34px;

font-weight:700;

color:white;

}

.hero-stat p{

margin-top:5px;

font-size:14px;

letter-spacing:1px;

color:white;

opacity:.9;

}

/* SECTIONS */

.section{
padding:110px 7%;
}

.section h2{
font-family:'Playfair Display',serif;
font-size:2.8rem;
margin-bottom:25px;
}

.section-heading{
text-align:center;
margin-bottom:50px;
}

.section-heading p{
color:var(--muted);
}

/* ABOUT */

.about-grid{
display:grid;
grid-template-columns:1fr 1.3fr;
gap:60px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:8px;
display:block;
}

.about-content p{
margin-bottom:18px;
color:#444;
}

/* FEATURED */

.featured-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.featured-art{
height:420px;
border-radius:10px;
background:#ddd;
overflow:hidden;
}

.center-btn{
text-align:center;
margin-top:35px;
}

.center-btn button{
padding:14px 30px;
border:none;
background:#111;
color:white;
cursor:pointer;
}

/* SWIPERS */

.swiper{
padding-bottom:40px;
}

.swiper-slide img{
width:100%;
height:420px;
object-fit:cover;
display:block;
border-radius:8px;
}

.contact-section{
padding:110px 7%;
background:white;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.contact-grid h3{
margin-bottom:10px;
font-family:'Playfair Display',serif;
}

footer{
padding:30px;
text-align:center;
border-top:1px solid #eee;
background:white;
}

/* KEN BURNS */

@keyframes kenburns{
0%{
transform:scale(1);
}
100%{
transform:scale(1.08);
}
}

/* TABLET */

@media(max-width:992px){

.about-grid{
grid-template-columns:1fr;
}

.featured-grid{
grid-template-columns:repeat(2,1fr);
}

.records-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:768px){

.nav-links{
position:fixed;
top:75px;
right:-100%;
width:280px;
height:calc(100vh - 75px);
background:white;
flex-direction:column;
padding:30px;
transition:.4s;
}

.nav-links.active{
right:0;
}

.hamburger{
display:flex;
}

.hero-content h1{
font-size:3rem;
}

.featured-grid{
grid-template-columns:1fr;
}

.records-grid{
grid-template-columns:1fr;
}

.contact-grid{
grid-template-columns:1fr;
}

.section{
padding:90px 6%;
}

}

/* ==========================
LIGHTBOX
========================== */

.lightbox{

position:fixed;

inset:0;

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

display:none;

align-items:center;

justify-content:center;

z-index:99999;

padding:40px;

}

.lightbox.active{

display:flex;

}

.lightbox-content{

position:relative;

max-width:90vw;

max-height:85vh;

}

.lightbox-content img{

max-width:100%;

max-height:85vh;

display:block;

border-radius:8px;

touch-action: pan-y;

user-select:none;

-webkit-user-drag:none;

}

.lightbox-close{

position:absolute;

top:25px;

right:35px;

font-size:40px;

background:none;

border:none;

color:white;

cursor:pointer;

z-index:10;

}

.lightbox-prev,
.lightbox-next{

position:absolute;

top:50%;

transform:translateY(-50%);

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

backdrop-filter:blur(6px);

border:none;

width:60px;

height:60px;

color:white;

font-size:30px;

cursor:pointer;

border-radius:50%;

}

.lightbox-prev{

left:25px;

}

.lightbox-next{

right:25px;

}

#lightboxCounter{

color:white;

text-align:center;

margin-top:15px;

font-size:15px;

letter-spacing:1px;

}

@media(max-width:768px){

.lightbox{

padding:20px;

}

.lightbox-prev,
.lightbox-next{

width:50px;

height:50px;

font-size:24px;

}

}

/* ==========================
ARTWORK HOVER OVERLAY
========================== */

.featured-art{

position:relative;

overflow:hidden;

cursor:pointer;

}

.featured-art img{

transition:transform .6s ease;

}

.featured-art:hover img{

transform:scale(1.05);

}

.artwork-overlay{

position:absolute;

inset:0;

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

display:flex;

align-items:center;

justify-content:center;

opacity:0;

transition:.4s ease;

pointer-events:none;

}

.featured-art:hover .artwork-overlay{

opacity:1;

}

.artwork-overlay span{

color:white;

font-size:16px;

letter-spacing:1px;

font-weight:500;

padding:12px 20px;

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

backdrop-filter:blur(6px);

border-radius:50px;

}

/* ==========================
FLOATING CONTACT
========================== */

.floating-contact{

position:fixed;

right:25px;

bottom:25px;

z-index:9999;

}

#contactToggle{

background:#111;

color:white;

border:none;

padding:15px 22px;

border-radius:50px;

cursor:pointer;

font-size:15px;

box-shadow:0 8px 30px rgba(0,0,0,.2);

}

#contactMenu{

position:absolute;

bottom:70px;

right:0;

display:none;

flex-direction:column;

gap:10px;

}

#contactMenu.active{

display:flex;

}

#contactMenu a{

background:white;

padding:12px 18px;

border-radius:12px;

text-decoration:none;

color:#222;

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

white-space:nowrap;

}