
/*
Theme Name: Twenty Seventeen Child (Custom Hero)
Template: twentyseventeen
Version: 1.0
*/

/* === HERO SECTION === */
.custom-hero {
  height: 100vh;
  background: url('https://shannonpearson.ca/wp-content/uploads/2025/06/Shannon.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  box-sizing: border-box;
  color: #fff;
  position: relative;
}

.hero-inner {
  max-width: 600px;
  text-align: center;
  margin-left: 10%;
  position: relative;
  z-index: 2;
}

.hero-subheading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-heading {
  font-size: 48px;
  font-family: 'Georgia', serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-button {
  background-color: #0b3c3c;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.hero-button:hover {
  background-color: #EBAB3D;
}

/* === MOBILE HERO OVERRIDES === */
@media screen and (max-width: 768px) {
  .custom-hero {
    background-image: url('https://shannonpearson.ca/wp-content/uploads/2025/06/cropped-Shannon-e1753206798327.jpg');
    background-position: center top;
  }

  .hero-heading,
  .hero-subheading,
  .hero-button {
    color: #FFFFFF !important;
  }

  .mobile-overlay {
    display: block;
  }
}

.mobile-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* === SITE TITLE === */
.site-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.site-title a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}

/* === NAVIGATION STYLES === */
.custom-navbar {
  width: 100%;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  background: #06272D;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.main-menu {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

/* Underline on hover for standard links */
.nav-list li:not(:last-child) a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.nav-list li:not(:last-child) a:hover::after {
  width: 100%;
}

/* Book Now button */
.nav-list li:last-child a {
  background-color: #ffffff;
  color: #06272D;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
}

/* === DESKTOP NAVIGATION === */
@media screen and (min-width: 769px) {
  .main-menu {
    display: block !important;
    position: static;
    width: auto;
    background: none;
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    gap: 20px;
  }

  .nav-list li a {
    padding: 0;
  }
}

/* === MOBILE NAVIGATION === */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #06272D;
    padding: 20px;
  }

  .main-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .nav-list li:last-child a {
    padding: 12px 20px;
    text-align: center;
    display: block;
    width: 100%;
  }
}