@charset "UTF-8";
/* CSS Document */
:root {
  --rp-blue-light: #c7d4e1;
  --rp-blue-medium: rgba(38,87,166,1.00);
  --rp-blue-dark: rgba(26,62,120,1.00);
  --rp-bkg-l: #dae6f3;
  --rp-bkg-d: #c7d4e1;
  --rp-text-grey: #2f323a;
  --rp-gold: #b9a88e;
  --rp-red-d: #522723;
  --rp-mooroolbark-purple: #593C39;
  --body-color: #303233;
  --text-color: #101920;
  --accent-on-rp: #528308;
  --accent-on-dark: #99ca46;
  --rp-grey: #fafafa;
  --dark-gray: #22282c;
  --white: white;
  --grey-text: #7e8181;
  --misty-rose\<deleted\|variable-3a917e30\>: #ffdede;
  --rp-blue-bg\<deleted\|variable-8f7b0b59\>: #f8f8fa;
  --link-bg-grey: #f1f1f1;
  --dim-grey: #c5c5c5;
  --bg-grey: #d4d4d4;
  --global-corner-radius: 4px;
  --notification-bg: #99ca46;
  --border-color: #ebebeb;
  --sb-orange: #d43c26;
  --transparent: #fff0;
  --footnote-text: #6c7070;
}

h1, h2, h3, h4, h5, h6 {
  	margin-top: 0.5rem;
  	margin-bottom: 0.5rem;
	color: var(--rp-blue-medium)
}

a {
  	color: var(--rp-blue-medium);
  	text-decoration: none;
  	background-color: transparent;
}

a:hover {
  	color: var(--rp-blue-dark);
  	text-decoration: none;
	transition: color 0.3s;
}

a:not([href]) {
  	color: inherit;
  	text-decoration: none;
}

a:not([href]):hover {
  	color: inherit;
  	text-decoration: none;
}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
  	border-radius: 0.25rem;
  	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
} 

.btn-container {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
	margin: 1rem;
}

.btn-centered {
    padding: 10px 20px; /* Padding for the button */
}

.btn-rp-blue {
  	color: #fff;
  	background-color: var(--rp-blue-medium);
  	border-color: var(--rp-blue-medium);
}

.btn-rp-blue:hover {
  	color: #fff;
  	background-color: var(--rp-blue-dark);
  	border-color: var(--rp-blue-dark);
	transition: background-color 0.3s, border-color 0.3s; 
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.center-text {
	text-align: center;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #555; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding-top: 10px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: var(--rp-blue-dark); /* Add a dark-grey background on hover */
}

.icon-text {
    display: flex;
    align-items: center; /* Vertically center the items */
}

.icon {
    margin-right: 5px; /* Space between icon and text */
    
}

.icon-color-change {
	color:  var(--rp-blue-medium);
}

.icon-color-change:hover {
	color:  var(--rp-blue-dark);
	cursor: pointer;
	transition: color 0.3s;
}

@media (max-width: 768) {
  .icon-text .contact-text {
    display: none;
  }
}

.text-color-change {
	color:  var(--rp-blue-medium);
}

.text-color-change:hover {
	color:  var(--rp-blue-dark);
	cursor: pointer;
	transition: color 0.3s;
}

.group-color-change {
	color:  var(--rp-blue-medium);
}

.group-color-change:hover {
	color:  var(--rp-blue-dark);
	cursor: pointer;
	transition: color 0.3s;
}

.hover-bold-underline {
    font-weight: 600;
    position: relative; /* Necessary for the pseudo-element */
    display: inline-block; /* Ensure the element can have a width */
}

.hover-bold-underline::after {
    content: ''; /* Create a pseudo-element for the underline */
    position: absolute;
    left: 50%; /* Start from the center */
    bottom: 0; /* Position it at the bottom */
    height: 2px; /* Height of the underline */
    width: 0; /* Start width is 0 */
    background-color: var(--rp-blue-dark); /* Use the same color as your gradient */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out; /* Transition for the width and position */
    transform: translateX(-50%); /* Center the line */
}

.hover-bold-underline:hover {
    font-weight: 700; /* Bold on hover */
}

.hover-bold-underline:hover::after {
    width: 100%; /* Full width on hover */
    left: 50%; /* Keep it centered */
    transform: translateX(-50%); /* Center the line */
}

#map-hmpg {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin-top: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-bottom: 1rem;
    height: 400px;
}

