/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news

/*────────────────────────────────────
  1) RESET
────────────────────────────────────*/
html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

/*────────────────────────────────────
  2) WRAPPER & HEADER
────────────────────────────────────*/
.page-wrapper {
  background: #141a1f;
  font-family: "Space Grotesk","Noto Sans",sans-serif;
}
.page-wrapper header h1 {
  font-size: 1.125rem !important; /* ~18px */
  line-height: 1.2;
  margin: 0;
}

/*────────────────────────────────────
  3) HIDE EMPTY HERO STRIP
────────────────────────────────────*/
#stitch-hero {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}

/*────────────────────────────────────
  4) ROOT & CONTAINER
────────────────────────────────────*/
#stitch-root {
  background: #141a1f;
  color: #fff;
  min-height: auto !important;
}
.stitch-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

/*────────────────────────────────────
  5) PORTRAIT (always circle + opacity hover)
────────────────────────────────────*/
.hero-img {
  width: 180px;                  /* size of your circle */
  height: 180px;                 
  margin: 1rem auto;            
  border-radius: 50%;            /* perfect circle */
  overflow: hidden;              /* crop overflow */
  /* radial mask to softly fade edges */
  mask-image: radial-gradient(
    circle at center,
    rgba(0,0,0,1) 75%, 
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0,0,0,1) 75%, 
    rgba(0,0,0,0) 100%
  );
}

/* Fit the image inside, cover & opacity hover only */
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity .2s ease;
}
.hero-img img:hover {
  opacity: 1;
}

/*────────────────────────────────────
  6) NOTICE (“coding noob” banner)
────────────────────────────────────*/
.stitch-notice {
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  background: #283037;
  color: #9daebe;
  border-radius: 6px;
  text-align: center;
}

/*────────────────────────────────────
  7) TAGLINE
────────────────────────────────────*/
#stitch-tagline {
  font-size: 1rem;
  font-style: italic;
  
  letter-spacing: 0.5px;
  color: #7a848e;
  text-align: center;
  max-width: 700px;
  margin: 1rem auto 2rem;
  border-bottom: 1px solid #3d4e5c;
  padding-bottom: 0.5rem;
}

/*────────────────────────────────────
  8) UNIFY ALL <h2> SIZES
────────────────────────────────────*/
#stitch-root h2 {
  font-size: 1.5rem !important;   /* ~24px */
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 2rem 0 1rem !important;
  color: #fff !important;
}

/*────────────────────────────────────
  9) ABOUT ME CALL-OUT (bigger text)
────────────────────────────────────*/
#about .stitch-card {
  background: #1e262c;
  border-left: 4px solid #2b3640;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 2rem;
}
#about .stitch-card-content p:first-child {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
#about .stitch-card-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #9daebe;
  margin-top: 1rem;
}

/*────────────────────────────────────
 10) FEATURED WORK GRID (unchanged)
────────────────────────────────────*/
.stitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 1rem;
}
.stitch-card {
  background: #1f272e;
  border: 1px solid #3d4e5c;
  border-radius: 8px;
 overflow: hidden;
}
.stitch-card img {
  display: block;
  width: 50%;
  height: auto;
}
.stitch-card-content {
  padding: 1rem;
  color: #9daebe;
  font-size: 1rem;
  line-height: 1.4;
}

/*────────────────────────────────────
 11) SKILLS LIST (unchanged)
────────────────────────────────────*/
.stitch-skills {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stitch-skill {
  background: #1f272e;
  border: 1px solid #3d4e5c;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  font-size: 1rem;
  color: #fff;
}
/*────────────────────────────────────
 12) CONNECT
────────────────────────────────────*/
.connect {
 font-size: 1rem;
  color: #fff;
}
/*────────────────────────────────────
 13) CONTACT FORM (unchanged)
────────────────────────────────────*/
#stitch-contact form { display: grid; gap: 1rem; }
#stitch-contact input,
#stitch-contact textarea {
  width: 100%;
  padding: .75rem;
  border: 1px solid #3d4e5c;
  border-radius: 6px;
  background: #1f272e;
  color: #fff;
  font-size: 1rem;
}
#stitch-contact button {
  width: fit-content;
  padding: .75rem 1.5rem;
  background: #b2cde5;
  color: #141a1f;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
}

/*────────────────────────────────────
 14) LINKS (unchanged)
────────────────────────────────────*/
.stitch-container a,
.stitch-card-content a,
p a {
  text-decoration: underline;
  color: #b2cde5;
  transition: color .2s ease;
}
.stitch-container a:hover,
.stitch-card-content a:hover,
p a:hover {
  color: #ffffff;
}
a.no-underline,
a.no-underline:hover {
  text-decoration: none;
}
