@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Luckiest+Guy&family=Comic+Neue:wght@400;700&family=Roboto+Condensed:wght@400;700&display=swap');

/* ----------------------------------------------------------
   0. ROOT VARIABLES — The Handy MANthony Website Palette
----------------------------------------------------------- */
:root {
  /* ROYGBIV — core brand palette from your outfit */
  --red:    #B42823; /* Worn Hammer Red */
  --orange: #C86A2C; /* Leather Grip Orange */
  --yellow: #D6A94B; /* Bolt Brass Yellow */
  --green:  #6B8B4C; /* Workshop Plant Green */
  --blue:   #2A4E7B; /* Denim Hero Blue (Primary) */
  --indigo: #1E2B45; /* Night-Shift Indigo */
  --violet: #4D4F88; /* Star-Stitch Violet */

  /* Neutrals */
  --white: #f7f7f7;
  --offwhite: #eaeaea;
  --black: #0c0c0c;
  --gray-700: #3a3a3a;
  --gray-500: #6a6a6a;
  --gray-300: #bfbfbf;

  /* Cards */
  --panel-paper: #f6ebd4;      /* warm comic-page off-white */
  --panel-paper-alt: #f2f0ea;  /* slightly cooler variant */
  --panel-blue-soft: #d8e6ff;  /* soft blue if you want blue cards */
	
  /* Layout */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --max-width: 1200px;
  --section-padding: 4rem;

  /* Typography */
  --font-body: 'Comic Neue', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head-hero: 'Bangers', cursive;
  --font-head-alt: 'Luckiest Guy', cursive;
  --font-ui: 'Roboto Condensed', system-ui, sans-serif;

  /* Shadows */
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.55);
	
  --header-height: 80px; /* Adjust to match your actual header */	
}

/* ----------------------------------------------------------
   1. GLOBAL RESET
----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--indigo);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}



/* ----------------------------------------------------------
   2. BASE TYPOGRAPHY
----------------------------------------------------------- */

h1,
h2,
.brand-title {
  font-family: var(--font-head-hero);
  letter-spacing: 1px;
  text-transform: uppercase;
}