.custom-map-button {
    background-color: white;
    border: 2px solid var(--rp-blue-medium);
    color: var(--rp-blue-medium);
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.custom-map-button:hover {
	background-color: aliceblue;
	transition: background-color 0.3s;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	border: solid 2px var(--rp-blue-medium)
	}

.leaflet-control-zoom-in:hover, .leaflet-control-zoom-out:hover {
	background-color: aliceblue;
	transition: background-color 0.3s;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}

#contact-hmpg strong {
	color: var(--rp-blue-medium);
}

/* Navbar */
.phone-button {
    border-color: #0957a9; /* Outline color */
    color: #0957a9; /* Base text color */
    text-decoration: none; /* Remove underline from link */
    padding: 10px 15px; /* Add some padding */
    border-radius: 5px; /* Optional: round the corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
	display: flex; /* Enables flexbox */
    align-items: center; /* Vertically centers items */
    justify-content: center; /* Horizontally centers items (optional) */
	margin-right: 5px;
	margin-left: 5px;
}

.phone-button:hover {
    background-color: #2657a6; /* Srply darker shade for hover */
    color: white; /* Keep text color white on hover */
	transition: background-color 0.3s, color 0.3s;
}

.phone-button .material-icons {
    color: #0957a9; /* Set the initial icon color */
    transition: color 0.3s; /* Smooth transition for icon color */
	font-size: 20px;
	margin-right: 5px; /* Space between icon and text */
}

.phone-button:hover .material-icons {
    color: white; /* Change icon color to white on hover */
	transition: background-color 0.3s, color 0.3s;
}

.search-button {
    color: #0957a9; /* Base text color */
    text-decoration: none; /* Remove underline from link */
    padding: 10px 15px; /* Add some padding */
    border-radius: 5px; /* Optional: round the corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
	display: flex; /* Enables flexbox */
    align-items: center; /* Vertically centers items */
    justify-content: center; /* Horizontally centers items (optional) */
	margin-right: 1px;
	margin-left: 1px;
}

.search-button .material-icons {
    color: #0957a9; /* Set the initial icon color */
    transition: color 0.3s; /* Smooth transition for icon color */
	font-size: 25px;
}

.shop-button {
    color: #0957a9; /* Base text color */
    text-decoration: none; /* Remove underline from link */
	padding: 10px 15px; /* Add some padding */
    border-radius: 5px; /* Optional: round the corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
	display: flex; /* Enables flexbox */
    align-items: center; /* Vertically centers items */
    justify-content: center; /* Horizontally centers items (optional) */
	margin-right: 1px;
	margin-left: 1px;
}

.shop-button .material-icons {
    color: #0957a9; /* Set the initial icon color */
    transition: color 0.3s; /* Smooth transition for icon color */
	font-size: 25px;
}

.navbar-rp .navbar-brand {
    color: rgba(38,87,166, 1);
    }

.navbar-rp .navbar-brand:hover, .navbar-rp .navbar-brand:focus {
    color: rgba(26,62,120, 1);
	transition: color 0.3s;
  }

.navbar-rp .navbar-nav .nav-link {
    color: rgba(38,87,166, 1);
  }

.navbar-rp .navbar-nav .nav-link:hover, .navbar-rp .navbar-nav .nav-link:focus {
    color: rgba(26,62,120, 1);
	transition: color 0.3s;
  }

.navbar-rp .navbar-nav .nav-link.disabled {
    color: rgba(38,87,166, 0.3);
  }

.navbar-rp .navbar-nav .show > .nav-link,
.navbar-rp .navbar-nav .active > .nav-link,
.navbar-rp .navbar-nav .nav-link.show,
.navbar-rp .navbar-nav .nav-link.active {
    color: rgba(38,87,166, 1);
  }

.navbar-rp .navbar-toggler {
    color: rgba(38,87,166, 0.5);
    border-color: rgba(38,87,166, 1);
  }

.navbar-rp .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(38,87,166, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

.navbar-rp .navbar-toggler:hover .navbar-rp .navbar-toggler:focus {
    color: rgba(26,62,120,0.5);
    border-color: rgba(26,62,120,1);
	transition: border-color 0.3s, color 0.3s;
  }

.navbar-rp .navbar-toggler-icon:hover .navbar-rp .navbar-toggler-icon:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26,62,120,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	transition: background-image 0.3s;
  }

