/*	0d2b2a navy blue
	f04b00 red fire
	40d995 neon green */ 


/* ===== Global Header Styles ===== */
header {
  background-color: #0d2b2a;  /* 0d2b2a navy blue */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ===== Header Inner Layout ===== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.75rem 1rem;
}

/* ===== Logo Column ===== */
.logo-col {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.logo-small {
  height: 80px;
  width: auto;
}



/* ===== Title Column (Center-Aligned) ===== */
.title-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}


.site-title {
  font-size: 2rem;
  color: #f04b00;    /*f04b00 red fire */
  margin: 0;
  padding: 0;
  line-height: 1.2;
  text-shadow:
    0 0 4px #f04b00,
    0 0 8px rgba(240, 75, 0, 0.3);
}


.subline {					/* "PRODUCTIONS" */
  display: block;
}

.hart-signature {
  font-family: 'Georgia', cursive;
	  color: #40d995;    /* 40d995 neon green */ 
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* ===== Hamburger (Mobile Only) ===== */
.hamburger {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 2px solid #fea700;
  color: #fea700;     /* fea700 yellow fire */
  font-size: 1.6rem;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1001;
}

/* ===== Navigation Header ===== */
.nav-bar-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  background-color: #0d2b2a;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
  box-sizing: border-box;
}


.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem 1.2rem;
  border: 2px solid #fea700;
  border-radius: 8px;
  background-color: transparent;
  color: #fbcfb2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: #f04b00;
  color: #0d2b2a;
}

.nav-links a:hover {
  background-color: #f04b00;
  color: #0d2b2a;
}





/* ===== Mobile (≤ 767px) ===== */
	@media (max-width: 767px)
 {
  		.hamburger {
    		display: inline-block;
  					}

		 .nav-links {
    		flex-direction: column;
    		align-items: flex-start;
    		max-height: 0;
    		overflow: hidden;
    		opacity: 0;
    		transition: max-height 0.4s ease, opacity 0.3s ease;
    		align-items: center;
    		position: absolute;
    		top: 100%;
    		left: 0;
    		width: 100%;
    		background-color: rgba(13, 43, 42, 0.75); /* navy with 85% opacity */
			backdrop-filter: blur(8px);              /* optional glass effect */
    		z-index: 999;
    		box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  					} 
  
.nav-links a {
  display: flex;
  align-items: center;        /* vertical centering */
  justify-content: center;    /* horizontal centering */
  text-align: center;
  padding: 0.8rem 1.2rem;
  border: 2px solid #fea700;    /*yellow boxes aroud nav buttons */
  border-radius: 8px;
  background-color: transparent;
  color: #fbcfb2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

  .nav-links.active {
    max-height: 1000px;
    opacity: 1;
    padding: 1rem;
  }
  

  .site-title {
    font-size: 1.3rem;
  }

  .hart-signature {
    font-size: 0.75rem;
  }

  .logo-small {
    height: 70px;
  }

  .header-inner {
    padding: 0.5rem 1rem;
  }
}

/* ===== Tablet Adjustments (768–1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .site-title {
    font-size: 2.1rem;
  }

  .hart-signature {
    font-size: 1rem;
  }

  .logo-small {
    height: 110px;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

/* ===== Desktop (≥1025px) ===== */
@media (min-width: 1025px) {
  .site-title {
    font-size: 2.4rem;
  }

  .hart-signature {
    font-size: 1.05rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .logo-small {
    height: 130px;
  }

  .header-inner {
    padding: 1.25rem 2rem;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.7rem 1.4rem;
  }
  
  .nav-links a {
  width: 150px; /* or whatever width looks best */
  justify-content: center;
}
}


