*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Archivo, sans-serif;
background:black;
color:white;
}

/* HEADER */
header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:black;
z-index:1000;
}

.logo{
font-family:"Crimson Pro", serif;
font-size:38px;
font-weight:600;
color:white;
text-decoration:none;
}

.desktop-nav{
display:flex;
gap:25px;
list-style:none;
}

.desktop-nav a{
color:white;
text-decoration:none;
font-size:16px;
}

/* PRODUCT ROWS */
.product-row{
display:flex;
align-items:center;
gap:40px;
padding:80px 10%;
border-bottom:1px solid #111;
}

.product-img{
width:300px;
height:200px;
object-fit:cover;
border-radius:10px;
}

/* TEXT */
.product-text h2{
font-family:"Crimson Pro", serif;
font-size:42px;
margin-bottom:10px;
}

.product-text p{
color:#bbb;
line-height:1.6;
max-width:500px;
margin-bottom:15px;
}

/* 🔥 NEW BUTTON BOX STYLE */
.view-btn{
display:inline-block;
padding:12px 20px;
margin-top:10px;

background:#0f0f0f;              /* dark box */
border:1px solid #2a2a2a;       /* subtle border */
border-radius:10px;

color:white;
text-decoration:none;
font-size:14px;

box-shadow:0 4px 10px rgba(0,0,0,0.5);
transition:0.2s ease;
}

/* hover effect */
.view-btn:hover{
transform:translateY(-2px);
border-color:#00364A;
box-shadow:0 6px 16px rgba(0,54,74,0.4);
}

/* ABOUT */
.about-section{
padding:120px 10%;
background:#0a0a0a;
text-align:center;
}

.about-img{
width:260px;
border-radius:10px;
margin-bottom:20px;
}

.about-section p{
color:#bbb;
margin-bottom:10px;
line-height:1.6;
}

/* CONTACT */
.contact-section{
padding:120px 10%;
text-align:center;
background:#111;
}

.contact-btn{
display:inline-block;
margin-top:20px;
padding:15px 30px;
background:#00364A;
color:white;
text-decoration:none;
border-radius:6px;
}

/* FOOTER */
footer{
text-align:center;
padding:20px;
background:black;
color:#777;
}
body{
padding-top:110px;
}

.product-row:first-of-type{
margin-top:20px;
}