.navbar-rp .navbar-text {
    color: rgba(38,87,166, 1);
  }

.navbar-rp .navbar-text a {
    color: rgba(38,87,166, 1);
  }

.navbar-rp .navbar-text a:hover, .navbar-rp .navbar-text a:focus {
    color: rgba(26,62,120,1);
	transition: color 0.3s;
  }

.navbar-rp .nav-hover-change a{
    color: rgba(38,87,166, 1);
	transition: color 0.3s;
  }	

.navbar-rp .nav-hover-change a:hover, .navbar-rp .nav-hover-change a:focus {
    color: rgba(26,62,120, 1);
	transition: color 0.3s;
  }

.navbar-nav-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav-contact .nav-link-contact {
  padding-right: 0;
  padding-left: 0;
}

/* Main menu layout */
.navbar-nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* Icons inline on desktop */
.navbar-nav-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-left: 1rem; /* small gap between main menu and icons */
  padding: 0;
  list-style: none;
}

/* Fix spacing interference */
.navbar-nav-icons .nav-item,
.navbar-nav-menu .nav-item {
  margin: 0 4px;
}

/* Center dropdowns under parent */
.navbar-nav-menu .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Responsive: stack items on small screens */
@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav-icons {
    margin-left: 0;
    margin-top: 10px;
    justify-content: center;
  }

  /* Reset dropdown alignment on mobile */
  .navbar-nav-menu .dropdown-menu {
    left: 0;
    transform: none;
    text-align: left;
  }
}


/* Hidden Search Bar */
.search-container {
    display: flex; /* Use flexbox for layout */
    width: 100%; /* Full width of the container */
    padding: 0.1rem 1rem;
  }

.search-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--rp-blue-medium);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

.search-form-control::placeholder {
    color: var(--rp-blue-medium);
    opacity: 1;
  }

.search-input {
    flex: 1; /* Take up all available space */
    padding: 10px; /* Padding inside the input */
    border: 1px solid var(--rp-blue-medium); /* Border styling */
    border-radius: 4px 4px 4px 4px; /* Rounded corners */
    font-size: 16px; /* Font size */
    color: var(--rp-blue-medium);
    }

.submit-search-button {
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    border: 1px;
    border-color: var(--rp-blue-medium); /* Border styling */
    border-radius: 4px 4px 4px 4px; /* Rounded corners */
    background-color: transparent; /* Button color */
    cursor: pointer; /* Pointer on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
}

.submit-search-button:hover {
    background-color: var(--rp-blue-medium); /* Darker shade on hover */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for background and text color */
    color: white;
}

/* Contact Form */

.contact-form-container {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: space-between; /* Space out columns */
    width: 100%; /* Full width */
}

.contact-form-row {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: space-between; /* Space out columns */
    width: 100%; /* Full width */
    margin: 0; /* Remove margins to align with comments section */
}

.customer-reason-row {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping until necessary */
    justify-content: space-between; /* Space out columns */
    width: 100%; /* Full width */
    margin-left: -1rem; /* Remove margins to align with comments section */
}

#col-1, #col-2 {
    flex: 1; /* Allow columns to grow equally */
    min-width: 350px; /* Minimum width for responsiveness */
    max-width: 600px; /* Limit the maximum width */
}

.contact-form-container label:not([for="residential"]):not([for="commercial"]):not([for="government"]):not([for="installation"]):not([for="purchase"]) {
    color: var(--rp-blue-medium);
    font-weight: bold;
    display: block; /* Ensure labels take full width */
    margin-bottom: 0.5rem; /* Space between label and input */
}

#col-1 input, #col-2 input {
    width: calc(100% - 10px); /* Full width minus padding */
    padding: 5px; /* Add padding for better appearance */
}

#customer-radio input, #reason-checkbox input {
    width: auto; /* Let radio and checkbox inputs size automatically */
    margin-left: 1rem;
}

.comments-section {
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure full width */
}

@media (max-width: 768px) {
    #col-1, #col-2 {
        flex-basis: 100%; /* Stack columns on smaller screens */
    }
}
/* Homepage */
.hp-bkg-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../resources/images/homepage/FS-Botanica.JPG");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
  	
  	justify-content: center;
  	align-items: center;
	text-align: center;
}

.product-card {
	transition: transform 0.5s;
}

.product-card .card {
	cursor: pointer;
}

.product-card:hover {
	transform: translateY(-5px);
	transition: transform 0.3s
}

