/* =========================
style.css
========================= */

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

:root{

  --orange:#F29C6B;
  --grey:#F2F2F2;
  --dark:#030712;
  --light:#ffffff;
  --gray:#a7b0c0;
  --card:#0d1324;

}

body{

  font-family:'Poppins', sans-serif;
  background:var(--grey);
  color:--dark;
  overflow-x:hidden;

}

/* =========================
HEADER
========================= */

header{

  position:fixed;
  width:100%;
  top:0;
  z-index:999;
  background:rgba(3,7,18,0.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.05);

}

.navbar{

  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 7%;

}

.logo img{

  width:95px;
  object-fit:contain;

}

/* MENU */

.menu{

  display:flex;
  list-style:none;
  gap:3rem;

}

.menu a{

  color:--dark;
  text-decoration:none;
  font-weight:500;
  transition:0.3s;
  position:relative;

}

.menu a:hover,
.menu .active{

  color:var(--orange);

}

.menu a::after{

  content:"";
  position:absolute;
  width:0%;
  height:2px;
  background:var(--orange);
  bottom:-8px;
  left:0;
  transition:0.3s;

}

.menu a:hover::after,
.menu .active::after{

  width:100%;

}

/* HAMBURGER */

.hamburger{

  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;

}

.hamburger span{

  width:26px;
  height:3px;
  background:--dark;
  border-radius:10px;

}

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

.hero{

  min-height:100vh;
  padding:160px 7% 100px;
  position:relative;
  display:flex;
  align-items:center;

}

.hero-container{

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
  width:100%;

}

/* SOCIAL */

.hero-social{

  position:absolute;
  left:2rem;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1.5rem;

}

.hero-social span{

  writing-mode:vertical-rl;
  transform:rotate(180deg);
  color:var(--gray);
  letter-spacing:1px;

}

.vertical-line{

  width:1px;
  height:90px;
  background:rgba(255,255,255,0.2);

}

.social-icons{

  display:flex;
  flex-direction:column;
  gap:1.5rem;
  font-size:1.3rem;

}

.social-icons i{

  cursor:pointer;
  transition:0.3s;

}

.social-icons i:hover{

  color:var(--orange);

}

/* HERO TEXT */

.hero-text h1{

  font-size:5.3rem;
  line-height:1;
  font-family:'Cormorant Garamond', serif;
  margin-bottom:2rem;

}

.hero-text h1 span{

  color:var(--orange);

}

.hero-line{

  width:90px;
  height:5px;
  background:var(--orange);
  margin-bottom:2rem;

}

.hero-text p{

  color:var(--gray);
  line-height:1.9;
  font-size:1.1rem;
  max-width:580px;

}

/* BUTTONS */

.hero-buttons{

  display:flex;
  gap:1rem;
  margin-top:2.5rem;

}

.btn{

  padding:15px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  transition:0.3s;

}

.btn-cyan{

  background:var(--orange);
  color:black;

}

.btn-cyan:hover{

  transform:translateY(-5px);

}

.btn-outline{

  border:2px solid var(--yellow);
  color:var(--yellow);

}

.btn-outline:hover{

  background:var(--yellow);
  color:black;

}

.btn-yellow{

  background:var(--yellow);
  color:black;
  margin-top:2rem;
  width:fit-content;

}

.btn-dark{

  background:black;
  color:white;

}

/* HERO IMAGE */

.hero-image{

  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;

}

.circle-bg{

  position:absolute;
  width:520px;
  height:520px;
  background:var(--orange);
  border-radius:50%;
  opacity:0.95;

}

.yellow-bg{

  position:absolute;
  width:420px;
  height:420px;
  background:var(--yellow);
  border-radius:50%;
  right:20px;
  top:20px;

}

.hero-image img{

  position:relative;
  z-index:5;
  width:450px;
  height:560px;
  object-fit:cover;
  border-radius:40px;
  box-shadow:0 30px 50px rgba(0,0,0,0.4);

}

/* =========================
SECTIONS
========================= */

section{

  padding:110px 7%;

}

.section-mini{

  color:var(--orange);
  font-size:0.9rem;
  letter-spacing:2px;
  font-weight:600;

}

/* =========================
ABOUT
========================= */

.about{

  background:#f5f5f5;
  color:black;
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:4rem;

}

.about-left h2{

  font-size:4rem;
  margin:1rem 0;
  font-family:'Cormorant Garamond', serif;

}

.about-left h2 span{

  color:var(--yellow);

}

