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

body{
  font-family:'Inter',sans-serif;
  background:#fff;
  color:#111;
}

.navbar{
  position:sticky;
  top:0;
  background:rgba(255,255,255,0.95);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 8%;
  border-bottom:1px solid #eee;
  z-index:1000;
}

.logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:1px;
}

.logo span{
  color:#ff6a1a;
}

nav a{
  text-decoration:none;
  color:#111;
  margin-left:28px;
  font-weight:500;
}

nav a:hover{
  color:#ff6a1a;
}

.hero{
  min-height:90vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:60px 8%;
  gap:60px;
}

.hero h1{
  font-size:72px;
  line-height:1;
  margin-bottom:24px;
  font-family:'Space Grotesk',sans-serif;
}

.hero p{
  font-size:20px;
  color:#555;
  margin-bottom:32px;
}

.buttons{
  display:flex;
  gap:16px;
}

button{
  padding:16px 28px;
  border:none;
  background:#ff6a1a;
  color:white;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  transform:translateY(-2px);
}

.outline{
  background:white;
  color:#111;
  border:1px solid #111;
}

.hero-image img{
  width:100%;
  border-radius:10px;
}

.collections,
.gallery,
.about,
.custom{
  padding:100px 8%;
}

.collections h2,
.gallery h2,
.about h2,
.custom h2{
  font-size:48px;
  margin-bottom:40px;
  font-family:'Space Grotesk',sans-serif;
}

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

.card{
  background:#fafafa;
  overflow:hidden;
  border-radius:10px;
}

.card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.card h3{
  padding:20px;
}

.about{
  background:#f7f7f5;
}

.about p{
  max-width:700px;
  font-size:20px;
  line-height:1.8;
  color:#444;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:10px;
}

.custom-box{
  background:#f7f7f5;
  padding:50px;
  border-radius:12px;
}

form{
  display:grid;
  gap:16px;
}

input, textarea{
  padding:18px;
  border:1px solid #ddd;
  font-size:16px;
}

textarea{
  min-height:120px;
}

footer{
  padding:60px 8%;
  border-top:1px solid #eee;
  text-align:center;
}

footer h3{
  font-size:36px;
  margin-bottom:12px;
}

.socials{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:20px;
  color:#ff6a1a;
  font-weight:700;
}

@media(max-width:900px){

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

  .hero h1{
    font-size:52px;
  }

  .grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  nav{
    display:none;
  }
}
