/*
sass --watch css/styles.scss:css/styles.css
php -S localhost:1111 router.php
*/
*, *::before, *::after {
  box-sizing: border-box; /* Ensures padding and borders are included in element dimensions */
  margin: 0; /* Removes default margins */
  padding: 0; /* Removes default padding */
}

a img {
  display: block;
}

body {
  font-family: Verdana, Geneva, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  line-height: 1.5;
  font-size: 16px;
}

/* Global Container
------------------------------------*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 700px) {
  .container {
    padding: 0 6vw;
  }
}

/* CSS Variables
------------------------------------*/
:root {
  --primary-color: #214082;
  --secondary-color: #444;
  --background-color: #f4f4f4;
  --heading-font: "Black Ops One", system-ui;
  --body-font: Verdana, Geneva, sans-serif;
  --border-radius: 5px;
  --container-max-width: 1200px;
}

/* Tailwind Overrides
------------------------------------*/
.text-blue-100 {
  color: #d1ddf0 !important; /* Lighter shade of #214082 */
}

.text-blue-400 {
  color: #5a7bb8 !important; /* Light-medium shade of #214082 */
}

.text-blue-600 {
  color: #214082 !important;
}

.text-blue-700 {
  color: #1a3569 !important; /* Darker shade of #214082 */
}

.bg-blue-50 {
  background-color: #f0f3f8 !important; /* Very light background */
}

.bg-sky-700 {
  background-color: #214082 !important;
}

.bg-blue-700 {
  background-color: #1a3569 !important;
}

.border-blue-600 {
  border-color: #214082 !important;
}

.from-gray-800 {
  --tw-gradient-from: #1f2937 !important;
}

.to-gray-900 {
  --tw-gradient-to: #111827 !important;
}

/* Global Btns
------------------------------------*/
.btn {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px 8px; /* Horizontal padding 15px for better button feel, vertical 10px */
  background-color: var(--primary-color); /* Example background color; change as needed */
  border: none;
  border-radius: 1px; /* Optional: slight rounding for modern look */
  color: white;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
  transition: background-color 0.3s ease; /* Optional: hover effect */
  text-decoration: none;
  text-transform: uppercase;
}
.btn.with-icon {
  padding-left: 50px;
  position: relative;
}
.btn.with-icon svg {
  position: absolute;
  left: 18px;
  margin-top: -3px;
  width: 28px;
  height: 28px;
  fill: rgb(11, 233, 52);
  transform: rotate(10deg);
}
.btn.clear {
  background: none;
  box-shadow: none;
}

/* Global Headings
------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin: 0 0 0.4em;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

/* Site Header & Logo
------------------------------------*/
.site-header {
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  position: fixed;
  z-index: 1000;
  width: 100%;
}
.site-header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}
@media (max-width: 768px) {
  .site-header > .container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.site-header .site-logo {
  font-size: 30px;
  text-decoration: none;
  color: #fff;
  font-family: "Black Ops One", system-ui;
  font-weight: 400;
  z-index: 1001;
}
.site-header .site-logo img {
  height: 70px;
  transition: height 0.3s ease;
}
@media (max-width: 768px) {
  .site-header .site-logo img {
    height: 55px;
  }
}
.site-header.scrolled {
  background-color: rgb(33, 33, 33);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.site-header.scrolled > .container {
  padding-top: 8px;
  padding-bottom: 8px;
}
.site-header.scrolled .site-logo img {
  height: 58px;
}
@media (max-width: 768px) {
  .site-header.scrolled .site-logo img {
    height: 45px;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

/* Navigation
------------------------------------*/
.main-nav {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .main-nav {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.98) 0%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 0 40px 0;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }
  .main-nav.mobile-nav-open {
    right: 0;
  }
}
.main-nav a {
  display: block;
  padding: 6px 18px 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 769px) {
  .main-nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
  }
}
@media (max-width: 768px) {
  .main-nav a {
    font-size: 22px;
    padding: 16px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
  }
  .main-nav a:hover {
    background: rgba(33, 64, 130, 0.1);
    color: var(--primary-color);
    padding-left: 40px;
  }
  .main-nav a:last-child {
    border-bottom: none;
  }
}
.main-nav a.highlight {
  background-color: var(--primary-color);
  border-radius: 4px;
  margin-left: 10px;
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
  box-shadow: 0 2px 8px rgba(33, 64, 130, 0.3);
}
.main-nav a.highlight:hover {
  background-color: #1a3569;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 64, 130, 0.4);
}
@media (max-width: 768px) {
  .main-nav a.highlight {
    margin: 20px 30px;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border-bottom: none;
  }
  .main-nav a.highlight:hover {
    padding-left: 24px;
    background-color: #1a3569;
  }
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-nav-overlay.mobile-nav-open {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* Hero
------------------------------------*/
#hero {
  background: url("../images/kitchen-remodel.jpg") no-repeat center center/cover;
}
#hero .container {
  padding-top: 320px;
  padding-bottom: 160px;
}
#hero h1 {
  font-size: 100px;
  max-width: 800px;
  color: #fff;
  margin: 0;
}
@media (max-width: 700px) {
  #hero h1 {
    font-size: 64px;
  }
}
#hero p {
  max-width: 800px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 700px) {
  #hero .container {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
  }
}

/* Profile Section
------------------------------------*/
#profile {
  max-width: 1100px;
  background: rgb(37, 37, 37);
  padding: 40px 80px;
  border-radius: 5px;
  margin-top: 20px;
  border-bottom: 8px solid #214082;
  margin: 0 auto;
  margin-top: -60px;
  color: #fff;
}
#profile > .container {
  display: flex;
  align-items: end;
  gap: 20px;
}
#profile > .container img {
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 200px;
  width: auto;
}
#profile > .container div {
  flex: 1;
}

/* Feature Box
------------------------------------*/
.features-box {
  background: #f7f7f7;
  border-radius: 8px;
  margin: 5rem 0;
  padding: 1.5rem 0;
  text-align: center;
}

.features-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 30px;
}

.features-list li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ddd;
  padding: 0.5rem 2rem;
  height: 100px;
}

/* two column section
------------------------------------*/
.lawn-care {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.lawn-care > div {
  flex: 1;
  background: #fff;
  padding: 30px 60px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.lawn-care img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

/*# sourceMappingURL=styles.css.map */