.about-left p{

  color:#555;
  line-height:1.9;
  margin-top:1.5rem;

}

/* ABOUT GRID */

.about-grid{

  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;

}

.about-card{

  background:white;
  border:1px solid rgba(0,0,0,0.08);
  padding:2rem;
  border-radius:24px;
  transition:0.4s;

}

.about-card:hover{

  transform:translateY(-8px);

}

.about-card i{

  font-size:2.5rem;
  margin-bottom:1rem;
  color:var(--orange);

}

.about-card h3{

  margin-bottom:1rem;

}

.about-card p{

  color:#666;
  line-height:1.7;

}

/* =========================
PROJECTS
========================= */

.projects{

  background:white;
  color:black;
  display:grid;
  grid-template-columns:0.7fr 1.3fr;
  gap:3rem;

}

.projects-title h2{

  font-size:3.5rem;
  margin:1rem 0;
  font-family:'Cormorant Garamond', serif;

}

.projects-title p{

  color:#666;
  line-height:1.8;
  margin-bottom:2rem;

}

/* GRID */

.projects-grid{

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;

}

.project-card{

  background:white;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.08);
  transition:0.4s;

}

.project-card:hover{

  transform:translateY(-8px);

}

.project-card img{

  width:100%;
  height:230px;
  object-fit:cover;

}

.project-content{

  padding:1.5rem;

}

.project-content span{

  color:var(--orange);
  font-size:0.8rem;
  font-weight:600;

}

.project-content h3{

  margin:1rem 0;

}

.project-content p{

  color:#666;
  line-height:1.7;

}

/* =========================
SHOP
========================= */

.shop{

  background:var(--dark);

}

.shop-title{

  margin-bottom:4rem;

}

.shop-title h2{

  font-size:3.5rem;
  margin:1rem 0;
  font-family:'Cormorant Garamond', serif;

}

.shop-title p{

  color:var(--gray);

}

/* GRID */

.shop-grid{

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;

}

.shop-card{

  background:var(--card);
  padding:2.5rem;
  border-radius:24px;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.05);

}

.shop-card:hover{

  transform:translateY(-10px);
  border-color:var(--yellow);

}

.shop-card h3{

  margin-bottom:1rem;

}

.shop-card p{

  color:var(--gray);
  line-height:1.8;

}

.shop-card span{

  display:block;
  color:var(--orange);
  font-size:2rem;
  font-weight:700;
  margin-top:1.5rem;

}

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

.contact{

  background:linear-gradient(135deg,var(--orange),#02c5ff);
  padding:70px 7%;

}

.contact-box{

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:3rem;
  color:black;

}

.contact-icon{

  width:120px;
  height:120px;
  background:black;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:var(--yellow);
  font-size:2.5rem;

}

.contact-text h2{

  font-size:3rem;
  margin:1rem 0;
  font-family:'Cormorant Garamond', serif;

}

.contact-text p{

  max-width:650px;
  line-height:1.8;

}

/* =========================
FOOTER
========================= */

footer{

  background:black;
  padding:2rem 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:2rem;

}

.footer-logo img{

  width:80px;

}

.footer-social{

  display:flex;
  gap:1rem;
  font-size:1.3rem;

}

.footer-social i{

  cursor:pointer;
  transition:0.3s;

}

.footer-social i:hover{

  color:var(--yellow);

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .hero-container,
  .about,
  .projects{

    grid-template-columns:1fr;

  }

  .projects-grid,
  .shop-grid{

    grid-template-columns:1fr;

  }

  .about-grid{

    grid-template-columns:1fr;

  }

  .contact-box{

    flex-direction:column;
    text-align:center;

  }

}

@media(max-width:900px){

  .hero{

    padding-top:140px;

  }

  .hero-text h1{

    font-size:3.7rem;

  }

  .hero-container{

    grid-template-columns:1fr;
    text-align:center;

  }

  .hero-buttons{

    justify-content:center;

  }

  .hero-social{

    display:none;

  }

  .hero-image img{

    width:320px;
    height:420px;

  }

  .circle-bg{

    width:350px;
    height:350px;

  }

  .yellow-bg{

    width:300px;
    height:300px;

  }

  /* MENU MOBILE */

  .menu{

    position:absolute;
    top:100px;
    right:-100%;
    background:#0d1324;
    width:260px;
    flex-direction:column;
    padding:2rem;
    border-radius:20px;
    transition:0.4s;

  }

  .menu.active{

    right:20px;

  }

  .hamburger{

    display:flex;

  }

}
