*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#dcdcdc;
  overflow-x:hidden;
}

/* HEADER */
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;
  padding:0 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(to bottom,#111,transparent);
  z-index:999;
}

.logo{
  height:80px;
  width:auto;
  object-fit:contain;
}

.navbar{
  display:flex;
  gap:35px;
  flex-wrap:wrap;
  align-items:center;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  white-space:nowrap;
}

.navbar a.active{
  color:#d49e4e;
}

/* Hamburger hidden in desktop */
.menu-toggle{
    display:none;
    width:35px;
    height:25px;
    background:none;
    border:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.menu-toggle span{
    width:100%;
    height:2px;
    background:white; /* change if needed */
    border-radius:5px;
}


@media screen and (max-width:768px){

    .menu-toggle{
        display:flex !important;
    }

    .navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:100vw;
        height:100vh;
        background:rgba(0,0,0,0.96);
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;
        transition:right .4s ease;
        z-index:9999;
    }

    .navbar.active{
        right:0;
    }

    .navbar a{
        font-size:74px;
        color:white;
    }
  }
/* SECTION */
.spec-section{
  width:100%;
  background:#f5f1ec;
  padding:140px 20px 40px;
}

/* TITLE */
.spec-main-title{
  text-align:center;
  font-size:42px;
  letter-spacing:1px;
  color:#9c7a4e;
  margin-bottom:20px;
  font-family:'Casanova Serif Display', serif;
 
}

.spec-section p{
  font-family:'Montserrat', sans-serif;
  font-size:18px;
  font-weight:400;
  color:#1f1f1f;
  max-width:900px;
  margin:0 auto 40px;
  text-align:center;
  padding:0 15px;
}

/* GRID */
.spec-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(300px,1fr));
  width:100%;
  max-width:1600px;
  margin:auto;
  align-items:start;
}

/* HEADING BOX */
.spec-heading{
  display:flex;
  align-items:center;
  background:#f8f4ef;
  padding:15px 20px;
  border-radius:14px;
  border:1px solid #ddac75;
  color:#2f4f4f;
  font-size:24px;
  margin-bottom:20px;
  font-weight:bold;
  width:100%;
}

/* ITEMS */
.spec-item{
  background:#f8f4ef;
  border-radius:14px;
  padding:18px 20px;
  border:1px solid #e6ddd3;
  margin-bottom:15px;
  transition:all .3s ease;
  width:100%;
}

.spec-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  width:100%;
}

.spec-left{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.spec-left i{
  color:#9c7a4e;
  font-size:18px;
}

.spec-header h4{
  font-size:14px;
  color:#9c7a4e;
  letter-spacing:1px;
  font-weight:400;
}

.sep-ic{
  font-size:12px;
}

.spec-toggle{
  font-size:20px;
  color:#9c7a4e;
  transition:.3s ease;
}

/* CONTENT */
.spec-content{
  overflow:hidden;
  transition:max-height .4s ease;
  max-height:1px;
  width:100%;
}

.spec-content p{
  margin-top:10px;
  font-size:14px;
  color:#555;
  padding:0;
  text-align:left;
}

.spec-item.active .spec-content{
  max-height:250px;
}

.spec-item.active .spec-toggle{
  transform:rotate(45deg);
}

.spec-item:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 14px rgba(0,0,0,0.05);
}

/* =========================
   LARGE TABLETS
========================= */
@media (max-width:1024px){

  .spec-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .spec-main-title{
    font-size:34px;
  }

  .spec-heading{
    font-size:20px;
  }

  .spec-section{
    padding-top:130px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

  .topbar{
    height:auto;
    padding:15px;
    flex-wrap:wrap;
    gap:15px;
  }

  .logo{
    height:60px;
  }

  .navbar{
    gap:18px;
    justify-content:center;
    width:100%;
  }

  .navbar a{
    font-size:20px;
  }

  .spec-section{
    padding:160px 15px 30px;
  }

  .spec-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .spec-main-title{
    font-size:28px;
  }

  .spec-heading{
    font-size:18px;
    padding:12px 15px;
  }

  .spec-section p{
    font-size:16px;
    margin-bottom:30px;
  }

  .spec-item{
    padding:15px;
  }

  .spec-left{
    gap:12px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width:480px){

  .spec-main-title{
    font-size:24px;
  }

  .spec-heading{
    font-size:16px;
  }

  .spec-header h4{
    font-size:13px;
  }

  .spec-section p{
    font-size:14px;
  }

  .spec-item{
    padding:14px;
  }
}

/* Safari fix */
@supports (-webkit-touch-callout:none){
  body{
    min-height:-webkit-fill-available;
  }
}