/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    2006.03.19
   PURPOSE: Styles the html elements
 **************************************************************/

 html {
  height: 100%;
}

.back-to-top {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.back-to-top:hover {
  background-color: #555;
}

body {

  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  font: 400 0.8em verdana, arial, sans-serif;
  line-height: 170%;
  color: #EEE;
}
.header {
    background: linear-gradient(135deg, var(--header-color-start), var(--header-color-end));
}

.main-content {
    background: linear-gradient(135deg, var(--header-color-start), var(--header-color-end));
}

/* Header and Page Titles */
h1 {   
  clear: both;
  font: 700 2.5em "trebuchet ms", serif;
  color: #FFF;
}

h2 {
  font: 400 1.5em "trebuchet ms", serif;
  color: #65EBFF;
}

h2 a {
  color: #29E3FF;
}

h2 a:hover {
  color: #FFF;
}

/* Links */
a {
  color: #8BE6FA;
}

a:hover {
  color: #FFF;
}

/* Lists */
ul {
  margin: 10px 30px;
  padding: 0 30px;
  list-style-image: url(../images/bg/bullet.gif);
}


/* Images */

a img {  
  border: 2px solid #8BE6FA;
}

a:hover img {  
  border: 2px solid #FFF !important;
  border: 2px solid #8BE6FA;
}


/**************************************************************
   Stylish Navigation Menu
 **************************************************************/
/**************************************************************
   NAVBAR STYLING
 **************************************************************/

/* update margine top from -4px to -6px and adjust padding to 12px 20px to eliminate line above nav KRH*/
/* Navbar base styles */
  .navbar {
  background: linear-gradient(to right, #FFA726, #FFEB3B); /* Warm yellow and orange gradient */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -8px;
  padding: 12px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Deeper shadow for depth */
  border-bottom: 4px solid #1abc9c; /* Accent border at the bottom */
  border-radius: 8px; /* Rounded corners for navbar */
}

/* Overlay navbar on header image for desktop view */
@media (min-width: 769px) {
  .navbar {
    position: absolute; /* Position the navbar absolutely */
    top: 2; /* Align it to the top */
    width: 91.38%; /* Full width */
    z-index: 9998; /* Ensure it appears on top */
  }
}

/* Logo styling */
.navbar .logo {
  color: #2c3e50; /* Dark text color for logo */
  font-size: 2em; /* Size of logo text */
  font-weight: bold; /* Bold logo text */
  text-transform: uppercase; /* Uppercase text */
  letter-spacing: 2px; /* Space between letters */
  border-bottom: 3px solid #1abc9c; /* Accent border under logo */
  padding-bottom: 5px; /* Padding below the logo */
}

/* Navbar menu container */
.navbar .menu {
  display: flex;
  align-items: center; /* Align items center for the navbar menu */
  gap: 20px; /* Space between menu items */
}

/* Navbar links */
.navbar .menu a {
  color: #2c3e50; /* Dark text color */
  text-decoration: none; /* Remove underline */
  padding: 12px 20px; /* Padding around links */
  font-size: 16px; /* Font size */
  border-radius: 25px; /* More rounded corners for links */
  transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Smooth transitions */
  background: linear-gradient(135deg, #FFA726, #FFEB3B); /* Gradient background */
}

/* Hover effect for menu links */
.navbar .menu a:hover {
  background-color: #BBDEFB; /* Light blue on hover */
  color: #2c3e50; /* Dark text color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Styling for the Home button */
.nav-button {
  display: inline-block; /* Align as inline block */
  padding: 10px 20px; /* Padding for better spacing */
  text-decoration: none; /* Remove underline */
  color: #2c3e50; /* Dark text color */
  background: linear-gradient(135deg, #FFA726, #FFEB3B); /* Gradient background to match other nav items */
  border: none; /* Remove border */
  border-radius: 25px; /* Rounded corners */
  font-size: 16px; /* Font size */
  font-weight: bold; /* Bold text */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color transition */
}

/* Hover effect for the Home button */
.nav-button:hover {
  background-color: #BBDEFB; /* Light blue on hover */
  color: #2c3e50; /* Dark text color on hover */
}

/* Dropdown base styles */
.navbar .dropdown {
  position: relative; /* Position relative for dropdown positioning */
}

/* Dropdown links */
.navbar .dropdown > a {
  display: block;
  color: #2c3e50; /* Dark text color */
  text-align: center;
  padding: 12px 20px; /* Padding around links */
  text-decoration: none; /* Remove underline */
  font-size: 16px; /* Font size */
  border-radius: 25px; /* More rounded corners for dropdown links */
  transition: background-color 0.3s, color 0.3s, transform 0.3s; /* Smooth transitions */
  background: linear-gradient(135deg, #FFA726, #FFEB3B); /* Gradient background */
}

/* Dropdown hover effect */
.navbar .dropdown:hover > a {
  background-color: #BBDEFB; /* Light blue on hover */
  color: #2c3e50; /* Dark text color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Dropdown content */
.navbar .dropdown-content {
  display: none; /* Hide dropdown content by default */
  position: absolute; /* Absolute positioning */
  background-color: #FFFFFF; /* Light background for dropdown */
  min-width: 200px; /* Minimum width */
  max-height: 300px; /* Maximum height to ensure it fits within viewport */
  overflow-y: auto; /* Scroll if content overflows */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3); /* Enhanced shadow effect */
  z-index: 9999; /* High z-index to ensure it is on top */
  border-radius: 8px; /* Rounded corners for dropdown */
  padding: 10px; /* Padding inside dropdown */
  box-sizing: border-box; /* Include padding in width/height */
}

/* Dropdown content links */
.navbar .dropdown-content a {
  color: #2c3e50; /* Dark text color for dropdown links */
  padding: 12px 15px; /* Padding around dropdown items */
  text-decoration: none; /* Remove underline */
  display: block; /* Block display */
  text-align: left; /* Align text to the left */
  border-radius: 5px; /* Rounded corners for dropdown items */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

/* Dropdown content hover effect */
.navbar .dropdown-content a:hover {
  background-color: #BBDEFB; /* Background color on hover */
  color: #2c3e50; /* Dark text color on hover */
}

/* Show dropdown content on hover */
.navbar .dropdown:hover .dropdown-content {
  display: block; /* Show dropdown content on hover */
}

/* Menu toggle for mobile */
.menu-toggle {
  display: none; /* Hide menu toggle by default */
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle .bar {
  background-color: #2c3e50; /* Dark color for the bars */
  height: 3px;
  width: 30px;
  border-radius: 3px; /* Rounded corners for the bars */
}

/* Navbar menu */
nav {
  flex-grow: 1;
}

/* Menu items */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px; /* Space between menu items */
}

/* Mobile styles */
@media (max-width: 768px) {
  #header {
    height: auto; /* Remove fixed height for mobile */
    padding: 10px 0; /* Optional: Add padding for better spacing */
   
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px; /* Maintain padding on mobile */
    margin-top: -42px; /* Ensure navbar is hidden behind header */
    box-shadow: none; /* Remove shadow for mobile */
    border-radius: 8; /* Remove border-radius for mobile */
    
  }

  .menu-toggle {
    display: flex; /* Show menu toggle on mobile */
    margin-top: 10px; /* Adjust margin to move menu closer to header */
    margin-bottom: 10px; /* Ensure there's space below the hamburger menu */
  }
  
  nav {
    display: none; /* Hide menu items on mobile by default */
    width: 100%;
    flex-direction: column;
    background-color: #FFA726; /* Warm yellow background for mobile menu */
    padding: 10px 0; /* Adjust padding to increase height */
    box-shadow: 0px 2px 5px rgba(0,0,0,0.3); /* Add shadow for better visibility */
  }

  nav.active {
    display: flex; /* Show menu items when menu is active */
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }

  .navbar ul {
    align-items: flex-start; /* Align all menu items to the left */
  }

  .navbar ul li {
    width: 100%; /* Ensure each menu item takes full width */
    text-align: left; /* Align text to the left */
  }

  .navbar .dropdown-content {
    position: static; /* Static positioning on mobile */
    width: 100%;
    box-shadow: none;
    max-height: none; /* No max-height on mobile */
    overflow: visible; /* Allow content to be visible */
    padding: 0; /* Remove padding on mobile */
  }

  .navbar .dropdown-content a {
    padding: 10px;
  }

  .navbar .dropdown:hover .dropdown-content {
    display: block; /* Always show dropdown content on mobile */
  }
}






/**************************************************************
   Form Elements
 **************************************************************/
label {
  display: block;
}

input,
textarea,
select {
  padding: 2px;
  font: 400 1em verdana, sans-serif;
  color: #444;
  background: #EEE;
  border: 1px solid #444;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
select:focus,
select:hover {
  color: #000;
  background: #E4F7FA;
  border: 1px solid #00DFFF;
}

input.button {
  padding: 2px 5px;
  font: 400 1.1em "trebuchet ms", serif;
  color: #555;
  background: #9FF3FF;
  border-width: 1px;
  border-style: solid;
  border-color: #FFF #00DFFF #00DFFF #FFF;
}

/**************************************************************
   FOOTER STYLING
 **************************************************************/

#footer {
  background: linear-gradient(135deg, #FFA726, #FFEB3B); /* Warm yellow and orange gradient */
  color: #2c3e50; /* Dark text color */
  padding: 50px 20px; /* Increased padding for a spacious feel */
  font-family: 'Arial', sans-serif; /* Font styling */
  width: 100%; /* Full width of the viewport */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
  position: relative; /* Ensure correct positioning within the layout */
  border-radius: 10px;
}

/* Adjust the container to use full width */
.footer-container {
  display: flex; /* Flexbox layout */
  justify-content: center; /* Center the sections */
  flex-wrap: wrap; /* Wrap sections on smaller screens */
  gap: 20px; /* Space between sections */
  width: 100%; /* Full width of the viewport */
  max-width: 1200px; /* Maximum width for large screens */
  margin: 0 auto; /* Center the container horizontally */
  padding: 0; /* No extra padding around the container */
  border-radius: 15px;
  overflow: hidden;
}

/* Styling for each footer section */
.footer-section {
  flex: 1 1 220px; /* Flex items to take equal space, with a minimum width */
  padding: 20px; /* Padding inside sections */
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Shadow for depth */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
  margin-bottom: 20px; /* Space between sections vertically */
  transition: background 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.footer-section:hover {
  background: rgba(255, 255, 255, 0.2); /* Lighter background on hover */
  transform: translateY(-5px); /* Slight lift effect */
}

/* Section titles styling */
.footer-section h4 {
  margin-top: 0; /* Remove top margin */
  font-size: 1.5em; /* Font size for section titles */
  border-bottom: 3px solid #1abc9c; /* Bottom border for title */
  padding-bottom: 10px; /* Padding below title */
  color: #90A4AE; /* Accent color for section titles */
  font-weight: 700; /* Bold font weight for titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
}

/* Contact Info styling */
.contact-info p {
  margin: 0; /* Remove default margin from paragraph */
  font-size: 16px; /* Font size for social media text */
  line-height: 1.5; /* Improve readability */
  color: #2c3e50 !important; /* Dark text color */
}

.contact-info p a {
  color: inherit; /* Inherit the color from the parent element */
  text-decoration: none; /* Remove underline */
}
.contact-info p a:hover {
  color: inherit; /* Keeps the original text color */
  text-decoration: underline; /* Removes underline */
}

/* Additional Info styling */
.additional-info {
  padding-top: 5px; /* Space between heading and content */
}

.additional-info h4 {
  margin: 15px; /* Space between heading and content */
  margin-bottom: 25px;
}

.additional-info ul {
  list-style: none; /* Remove bullets */
  padding: 10; /* Remove padding */
  margin: 0; /* Remove margin */
}

.additional-info ul li {
  margin-bottom: 12px; /* Space between items */
}

.additional-info ul li a {
  color: #2c3e50; /* Dark color for links */
  text-decoration: none; /* Remove underline */
  font-size: 16px; /* Font size for links */
  transition: color 0.3s ease; /* Smooth transition for color change */
}

.additional-info ul li a:hover {
  color: #3498db; /* Accent color for links on hover */
  text-decoration: underline; /* Underline on hover */
}

/* Social Links styling */
.footer-section.social-media {
  text-align: center; /* Center-aligns text and inline elements */
}

.social-links {
  display: flex; /* Use Flexbox for layout */
  flex-direction: column; /* Stack children vertically */
  justify-content: center; /* Center children horizontally */
  align-items: center; /* Center children vertically */
  gap: 15px; /* Space between elements */
  padding-top: 0px; /* Space between heading and content */
}

.tenant-portal {
  display: block;
  margin: 0 auto; /* Centers the button */
}

.social-links p {
  margin: 0; /* Remove default margin from paragraph */
  font-size: 16px; /* Font size for social media text */
  line-height: 1.5; /* Improve readability */
  color: #2c3e50; /* Dark text color */
}

.social-icon {
  display: inline-block; /* Align as inline block */
  padding: 12px 20px; /* Padding for button */
  text-decoration: none; /* Remove underline */
  color: #2c3e50; /* Dark text color */
  background: linear-gradient(135deg, #FFA726, #FFEB3B); /* Gradient background */
  border: none; /* Remove border */
  border-radius: 25px; /* Rounded corners */
  font-size: 16px; /* Font size */
  font-weight: bold; /* Bold text */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

/* Hover effect for the button */
.social-icon:hover {
  background-color: #BBDEFB; /* Light blue on hover */
  color: #2c3e50; /* Dark text color on hover */
  transform: scale(1.1); /* Slight zoom effect */
}

/* Office Hours styling */
.office-hours p {
  margin: 0; /* Remove default margin from paragraph */
  font-size: 16px; /* Font size for social media text */
  line-height: 1.5; /* Improve readability */
  color: #2c3e50; /* Dark text color */
}

/* Responsive Design */
@media (max-width: 768px) {
  #footer {
    padding: 20px 10px; /* Adjust padding for smaller screens */
  }
  .additional-info br {
    display: none;
  }

  .footer-container {
    flex-direction: column; /* Stack sections vertically on small screens */
    align-items: center; /* Center sections */
    width: 100%; /* Full width on small screens */
    padding: 0; /* No extra padding */
  }

  .footer-section {
    margin: 10px 0; /* Margin around sections */
    width: 100%; /* Ensure each section spans the full width */
  }

  .footer-section.social-media {
    text-align: center; /* Center-aligns text and inline elements */
  }

  .social-links {
    display: flex; /* Use Flexbox for layout */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center children horizontally */
    align-items: center; /* Center children vertically */
    gap: 15px; /* Space between elements */
    padding-top: 0px; /* Space between heading and content */
  }

  .tenant-portal {
    display: block;
    margin: 0 auto; /* Centers the button */
  }

  .social-links p {
    margin: 0; /* Remove default margin from paragraph */
    font-size: 16px; /* Font size for social media text */
    line-height: 1.5; /* Improve readability */
    color: #2c3e50; /* Dark text color */
  }

  .social-icon {
    display: inline-block; /* Align as inline block */
    padding: 12px 20px; /* Padding for button */
    text-decoration: none; /* Remove underline */
    color: #2c3e50; /* Dark text color */
    background: linear-gradient(135deg, #FFA726, #FFEB3B); /* Gradient background */
    border: none; /* Remove border */
    border-radius: 25px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
  }

  .social-icon:hover {
    background-color: #BBDEFB; /* Light blue on hover */
    color: #2c3e50; /* Dark text color on hover */
    transform: scale(1.1); /* Slight zoom effect */
  }
}




/**************************************************************
   Page and Content Layout
 **************************************************************/
#page {
  margin: 0;
}

#page-content {
  display: flex;
  flex-direction: column; /* Stack listings vertically */
  gap: 20px; /* Space between listings */
  padding: 20px; /* Padding around content */
  box-sizing: border-box; /* Include padding in width/height calculations */
}

/* Styling for each listing */
.col-md-6 {
  flex: 1 1 100%; /* Make each listing take up 100% of the container's width */
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 12px; /* More rounded corners */
  padding: 10px; /* Padding inside each listing */
  background-color: #fff; /* White background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

/* Hover effect for columns */
.col-md-6:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
  transform: translateY(-8px); /* Slight lift effect */
}

/* Flex container for content in each column */
.content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start; /* Align items to the top */
  width: 100%;
  padding-top: 45px;
}

/* Styling for text section */
.text-section {
  flex: 1;
  margin-right: 20px; /* Space between text and image */
  padding-top: 40px;
  text-align: left;
}

.text-section h1 {
  font-size: 1.8em; /* Larger font size for headings */
  color: #222; /* Darker color for headings */
  margin-bottom: 15px; /* Space below heading */
  font-weight: 700; /* Bold headings */
  line-height: 1.2; /* Line height for better readability */
  padding-left: 20px;
}

.text-section .desc-text {
  font-size: 1.1em; /* Larger font size for descriptions */
  color: #555; /* Medium grey color for text */
  line-height: 1.6; /* Spacing between lines */
  margin-top: 10px; /* Space above description */
  padding-left: 20px;
}

.text-section .desc-text a {
  color: #1abc9c; /* Accent color for links */
  text-decoration: none; /* Remove underline */
  font-weight: 600; /* Slightly bold links */
}

.text-section .desc-text a:hover {
  text-decoration: underline; /* Underline on hover */
}

/* Styling for image section */
.img-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align images */
  text-align: center; /* Center align text */
}
/*KRH Copy and paste the .img-section img */
.img-section img {
  width: 40%; /* Responsive image width KRH*/
  max-width: 300px; /* Maximum width for images */
  height: 300px; /* Maintain aspect ratio KRH changed from auto to fixed*/
  max-height: 300px; /* Maximum height for images */
  min-height: 300px; /* Minimum height for images */
  object-fit: cover; /* Maintain aspect ratio and cover the container KRH */
  border-radius: 8px; /* Rounded corners for images */
  border: 1px solid #ddd; /* Light border around image */
}

.img-section p {
  margin-top: 15px; /* Space above the blurb */
  color: #777; /* Medium grey color for blurb text */
  font-style: italic; /* Italicized text for blurbs */
  font-size: 0.9em; /* Slightly smaller font size */
}

.img-section p i {
  color: #888; /* Slightly lighter grey for italicized text */
}

/* KRH v  */
/* Medium viewport specific navigation fixes */
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .navbar {
      width: 93%;
      max-width: 92.5%;
      margin: 0 auto;
      padding: 5px;
      overflow: hidden;
      margin-top: -8px;
  }

  nav ul {
      flex-wrap: wrap;
      justify-content: center;
      gap: 4px;
      max-width: 100%;
      padding: 0;
      margin: 0;
  }

  .nav-button {
      font-size: 11px;
      padding: 5px 8px;
      white-space: nowrap;
      margin: 1px;
  }
}
/* Desktop navigation refinements */
@media screen and (min-width: 1200px) and (max-width: 1500px) {
  nav ul {
      gap: 6px;
  }

  .nav-button {
      font-size: 15px;
      padding: 8px 12px;
      margin: 2px;
      line-height: 1.2;
  }

  .navbar {
      width: 93%;
      max-width: 93%;
      padding: 8px;
      height: auto;
      max-height: 45px;
      overflow: hidden;
  }
}


@media screen and (max-width: 1200px) and (min-width: 1025px) {
  nav ul {
      gap: 8px;
      max-height: 45px;
  }

  .nav-button {
      font-size: 16px;
      padding: 8px 15px;
      margin: 2px;
  }

  .navbar {
      margin-top: -8px;
      padding: 8px;
      height: auto;
  }
}


/* KRH ^ */



/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px), (max-width: 768px) {
  .col-md-6 {
    display: flex;
    flex-direction: column; /* Stack items vertically on medium and small screens */
    margin-bottom: 10px; /* Add space between listings */
    margin-top: 8px;  /* Added to prevent overlap on mobile KRH*/
  }

  .additional-info br {
    display: none;
  }

  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align items */
    text-align: center; /* Center align text */
    padding-top: 0px;
  }

  .text-section {
    margin-right: 0;
    margin-bottom: 20px; /* Space below text section */
    width: 100%; /* Ensure text section takes full width */
  }

  .img-section {
    align-items: center; /* Center align items */
    text-align: center; /* Center align text */
    width: 100%; /* Ensure image section takes full width */
  }

  .img-section img {
    max-width: 80%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
  }
}


#content {
  background-color: #f7c04a; /* Match with the logo's background color */
  border-radius: 10px; /* Adjust the radius to match the logo */
  padding: 10px; /* Adjust padding as needed */
}
#header {
  text-align: center; /* Center content within the header */
  padding: 0; /* Remove padding to align the image flush with the edges */
  margin: 0 auto; /* Center the header */
  width: 100%; /* Ensure the header takes the full width of the page */
}

#header img {
  width: 100%; /* Make the image fill the width of the header */
  border-radius: 8px;
  height: auto; /* Maintain the image's aspect ratio */
  display: block; /* Remove any extra space below the image */
}