.img-hover-hpg1 {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	height: 400px;
	background-image: url("../../resources/images/homepage/rockpave-pool-5.jpg");
	background-size: cover;
	transition: background-image 0.5s ease-in-out;
	position: relative; /* Added for positioning the text */
}

.img-hover-hpg1:hover {
	background-image: url("../../resources/images/homepage/Spring.JPG");
}

.img-hover-hpg1 .hover-text {
    position: absolute; /* Position text absolutely within the parent */
    top: 90%; /* Adjust as needed */
    left: 50%;
    transform: translate(-50%, -50%); /* Center the text */
    color: white; /* Change color as needed */
    background-color: rgba(38,87,166,0.9); /* Optional: semi-transparent background */
    padding: 10px;
    border-radius: 5px; /* Optional: rounded corners */
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease-in-out, background-color 0.3s ease-in-out; /* Smooth transition */
    cursor: pointer;
    width: 90%;
    text-align: center;
}

.img-hover-hpg1:hover .hover-text {
	opacity: 1; /* Show text on hover */
}

.hover-text:hover {
	background-color: rgba(26,62,120,0.9); 
}

/* Footer */
.footer-link {
	color:  white;
	text-decoration: none;
  	display: block;
  	margin-bottom: 0.3rem;
}

.footer-link:hover {
	color:  var(--rp-blue-medium);
	cursor: pointer;
	transition: color 0.3s;
	text-decoration: underline;
}

/* About Rockpave */
.about-carousel-item {
  height: 50vh;        /* full viewport height */
  overflow: hidden;
  position: relative;    /* important for Bootstrap carousel */
}

.about-carousel-item img {
  width: 100%;           /* fill width */
  height: 100%;          /* fill height */
  object-fit: cover;     /* crop excess while keeping aspect ratio */
  object-position: center 55%; /* show slightly below middle */
}

.about-carousel-caption {
	color: white; /* Change color as needed */
    background-color: rgba(38,87,166,0.9); /* Optional: semi-transparent background */
    padding: 10px;
    border-radius: 5px; /* Optional: rounded corners */
    text-align: center;
	width: 50%;
	position: absolute; /* Position text absolutely within the parent */
	left: 25%;
}

.about-carousel-caption h4 {
	color: white; /* Change color as needed */
}

.zoom-cr {
    cursor: auto;
}

.zoom-cr:hover {
    transform: scale(1.05);
	transition: transform 0.1s;
}

.container {
	position: relative;
	display: grid;
  	place-items: center;
	height: 100%;
}

.text-block{
	background-color: var(--rp-blue-medium);
	color: white;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: 0.5rem;
	text-align: center;
}

.readable-container {
  max-width: 700px; /* Adjust based on your font size and desired line length */
  margin: 0 auto;
}

/* FAQS */
.accordion-item.faq {
    border: none;
    border-radius: 16px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 18px;
}

.accordion-item.faq .accordion-button {
    border-radius: 16px !important;
    background: var(--rp-blue-dark);
    color: #fff;
    font-size: 1.05rem;
    padding: 1rem 1.2rem;
}

.accordion-item.faq .accordion-button:focus {
    box-shadow: none;
}

.accordion-item.faq .accordion-button:not(.collapsed) {
    background: var(--rp-blue-medium);
    color: #fff;
	border-radius: 16px 16px 0 0 !important;
}

.accordion-item.faq .accordion-body {
    background: var(--rp-blue-light);
    padding: 1.2rem 1.5rem;
    border-radius: 0 0 16px 16px;
}

.card-bounce:hover {
	transform: translateY(-5px);
	transition: transform 0.3s
}

/* Overrides */
/* Override dropdown positioning to prevent cut-off on desktop */
		.navbar-nav-menu .dropdown-menu {
			left: auto !important;
			right: 0 !important;
			transform: none !important;
			text-align: center;
		}

		/* On mobile, center the dropdown and text without jumping */
		@media (max-width: 991.98px) {
			.navbar-nav-menu .dropdown-menu {
				left: 0 !important;
				right: auto !important;
				width: 100% !important;
				transform: none !important;
				text-align: center !important;
			}

			.navbar-nav-menu .nav-link {
				text-align: center !important;
				width: 100% !important;
			}

			.navbar-nav-menu .dropdown-toggle::after {
				margin-left: 8px !important;
				margin-right: 0 !important;
			}
		}