/* ========================== DUCAL WHISKERS PREMIUM THEME ========================== */
:root{
–black:#050505; –dark:#111111; –gold:#D8C79A; –ivory:#F4EED8; –red:#B11226;
}
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
background:var(–black); color:var(–ivory); font-family:‘Cormorant Garamond’,serif; line-height:1.7;
}
/* HEADER */
header{
position:fixed; top:0; left:0; width:100%; background:rgba(5,5,5,0.95); backdrop-filter:blur(10px); border-bottom:1px solid rgba(216,199,154,.25); z-index:999;
}
.container{
width:90%; max-width:1400px; margin:auto;
}
header .container{
display:flex; justify-content:space-between; align-items:center;
}
.logo img{
height:95px; padding:8px 0;
}
nav ul{
display:flex; gap:35px; list-style:none;
}
nav a{
text-decoration:none; color:var(–ivory); font-size:1.1rem; transition:.3s;
}
nav a:hover{
color:var(–gold);
}
/* HERO */
.hero{
height:100vh;
background: linear-gradient( rgba(0,0,0,.65), rgba(0,0,0,.65) ), url(‘../images/icy.jpg’);
background-size:cover; background-position:center center;
display:flex; justify-content:center; align-items:center;
text-align:center;
}
.hero-content{
max-width:900px;
}
.hero h1{
font-size:6rem; font-weight:600; color:var(–gold);
}
.hero h2{
font-size:2.2rem; letter-spacing:10px; margin-bottom:20px;
}
.slogan{
font-size:2rem; font-style:italic; margin:35px 0;
}
/* BUTTONS */
.btn{
display:inline-block;
padding:14px 35px;
border:1px solid var(–gold);
background:var(–gold);
color:#000;
text-decoration:none;
font-weight:bold;
transition:.3s;
}
.btn:hover{
background:transparent; color:var(–gold);
}
/* SECTIONS */
section{
padding:120px 0;
}
section h2{
font-size:3rem; color:var(–gold); text-align:center;
margin-bottom:40px;
}
section p{
font-size:1.3rem; max-width:900px; margin:auto;
}
/* ABOUT */
#about{
background:#111;
text-align:center;
}
/* CARDS */
.cards{
display:grid;
grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
gap:40px;
margin-top:50px;
}
.card{
background:#0b0b0b;
border:1px solid rgba(216,199,154,.2);
overflow:hidden;
transition:.3s;
}
.card:hover{
transform:translateY(-10px);
}
.card img{
width:100%; height:450px; object-fit:cover;
}
.card h3{
color:var(–gold);
font-size:2rem;
padding:20px;
}
.card p{
padding:0 20px 30px;
}
/* KITTENS */
#kittens{
text-align:center; background:#111;
}
/* GALLERY */
.gallery{
display:grid;
grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
gap:20px;
margin-top:50px;
}
.gallery img{
width:100%; height:350px;
object-fit:cover;
border:2px solid rgba(216,199,154,.15);
transition:.4s;
}
.gallery img:hover{
transform:scale(1.03);
}
/* INSTAGRAM */
.instagram{
text-align:center;
background:#0d0d0d;
}
/* CONTACT */
#contact{
text-align:center;
}
#contact p{
margin-bottom:15px;
}
/* FOOTER */
footer{
padding:60px 0;
text-align:center;
border-top:1px solid rgba(216,199,154,.2);
}
.footer-logo{
height:140px;
margin-bottom:20px;
}
footer p{
font-size:1.1rem;
}
/* RESPONSIVE */
@media(max-width:900px){
.hero h1{
font-size:3.8rem;
}
.hero h2{
font-size:1.3rem;
letter-spacing:4px;
}
.slogan{
font-size:1.5rem;
}
nav ul{
display:none;
}
.logo img{
height:70px;
}
section{
padding:80px 0;
}
section h2{
font-size:2.2rem;
}
}
#instagram{
    text-align:center;
    padding:80px 20px;
    background:#111;
}

#instagram h2{
    color:#f5e7b2;
    margin-bottom:20px;
}

.instagram-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 30px;
    background:#f5e7b2;
    color:#000;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}
