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

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    #ffb6c1;

  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  padding: 40px;
}

/* BOOK */
.book {
   position: relative;
  width: 1600px;
  max-width: 100%;
  min-height: 750px;
  background: #fdfbf5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    inset 0 0 30px rgba(0,0,0,0.05);

  overflow: hidden;
}
/* GREEN SPINE */
.book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 100%;
  background: #dce8d3;
  border-left: 2px solid rgba(0,0,0,0.08);
  border-right: 2px solid rgba(0,0,0,0.08);
  z-index: 1;
}

.page {
  padding: 30px 90px;
  position: relative;
  min-width: 0;
  overflow: hidden;
}


.chapter {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9b7c5b;
  margin-bottom: 20px;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 4.8rem;
  line-height: 0.95;
  color: #2f241d;
  margin-bottom: 25px;
}

.intro {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #5c4b3f;
  max-width: 420px;
}
.contact-info{
  font-size:1.15rem;
  line-height:1.9;
  color:#5c4b3f;
  margin-top:25px;
}

.contact-info button{
  background:none;
  border:none;
  padding:0;
  color:#5c4b3f;
  font-size:1.15rem;
  font-weight:500;
  cursor:pointer;
  display:block;
  margin-bottom:12px;
}

.contact-info button:hover,
.contact-info a:hover{
  text-decoration:underline;
}

.contact-info a{
  color:#5c4b3f;
  text-decoration:none;
  display:block;
}
.sticker {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.8;
}

.star1 {
  top: 80px;
  right: 70px;
}

.star2 {
  bottom: 120px;
  left: 60px;
}

.flower {
  bottom: 70px;
  right: 120px;
}

.about-card {
  margin-top: 50px;

  background: rgba(255,255,255,0.7);

  border: 1px solid rgba(0,0,0,0.08);

  border-radius: 25px;

  padding: 25px;

  backdrop-filter: blur(10px);
}

.about-card h3 {
  margin-bottom: 12px;
  color: #2f241d;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.skill {
  padding: 8px 16px;
  border-radius: 999px;
  background: #efe4d6;
  color: #6e5645;
  font-size: 0.9rem;
}

.project-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #8b6f55;
  margin-bottom: 20px;
}

.project-title {
  font-family: 'DM Serif Display', serif;
  font-size: 3.6rem;
  color: #241913;
  margin-bottom: 20px;
}

.project-description{

  color: #5b4a3d;

  line-height: 1.9;

  margin-bottom: 35px;

  text-align: left;

  max-width: 700px;

  margin-left: auto;

  margin-right: auto;
}
.project-mini-label {

  text-transform: uppercase;

  letter-spacing: 0.25em;

  font-size: 0.75rem;

  color: #9b7c5b;

  margin-bottom: 14px;
}


.promo-description {

  color: #5b4a3d;

  line-height: 1.8;

  max-width: 500px;

  margin-bottom: 25px;
}

.preview {

  width: 100%;

  max-width: 100%;

  overflow: hidden;

  margin-bottom: 40px;

  display: flex;

  justify-content: center;
}
.promo-preview {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  margin-top: 50px;

  margin-bottom: 40px;
}

.preview img,
.promo-preview img {

  width: 75%;

  max-width: 100%;

  height: auto;

  display: block;

  border-radius: 24px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.25s;
  font-weight: 500;
}

.btn-primary {
  background: #3d2d23;
  color: white;
}

.btn-secondary {
  border: 1px solid rgba(0,0,0,0.15);
  color: #3d2d23;
}

.btn:hover {
  transform: translateY(-3px);
}