h3,
h4 {
  font-family: var(--font-head-alt);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

a,
button,
label,
input {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a {	
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
	text-decoration: none;
}

/* ----------------------------------------------------------
   3. IMAGE WRAPPERS
----------------------------------------------------------- */





/* ----------------------------------------------------------
   4. LINK-BUTTON
----------------------------------------------------------- */
/* BUTTONS */
.page-btn {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn {
  padding: 0.45rem 1rem; /* padding: 0.6rem 1.4rem; - From btn ---- from cta:   padding: 0.55rem 1.25rem; */
	
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;	
  letter-spacing: 0.12em;
	
  border-radius: 4px;
  border: 3px solid #000;
  box-shadow: 0 4px 0 #000;
  transform: skewX(-8deg);
  transition:
    transform 0.1s ease-out,
    box-shadow 0.1s ease-out,
    background 0.1s ease-out;
	
  /* border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black); */

}
@media(max-width: 900px){
	.btn{
		width: 100%;
	}
}

.btn-yellow {
  background: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow);
  transform: skewX(-8deg) translateY(2px);
  box-shadow: 0 2px 0 #000;
}

.btn-red {
  background: linear-gradient(to bottom, var(--orange), #9b4f20);
}

.btn-red:hover {
  background: linear-gradient(to bottom, var(--orange), #9b4f20);
  transform: skewX(-8deg) translateY(2px);
  box-shadow: 0 2px 0 #000;	
}

/* ----------------------------------------------------------
   5. LAYOUT WRAPPERS
----------------------------------------------------------- */

.page {
  min-height: 100vh;
  position: relative;
  background: none;
  overflow-x: hidden;
  z-index: 0; /* IMPORTANT: create stacking context above <body> */
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
 /* background:url("../img/handyman.png") left center / auto 90vh no-repeat,
    linear-gradient(
      135deg,
      var(--green) 0%,
      var(--indigo) 40%,
      #05030b 100%
    );


}*/

/*.page main {
  flex: 1;
}*/

.shell,
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--section-padding) 0;
}





/* ==========================================
   9. PARALLAX HERO SECTION (outer container)
   ========================================== */
.hero-section {
  position: relative;
  width: 100%;
  /* account for the fixed header without creating extra blank space */
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
}

.hero-shell {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

	/* FOREGROUND CONTENT COLUMN (SCROLLS) */
.hero-card {
  max-width: 520px;
  margin-right: 2rem;
  margin-left: auto;

  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 900px){
	.hero-card {
	  max-width: 100%;
		margin:auto;
	  display: flex;
	  flex-direction: column;
	  gap: 1.5rem;
	}	
}


.pg-title{
	width: 50%;
	text-align:center;
}
.pg-tag{
	text-align:center;
}
/* ------------------------------------
/* 10. PAGE SPECIFIC - SERVICES
------------------------------------- */

/* ------------------------------------
/* 11. PAGE SPECIFIC - ABOUT
------------------------------------- */

/* ------------------------------------
/* 12. PAGE SPECIFIC - TRICKS
------------------------------------- */

/* ------------------------------------
/* 13. PAGE SPECIFIC - LINKS
------------------------------------- */

/* ------------------------------------
/* 14. PAGE SPECIFIC - CONTACT
------------------------------------- */

/* ---------------------------------------
   15. NAVIGATION
-------------------------------------- */

.site-header {
  position:fixed;
  top: 0;	
  height: var(--header-height);
  min-height: var(--header-height);
  display: flex;
  align-items: center;	
  width:100%;
  z-index: 1000; /* stay above hero/background */
  background: linear-gradient(to bottom, var(--red), #7a1512);
  border-bottom: 4px solid var(--yellow);
  box-shadow: var(--shadow-strong);
}

.site-header a{
	  color:var(--white);
}
.site-header a:hover{
	  color:var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* use your star as the fill */
  background: url("../img/star.png") no-repeat center center;
  background-size: contain;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* keep your comic outline / shadow */
  border: 3px solid #000;
  box-shadow: 0 4px 0 #000;
}


.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color:var(--white);
}

.brand-tagline {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
color:var(--white);	
}

/* Nav menu */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle{
  display:none;
}

/* HAMBURGER BUTTON */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  width:44px;
  height:44px;
  background:none;
  border:none;
  cursor:pointer;
}

.nav-toggle span{
  height:2px;
  width:100%;
  background:var(--white);
  display:block;
}

/* MOBILE NAV */
@media (max-width: 900px){
  .nav-toggle{
    display:flex;
  }
  .nav-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:linear-gradient(to bottom, var(--red), #7a1512);
    display:none;
    flex-direction:column;
    gap:10px;
    padding:16px;
    border-top:1px solid #ddd;
    z-index:1000;
  }
  .nav-menu.is-open{
    display:flex;
  }
}
/* DESKTOP */
@media (min-width: 901px){
  .nav-menu{
    display:flex;
    gap:10px;
  }
}
@media (max-width: 900px){
	.desktop-only{
    	display:none;
  	}
}
@media (min-width: 901px){
	.mobile-only{
    	display:none;
  	}	
}

/* ----------------------------------------------
   16. FOOTER
----------------------------------------------- */

.site-footer {
  position:static;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;		
	
  margin-top: 2rem;
  background: linear-gradient(to top, var(--red), #7a1512);
  border-top: 4px solid var(--yellow);
  box-shadow: 0 -4px 0 #000;
  padding: 1rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem; 
  justify-content: space-between;
    align-items: flex-start;     /* align-items: center; */
  font-size: 0.85rem;
}

/* Brand in footer */

.footer-brand {
  min-width: 200px;
}

.footer-title {
  font-family: var(--font-head-hero);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 #000;
}

.footer-tagline {
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Footer navigation — simple text links */

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.footer-link {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--black);
}

/* Footer meta lines */

.footer-meta {
  text-align: right;
  min-width: 200px;
  font-family: var(--font-ui);
}

.footer-line {
  margin: 0.15rem 0;
}

.footer-highlight {
  color: var(--white);
  font-weight: 700;
}

/* Footer responsive layout */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-meta {
    text-align: left;
  }
}