:root
{
  color: turquoise;
  --accent-color: gold;
  --ctaColor: red;
}

html
{
  scroll-padding-top: 215px;
}
/* Header and Nav */

header
{
  background-image: url(Images/G.E..png);
  background-position: center; 
  font-family: 'Limelight';
  padding: 5px;
  border: 3px solid var(--accent-color);  
  position: sticky;
  top: 0;
  height: 200px;
}

#BusName
{
  font-family: 'Tangerine';
  font-size: 85px;
  translate: 0px -45px;
  text-align: center;
}

#slogan
{
  text-align: left;
  translate: 0px -80px;
}

#convenient
{
  text-align: right;
  translate: 0px -95px;
}

.container 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5%;
}



/* --- Desktop Nav Menu --- */
.nav-menu a 
{
  padding: 10px 15px;
  text-decoration: none;
  color: var(--ctaColor);
  font-weight: bold;
  
}

.nav-menu a:hover 
{
  color: #000;
}

.hamburger-icon 
{
  display: none; /* Hidden on desktop by default */
  cursor: pointer;
  background: none;
  border: none;
  translate: 0px 10px;
}

.bar 
{
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--ctaColor);
  margin: 5px auto;
  transition: 0.3s;
}

/* --- Responsive Styles (Mobile) --- */
@media (max-width: 768px) 
{
  html
  {
    scroll-padding-top: 235px;
  }

  .navbar
  {
    position: sticky;
    top: 0;
  }

  .nav-menu 
  {
    display: none; /* Hide desktop nav links by default */
    position: absolute;
    background-color: #fff;
    top: 0;
    flex-direction: column;
    text-align: center;
    z-index: 2000;
    align-items: center;
  }

  .nav-menu.open 
  {
    display: flex; /* Show menu when 'open' class is active */
    translate: 130px 1px;
  }

  .nav-menu a 
  {
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
  }

  .hamburger-icon 
  {
    display: block; /* Show hamburger icon on mobile */
  }

  
}

.logo 
{
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

/* Contact Info Buttons */
.call-email-btn 
{
	background: grey;
	color: var(--ctaColor);
	border: none;
	padding: 25px;
	font-size: 18px;
	border-radius: 6px;
	cursor: pointer;
	transition: opacity 0.2s, background 0.2s;
	opacity: 1;
}

.call-email-btn a 
{
	color: var(--ctaColor);
	text-decoration: none;
}

.call-email-btn:active 
{
	background: transparent !important;
	color: #fff !important;
}

.call-email-btn:hover 
{
	opacity: 0.5;
}

/* Main Content */

body
{  
  border: 5px solid grey;
  margin: 0px;
  padding: 15px;
  box-sizing: border-box;
}

main
{
  border: 3px solid var(--accent-color);
  padding: 25px;
  margin: 0;
  text-align: center;
  box-sizing: border-box;
}

main h1
{
  text-decoration: underline;
}

main img
{
  height: 75px;
}

footer img
{
  height: 30px;
  border: 3px solid black;
  border-radius: 27px;
}