.tape {
  position: absolute;
  width: 120px;
  height: 30px;
  background: rgba(255, 240, 180, 0.45);
  transform: rotate(-6deg);
  top: 40px;
  right: 100px;
}
.binder{
  position:absolute;
  top:0;
  left:49.5%;
  transform:translateX(-50%);
  width:150px;
  height:99%;
  background-image:url("binder-copy.png");
  background-repeat:repeat-y;
  background-size:contain;
  z-index:5;
  pointer-events:none;
}
@media (max-width: 900px) {

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

  .book::before {
    display: none;
  }

  .page {
    padding: 40px 30px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .project-title {
    font-size: 2.5rem;
  }

}
/* LEFT + RIGHT PAGES */

.left-page,
.right-page{
  padding:70px;
  position:relative;
  z-index:3;
}

/* TITLE */

.title{
  font-family:'DM Serif Display', serif;
  font-size:4.5rem;
  line-height:0.95;
  color:#2f241d;
  margin-bottom:30px;
}

/* INTRO */

.left-page p{
  font-size:1.05rem;
  line-height:1.9;
  color:#5c4b3f;
  max-width:500px;
}

/* SKILLS */

.skills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:35px;
}

.skills span{
  background:#efe4d6;
  color:#6e5645;
  padding:10px 18px;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:500;
}

/* PROJECTS */

.right-page h2{
  font-family:'DM Serif Display', serif;
  font-size:3rem;
  color:#241913;
  margin-bottom:30px;
}

.projects-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.project-card{
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(0,0,0,0.08);
  padding:22px;
  backdrop-filter:blur(10px);
  transition:0.3s;
}

.project-card:hover{
  transform:translateY(-6px);
}

.project-card h3{
  color:#3d2d23;
  margin-bottom:10px;
  font-size:1.1rem;
}

.project-card p{
  color:#5c4b3f;
  line-height:1.7;
  font-size:0.92rem;
}

/* MOBILE */

@media(max-width:900px){

  .left-page,
  .right-page{
    padding:40px 30px;
}
  .projects-grid{
    grid-template-columns:1fr;
  }

  .title{
    font-size:3rem;
  }

}
.skills-card{
  margin-top:40px;
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(0,0,0,0.08);
  border-radius:28px;
  padding:28px;
  backdrop-filter:blur(10px);
}

.skills-card h3{
  margin-bottom:20px;
  font-size:1.2rem;
  color:#3d2d23;
  font-weight:600;
}
.project-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  margin-bottom:15px;
}
.project-links{
  display:flex;
  gap:12px;
  margin-top:18px;
}

.project-links a{
  text-decoration:none;
  padding:10px 16px;
  border-radius:999px;
  background:#3d2d23;
  color:white;
  font-size:0.85rem;
  transition:0.3s;
}

.project-links a:hover{
  transform:translateY(-3px);
}
.image-wrapper{
  position:relative;
  display:inline-block;
  width:100%;
  margin-bottom:18px;
}

.image-wrapper img{
  width:100%;
  display:block;
  border-radius:18px;
}

.tape{
  position:absolute;
  top:-38px;
  left:50%;
  transform:translateX(-50%) rotate(-5deg);

  width:100px;
  height:26px;

  z-index:10;
}

.tape2{
  transform:translateX(-50%) rotate(6deg);
}

.tape3{
  transform:translateX(-50%) rotate(-8deg);
}
.tape4{
  transform:translateX(-50%) rotate(8deg);
}
.tape-lavender{
  background:rgba(210,190,255,0.7);
}
.tape-pink{
  background:rgba(255,182,193,0.7);
}

.tape-blue{
  background:rgba(173,216,230,0.7);
}
.tape-green{
  background:rgba(181,234,181,0.7);
   top:-35px;
}
.page-nav{
  display:flex;
  gap:25px;
  margin-bottom:30px;
}

.page-nav a{
  text-decoration:none;
  color:#5c4b3f;
  font-weight:500;
  font-size:0.95rem;
  transition:0.3s;
}

.page-nav a:hover{
  color:#000;
}
.contact-card{
  margin-top:35px;

  background:rgba(255,255,255,0.65);

  border:1px solid rgba(0,0,0,0.08);

  border-radius:28px;

  padding:28px;
}

.contact-card h3{
  margin-bottom:18px;
  color:#3d2d23;
}

.contact-card p{
  margin-bottom:15px;
  font-size:0.95rem;
}

.contact-card a{
  display:inline-block;
  margin-right:18px;

  text-decoration:none;

  color:#5c4b3f;

  font-weight:500;
}
