*{
margin:0;
padding:0;
box-sizing:border-box;
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0d0d0d;
color:#fff;
display: block;
}

a{
text-decoration:none;
color: inherit;

}

img{
width:100%;
display: inline;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#111;
border-bottom:1px solid #d4af37;
position:relative;
top:0;
z-index:100;
}

.logo{
font-size:250%;
font-family:'Playfair Display',serif;
color:#d4af37;
}

.logo span{
color:#fff;
}
.logo img{
  width: 40%;
  margin-left: -10%;
}
nav{
display:flex;
gap:30px;
}

nav a{
color:#fff;
font-size:15px;
transition:300000s;
}

nav a:hover {
color: gold;
}

.btn{
background:#d4af37;
padding:12px 25px;
color:#111;
font-weight:600;
border-radius:5px;
}

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:80px 8%;
gap:50px;
}

.hero-text{
flex:1;
}

.hero-text h5{
color:#d4af37;
letter-spacing:3px;
margin-bottom:15px;
}

.hero-text h1{
font-size:70px;
font-family:'Playfair Display',serif;
margin-bottom:10px;
}

.hero-text h2{
font-size:34px;
font-family:'Playfair Display',serif;
color:#d4af37;
margin-bottom:20px;
}

.hero-text p{
line-height:1.8;
margin-bottom:30px;
color:#ddd;
}

.hero-buttons{
display:flex;
gap:20px;
}

.gold-btn{
background:#d4af37;
color:#111;
padding:14px 28px;
font-weight:600;
border-radius:4px;
}

.outline-btn{
border:2px solid #d4af37;
padding:14px 28px;
color:#fff;
border-radius:4px;
}

.hero-image{
width: 100%;
object-fit: cover;
display: flex;
flex:1;
}

.hero-image img{
border-radius:10px;
max-height: 300%;

  
  max-width: 600%;
  
  display: inline;

  /* This is the magic - fades image into background */
  -webkit-mask-image: linear-gradient(to left, 
    rgba(0,0,0,1) 0%,      /* image fully visible */
    rgba(0,0,0,1) 60%,     /* still bold here */
    rgba(0,0,0,0) 100%     /* fades to transparent */
  );
  mask-image: linear-gradient(to left, 
    rgba(0,0,0,1) 0%, 
    rgba(0,0,0,1) 60%, 
    rgba(0,0,0,0) 100%
  );
}

.gallery{
padding:70px 8%;
}

.gallery h2{
text-align:center;
font-family:'Playfair Display',serif;
margin-bottom:40px;
color:#d4af37;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.gallery-grid img{
height:300px;
object-fit:cover;
border-radius:8px;
transition:.3s;
border:2px solid transparent;
}

.gallery-grid img:hover{
transform:scale(1.05);
border-color:#d4af37;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:70px 8%;
align-items:center;
}

.about img{
border-radius:10px;
}

.about h2{
font-family:'Playfair Display',serif;
color:#d4af37;
margin-bottom:20px;
}

.about p{
line-height:1.8;
margin-bottom:20px;
color:#ddd;
}

.services{
padding:70px 8%;
text-align:center;
}

.services h2{
font-family:'Playfair Display',serif;
margin-bottom:40px;
color:#d4af37;
}

.service-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
}

.item{
background:#161616;
padding:35px 20px;
border:1px solid #222;
border-radius:8px;
transition:.3s;
}

.item:hover{
transform:translateY(-10px);
border-color:#d4af37;
}

.item i{
font-size:42px;
color:#d4af37;
margin-bottom:20px;
}

.item h3{
font-size:20px;
}

footer{
background:#111;
margin-top:70px;
padding:30px 8%;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
border-top:1px solid #d4af37;
}

.footer-logo{
font-size:28px;
font-family:'Playfair Display',serif;
color:#d4af37;
}

.footer-logo span{
color:#fff;
}

footer i{
color:#d4af37;
margin-right:8px;
}



.socials i{
font-size: 250%;
margin-right:;
cursor:pointer;
transition:.3s;
display: inline-block;
justify-content: space-between;
}

.socials i:hover{
color:#fff;
}

@media(max-width:900px){

header{
flex-direction:column;
gap:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero{
flex-direction:column;
text-align:center;
}

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero-text h1{
font-size:48%;
}

.hero-text h2{
font-size:26%;
}

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

footer{
flex-direction:column;
text-align:center;
}



.about-softcutz,
.about-softcutz-story {

  margin: 60px auto;
  padding: 50px 20px;
  text-align: center;
  background: #000;
  color: white;
  border: solid 1px green;
  box-shadow: rgba(100, 100, 110, 0.9)0px 7px 29px 0px;
  border-radius: 10px;
}

.about-softcutz h2,
.about-softcutz-story h2 {
  font-size: 36px;
  font-weight: 800;
  color: #065F46;
  /* your green */
  margin-bottom: 10px;
}

.brand-line {
  width: 80px;
  height: 3px;
  background: #FFD700;
  /* your gold */
  margin: 0 auto 25px auto;
  display: flex;
}

.about-softcutz p,
.about-softcutz-story p {
  font-size: 16px;
  line-height: 1.9;
  color: #fff;

}

.about-softcutz strong,
.about-softcutz-story strong {
  color: #065F46;
}

.signature {
  font-style: italic;
  color: #065F46;
  font-weight: 700;
  margin-top: 20px;
}
.jam{text-align: center;}
.contact-info strong{ color: gold;}
.about-text{ 
  max-width: 650px;
  line-height: 2;
  border: solid 1px gold;
  border-radius: 15px;
}


  
  

.brand-line p{
  font-family: times;
  font-size: 130%;
  max-width: 50%;
}
.about-image{
  @media (min-width: 768px) 
  
 max-width: 50%;
  border-radius: 15px;
}
.boss{
  border-radius: 50%;
  max-width: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
  object-fit: contain;
  
}
.jag{
  border: solid 1px gold;
  width: 85%;
  border-radius: 15px;
}
.jag strong {
  color: gold;
}
header img{

}

.item li {
  padding: 6px 0;
  border-bottom: 1px dashed gold;
  list-style-type: none;
  
  .item ul {
  list-style: none;
  padding-left: 15px;
  margin: 0;
}