/*
Theme Name: Azure Basic Child  
Template: azure-basic
*/


/*        Global Syles                 */
/*------------------------------------*/

details, figcaption, figure { border: 0; font-size:100%; font: inherit; vertical-align: baseline; margin: 0; padding: 0; }
audio, canvas, video { border: 0; vertical-align: baseline; margin: 0; padding: 0; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

html {
  height: 100%;
  scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", "Roboto", "Helvetica Neue", sans-serif;
	font-size:14pt;
    color: #333;
	margin: 0;
  padding: 0;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: visible;
    margin: 0;
    padding: 0;
    display: block;
}

.hero-video {
    position: absolute;
	  display: block; /* prevents inline spacing issues */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    transform: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;      /* match the video width */
    height: 100%;      /* full height of hero */
    background: rgba(0,0,0,0.5);  /* semi-transparent black overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 200px 0 0 0;
    max-width: 1080px;
    margin: 0 auto;
}

.hero-content h1,
.hero-content p,
.welcome {
    color: white; 
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); /* subtle drop shadow */
}


/* FLOATING SERVICES */
.services-floating {
    position: absolute;       /* float over hero */
    bottom: -175px;            /* pull partially into video */
    left: 50%;
    transform: translateX(-50%); /* center horizontally */
    z-index: 3;
    width: 90%;               /* inset from screen edges */
    max-width: 1080px;        /* keep it aligned with hero content */
		
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	
}

/* Individual Service Card */
.service-card {
    background: white;
    padding: 25px 25px 0 25px;
    text-align: center;
 border-bottom: 7px solid #87c540; /* green bottom border */
  
}


.service-icon {
    width: 80px;
    height: 80px;
    background: #142e2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

/* Mobile: stack below hero */
@media (max-width: 768px) {
    .services-floating {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr; /* stack vertically */
        gap: 15px;
    }
}
/*--------------------------------------------------------------
>>> ABOUT
--------------------------------------------------------------*/

/* About Section */
.about {
    padding: 150px 0 10px 0;
    background: #ffffff; /* changed to white */
}

.about .container {
    max-width: 1200px; /* keeps content centered */
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #142e2b;
    margin-bottom: 25px;
    line-height: 1;
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Removed Read More button styling since it's no longer used */

/* About image */
.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
/* Mobile responsive: stack About section */
@media (max-width: 768px) {
    .about .container {
        display: flex;
        flex-direction: column; /* stack vertically */
        gap: 30px;              /* smaller gap between text and image */
        padding: 0 15px;
    }

    .about-image img {
        height: auto;           /* scale image proportionally */
    }
}

/* What We Offer Section */
.what-we-offer {
    padding: 10px 0;
    background: #f8f8f8;
    text-align: center;
}

.what-we-offer .section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
}

.what-we-offer h2 {
    font-size: 36px;
    font-weight: bold;
    color: #142e2b;
    margin-bottom: 60px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-card {
    display: flex; /* image left, text right */
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: auto; /* auto so text is not cut off */
    text-align: left;
}

.offer-card img {
    width: 200px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.offer-card-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.offer-card h3 {
    font-size: 24px;
    color: #87c540;
    margin-bottom: 15px;
    font-weight: bold;
}

.offer-card p {
    color: #2a3819;
    line-height: 1.6;
    margin-bottom: 15px;
}

.learn-more-btn {
    color: #87c540;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

.learn-more-btn:hover {
    color: #1c403d;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr; /* stack single column */
        gap: 20px;
    }
    .offer-card {
        flex-direction: column; /* image on top, text below */
    }
    .offer-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .offer-card-content {
        padding: 15px;
    }
}
  /*--------------------------------------------------------------
        >>> TESTIMONIALS
        --------------------------------------------------------------*/
        .testimonials {
            padding: 80px 0;
            background: white;
        }
        .testimonials .container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            gap: 60px;
            flex-wrap: wrap;
        }
        /* Image */
        .testimonials-image {
            flex: 1 1 400px;
            border-radius: 10px;
            overflow: hidden;
        }
        .testimonials-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            background: #ddd;
            min-height: 300px;
        }
        /* Content */
        .testimonials-content {
            flex: 1 1 500px;
        }

.testimonials-content br {
    display: none;
}

        /* Section title & heading */
        .testimonials-content .section-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #666;
            margin-bottom: 10px;
        }
        .testimonials-content h2 {
            font-size: 36px;
            font-weight: bold;
            color: #142e2b;
            margin-bottom: 25px;
        }
        
        /* Hide radio buttons */
        .testimonial-controls {
            position: relative;
        }
        
        .testimonial-controls input[type="radio"] {
            display: none;
        }
        
        /* Slides container */
        .testimonial-slides {
            position: relative;
        }
        
        /* All slides hidden by default */
        .testimonial-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        /* Show active slide */
        #t1:checked ~ .testimonial-slides .slide1,
        #t2:checked ~ .testimonial-slides .slide2,
        #t3:checked ~ .testimonial-slides .slide3 {
            display: block;
            opacity: 1;
        }
        
        /* Testimonial text & author */
        .testimonial-slide p {
            color: #2a3819;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 16px;
        }
        .testimonial-author {
            color: #87c540;
            font-weight: bold;
        }
        
        /* Dots */
        .testimonial-dots {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        .testimonial-dots label {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
            display: block;
        }
        
        .testimonial-dots label:hover {
            background: #bbb;
        }
        
        /* Active dot styling */
        #t1:checked ~ .testimonial-dots label[for="t1"],
        #t2:checked ~ .testimonial-dots label[for="t2"],
        #t3:checked ~ .testimonial-dots label[for="t3"] {
            background: #7cb342;
        }
        
        /* Responsive: stack on mobile */
        @media (max-width: 768px) {
            .testimonials .container {
                flex-direction: column;
                gap: 40px;
            }
            .testimonials-image,
            .testimonials-content {
                flex: 1 1 100%;
            }
        }

   /*--------------------------------------------------------------
>>> MINI GOLF PAGE STYLE
--------------------------------------------------------------*/


/* Banner Section */
.banner-minigolf {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background: url('https://ig.tfm-dev.com/wp-content/uploads/2025/09/Banner-Image.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-family: 'Times New Roman', serif; /* Use a font that matches the example */
}

/* Overlay to darken the image and make text readable */
.banner-minigolf::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);  /* semi-transparent black overlay */
	color: #fff;
}

.banner-minigolf h1 {
    color: #ffffff; /* white text */
    font-size: 3rem; /* adjust as needed */
    z-index: 1; /* ensure it's above the overlay */
   text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); /* subtle drop shadow */
    margin: 0; /* remove default margin */
}

.banner-content {
    position: relative;
    z-index: 10;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: normal;
    margin: 0;
}

.banner-content p {
    font-size: 14px;
    margin: 10px 0 0;
    opacity: 0.8;
}

/* Container for content */
.minigolf-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Reusable Section Titles */
.section-title h2 {
    font-size: 36px;
    font-weight: bold;
    color: #142e2b;
    margin: 10px 0;
}

.section-title span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

/* Layout for two-column content with text and image */
.image-right-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.image-left-layout {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.text-content {
    flex: 1;
}

.text-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.5;
}

.text-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #142e2b;
    font-size: 20px;
    line-height: 1;
}

.text-content p {
    color: #666;
    line-height: 1.8;
}

.image-content {
    flex-shrink: 0;
}

.image-content img {
    width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Parallax Background Section */
.pricing-parallax {
    position: relative;
    background: url('https://ig.tfm-dev.com/wp-content/uploads/2025/08/DSC_1390-scaled.jpg') center center / cover no-repeat fixed;
    padding: 100px 20px;
    color: #fff; /* Ensure all text is white */
    text-align: center;
    overflow: hidden;
}

/* Overlay for readability */
.pricing-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 46, 43, 0.65); /* dark overlay */
    z-index: 1;
}

/* Content wrapper */
.pricing-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Section titles */
.pricing-content .section-title span {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff; /* White text */
}

.pricing-content .section-title h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #fff; /* White text */
}

/* Pricing stats layout */
.pricing-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Each price block */
.stat-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #fff; /* White text */
}

.stat-box p {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #fff; /* White text */
    opacity: 1;
}



/* Centered single-column sections */
.one-column-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: transparent; /* ensures gray shows through */
    padding: 0 20px;
    box-sizing: border-box;
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 60px 20px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  background: #f9f9f9;
  transition: background 0.3s ease, color 0.3s ease;
  list-style: none; /* remove default arrow */
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none; /* remove marker in WebKit */
}

/* Add a custom arrow */
.faq-item summary::after {
  content: "➕";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "➖";
}

/* Active/open state */
.faq-item[open] summary {
  background: #87c540;
  color: #fff;
}

.faq-item p {
  padding: 15px 20px;
  margin: 0;
  background: #fff;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 768px) {
    .pricing-parallax {
        background-attachment: scroll; /* disable parallax on mobile */
        padding: 60px 15px;
    }

    .pricing-content .section-title h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 16px;
    }
	
	  .image-right-layout {
        display: flex;
        flex-direction: column; /* stack vertically */
        align-items: center;
        text-align: center;
    }

    .image-right-layout .text-content {
        order: 1; /* text first */
        margin-bottom: 20px; /* spacing before image */
        width: 100%;
    }

    .image-right-layout .image-content {
        order: 2; /* image second */
        width: 100%;
    }

    .image-right-layout .image-content img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 600px) {
    .pricing-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .pricing-parallax {
        padding: 40px 10px;
    }

    .pricing-content .section-title span {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/*--------------------------------------------------------------
>>> DRIVING RANGE
--------------------------------------------------------------*/

/* Driving Range Parallax Section */
.drivingrange-parallax {
    position: relative;
    background: url('https://ig.tfm-dev.com/wp-content/uploads/2025/08/DSC_1464-scaled.jpg') center center / cover no-repeat fixed;
    padding: 100px 20px; 
	color: #fff; /* Ensure all text is white */ 
	text-align: center; overflow: hidden;
}

/* Overlay for readability */
.drivingrange-parallax .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 46, 43, 0.65); /* dark overlay */
	z-index: 1;
}

/* Content wrapper */
.drivingrange-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Section titles */
.drivingrange-content .section-title span {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff; /* white text */
}

.drivingrange-content .section-title h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #fff; 
}

/* Pricing stats layout */
.pricing-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Each price block */

.stat-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #fff;
}

.stat-box p {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #fff; 
	opacity:1;
}
/*-----------------------------
Responsive Mobile Adjustments
-----------------------------*/
@media (max-width: 768px) {
    .drivingrange-parallax {
        background-attachment: scroll; /* disable parallax on mobile */
        padding: 60px 15px;
    }

    .drivingrange-content .section-title h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .pricing-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .drivingrange-parallax {
        padding: 40px 10px;
    }

    .drivingrange-content .section-title span {
        font-size: 14px;
        letter-spacing: 1px;
    }
}
/*--------------------------------------------------------------
>>> PARTEE PAGE STYLES
--------------------------------------------------------------*/

       /* Features Section - Gray Bar */
       .par-tee-features {
    padding: 25px 0;
    background: #f8f8f8;
    text-align: center;
}

.par-tee-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
}

.par-tee-feature-item {
    flex: 1 1 200px;
    padding: 20px;
    color: #142e2b;
}

.par-tee-feature-item h2 {
    font-size: 32px; /* header size */
    margin: 0;
}

.par-tee-feature-item p {
    font-weight: bold; /* paragraph-style bold */
    margin: 5px 0 10px 0;
}

.feature-line {
    height: 2px;
    background-color: #87c540; /* light green line */
    width: 50px; /* adjust length of line */
    margin: 10px auto 0 auto;
}
  /* Image Section - Dark Background  */

.image-row {
    padding-top: 60px;
    padding-bottom: 10px; 
  background: #1c403d;
}

.image-row .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 5px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.image-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	  padding: 0;  
    margin: 0;   
	border: 4px solid #fff;
	
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
  /* Image and phone icon */

.contact-phone {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: bold;
            color: #142e2b;
            margin-top: 20px;
        }

        .contact-phone img {
            width: 40px;
            height: 40px;
            margin-right: 15px;
        }

        .contact-phone a {
            color: inherit;
            text-decoration: none;
        }

/* MOBILE RESPONSIVE */
        @media (max-width: 768px) {
           

            .par-tee-features-list {
                flex-direction: column;
                gap: 10px;
            }

            .par-tee-image-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .contact-phone {
                font-size: 24px;
            }
        }



/*--------------------------------------------------------------
>>> KIRICHS PAGE STYLES
--------------------------------------------------------------*/
.gallery-wrapper {
  width: 100vw;
  overflow: hidden;
  background: #1c403d;
}

.slideshow-track {
  display: flex;
  flex-wrap: nowrap;
  animation: scroll 48s linear infinite;
}

.gallery-item {
  position: relative;
  flex: 0 0 300px;  /* fixed width */
  width: 300px;      /* ensure exact width */
  height: 250px;     /* desired height */
  margin: 0;         /* no spacing between images */
  border-radius: 0;  /* no rounding */
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 46, 43, 0.65); /* overlay */
  pointer-events: none;
  border-radius: 0;
  z-index: 2;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* loop half track */
}

/* Responsive (optional) */
@media (max-width: 768px) {
  .gallery-item { flex: 0 0 200px; height: 160px; }
}

@media (max-width: 480px) {
  .gallery-item { flex: 0 0 150px; height: 120px; }
}

/*--------------------------------------------------------------
>>> CONTACT PAGE STYLES
--------------------------------------------------------------*/

        .contact-map-full {
            width: 100%;
            height: 300px; 
        }
        
        .contact-map-full iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .contact-section {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-content {
            max-width: 1000px;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
        }

        .contact-main {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .contact-form-section,
        .contact-hours-section {
            flex: 1;
        }

        .contact-form-section h2,
        .contact-hours-section h2 {
            font-size: 36px;
            font-weight: bold;
            color: #142e2b;
             margin: 10px 0;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
        }

        .contact-form .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .contact-form .form-group {
            flex: 1;
            position: relative;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            box-sizing: border-box;
            background-color: #f8f8f8;
            transition: border-color 0.3s;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #87c540;
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        .contact-form .required-star {
            color: red;
            margin-left: 2px;
        }

        .contact-form .submit-button {
            padding: 15px 30px;
            background-color: #87c540;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            align-self: flex-start;
        }

        .contact-form .submit-button:hover {
            background-color: #72a934;
        }

        .contact-hours-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
            line-height: 1.8;
            font-size: 16px;
            color: #666;
        }


/*--------------------------------------------------------------
>>> LEGAL DOCUMENT (Privacy Policy, Terms & Conditions)
--------------------------------------------------------------*/

.legal-doc {
    padding: 100px 0;          /* vertical spacing */
    background: #ffffff;       /* white background */
    color: #666;               /* body text color */
    font-family: inherit;      /* use site's font */
    line-height: 1.8;          /* comfortable reading */
}

.legal-doc .container {
    max-width: 1080px;         /* readable width */
    margin: 0 auto;
    padding: 0 20px;           /* side padding */
}

.legal-doc h1,
.legal-doc h2,
.legal-doc h3,
.legal-doc h4 {
    color: #142e2b;            /* heading color matches site */
    margin-bottom: 25px;
    font-weight: bold;
}

.legal-doc h1 { font-size: 36px; }
.legal-doc h2 { font-size: 28px; }
.legal-doc h3 { font-size: 22px; }
.legal-doc h4 { font-size: 18px; }

.legal-doc p {
    margin-bottom: 20px;
}

.legal-doc ul {
    list-style-type: disc;      /* show bullets */
    padding-left: 40px;         /* add space from left edge */
    margin-bottom: 20px;
}

.legal-doc ol {
    list-style-type: decimal;   /* show numbers */
    padding-left: 40px;
    margin-bottom: 20px;
}

.legal-doc a {
    color: #87c540;            /* link color consistent with brand */
    text-decoration: none;
}

.legal-doc a:hover {
    color: #1c403d;            /* hover color */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .legal-doc .container {
        padding: 0 15px;
    }
}



/*--------------------------------------------------------------
>>> ACCESSIBILITY
--------------------------------------------------------------*/

[hidden] {
  display: none;
}

audio:not([controls]) {
  display: none;
}




/*      Global WordPress Styles       */
/*-----------------------------------*/

.entry-content img {
	margin: 0 0 1.5em 0;
	}
.alignleft, img.alignleft {
	margin-right: 1.5em;
	display: inline;
	float: left;
	}
.alignright, img.alignright {
	margin-left: 1.5em;
	display: inline;
	float: right;
	}
.aligncenter, img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	display: block;
	clear: both;
	}

/*      Basic Two-Column (Right) Lyouout       */
/*--------------------------------------------*/

#primary {
    max-width: 100%;
    width: 100%;
    margin: -25px 0 0 0; /* Negative top margin to pull up */
    padding: 0;
    float: none;
    overflow: hidden;
}

#content {
    width: 100%;
    margin: 0;
    padding: 0;
}
#sidebar { 
	display: none;
}
.wide #primary {
	max-width: 100%;
	width: 100%;
	float: none;
	overflow: hidden;
	padding: 0;
}
.singlewidth #primary {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	float: none;
	overflow: hidden;
}
.wide #sidebar, .singlewidth #sidebar {
	display: none;
}
.wide #primary ol, .singlewidth #primary ol {
	list-style-type: decimal;
}
.wide #primary ul, .singlewidth #primary ul {
	list-style-type: disc;
}
.wide #primary li, .singlewidth #primary li {
	padding-bottom: 8px;
}

/*    Framework Styles        */
/*---------------------------*/

#container-full { 
	width: 100%; 
}
#top-header { 
	background: #2c3d1b; 
	padding: 0 0 30px 0; 
}
#top-header-section { 
	width: 100%; 
}
#main { 
	 padding: 0;
}
article { 
 	padding: 0;
}
.homebanner {
	width: 100%;
	position: relative;
}
.homebanner img {
	width: 100%;
}
.innerbanner {
	width: 100%;
	position: relative;
}
.innerbanner img {
	width: 100%;
}
.hometext {
  	position: absolute;
  	bottom: 50px;
  	left: 0;
  	right: 0;
  	max-width: 750px;
  	margin: 0 auto;
  	width: 100%;
  	font-size: 16px;
  	color: #fff;
  	padding: 0 15px;
  	font-weight: 500;
	z-index: 400;
}
.hometext h1 {
  	font-size: 40px;
  	color: #fff;
  	text-align: left;
  	font-weight: 900;
  	text-shadow: 2px 2px #000;
	text-transform: uppercase;
	line-height: 62px;	
}
.innertext {
  	position: absolute;
  	max-width: 1000px;
  	left: 0;
  	right: 0;
  	margin: 0 auto;
  	bottom: 100px;
  	color: #fff;
  	font-size: 26px;
  	font-weight: 700;
	padding: 0 15px;
	z-index: 500;
}

/*    Primary Menu (Dropdown) Styles       */
/*----------------------------------------*/


nav[role="navigation"] { position: relative; }

nav[role="navigation"] ul { margin: 0 0 0 0;
                            padding: 0 0 0 0; 
						    display: block; }

nav[role="navigation"] ul li { clear: both; display: inline-block; }
nav[role="navigation"] ul li a {  }

nav[role="navigation"] ul li ul  { display: none; } 
nav[role="navigation"] ul li:hover ul  { display: block; } 
nav[role="navigation"] ul li ul  { position: absolute;
                                   padding: 10px 0 0 0; }

nav[role="navigation"] ul li ul li { display: block;
                                     position: relative; }

nav[role="navigation"] ul li ul li ul  { display: none !important; }
nav[role="navigation"] ul li ul li:hover ul  { display: inline !important; 
                                               position: relative !important; }
nav[role="navigation"] ul li ul li ul { padding: 0 0 0 0 !important;}

nav[role="navigation"] ul li ul li ul li { display: inline-block !important;
                                           position: relative; } 

/* Header Styles */
.site-header {
    background: #1c403d; 
    color: white;
    position: relative;
    z-index: 1000;
	 margin: 0;
    padding: 0;
	 box-shadow: 0 2px 4px rgba(0,0,0,0.2);

}

/* Contact Bar Styles */
.contact-bar {
    background: #222222; 
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.contact-item:first-child {
    margin-left: 0;
}

.contact-icon {
    margin-right: 8px;
    font-size: 16px;
	   width: 20px; /* adjust as needed */
    height: 20px; /* adjust as needed */
	
}

/* Main Navigation Styles */
.main-navigation {
    padding: 10px 0; /* Add some padding back */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Logo Styles */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 100px;
    width: auto;
}

/* Navigation Menu Styles */
.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
    flex-direction: row !important;
}

.nav-links li {
    margin: 0 8px !important;
    display: inline-block !important;
}

.nav-links a {
    color: white !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.nav-links a:hover {
    color: #87c540 !important;
}

/* Contact Button Styles */
.contact-button {
    display: flex;
    align-items: center;
}

.contact-button .btn-contact {
    background: #87c540;
    color: #fff;
    padding: 5px 36px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid #87c540;
}

.contact-button .btn-contact:hover {
    background: #142e2b; /* slightly darker green */
    border-color: #142e2b;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobile menu toggle animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-info {
        font-size: 13px;
    }
    
    .contact-item {
        margin-left: 20px;
    }
    
    .nav-links li {
        margin: 0 6px !important;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 8px 12px;
    }
    
    .site-logo img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 12px;
    }
    
    .contact-item {
        margin: 5px 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1c403d;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        order: 4;
        width: 100%;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .site-logo {
        order: 1;
    }
    
    .contact-button {
        order: 2;
    }
    
    .nav-links {
        flex-direction: column !important;
        padding: 20px;
        width: 100%;
    }
    
    .nav-links li {
        margin: 8px 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block !important;
        padding: 15px !important;
        border-radius: 6px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .site-logo img {
        height: 60px;
    }
    
    .main-navigation {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .contact-info {
        font-size: 11px;
    }
    
    .site-logo img {
        height: 50px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .contact-button .btn-contact {
        padding: 10px 20px;
        font-size: 14px;
    }


/*    Static Sidebar Widget Styles       */
/*---------------------------------------*/											 

#sidebar-search { padding: 0 0 25px 0 ; }




/*             Azure Basic Styles             */
/*-------------------------------------------*/

h1 { 
	font-size: 40px; 
	color: #222;
	font-weight: bold;
}
h1 span {
	font-size: 30px;
	font-weight: 600
}
h2 { 
	font-size: 30px; 
	color: #222;
	font-weight: bold;
}
h3 { 
	font-size: 30px; 
	color: #222;
	font-weight: bold;
}
h4 { 
	font-size: 16px; 
	color: #222;
	font-weight: bold;
}

 
hr {
	margin: 30px auto;
	background: #ddd;
	background-color: #ddd;
	color: #ddd;
	width: 80%;
	float: none;
	height: 1px;
	border: none;
}

/* Top Navigation */

#access { 
	padding: 15px 0 5px; 
    z-index: 500; 
	width: 75%;
	float: right;
}
#access ul {
	text-align: right;
}		  
#access a { 
	   background-color: #2c3d1b;
      padding: 10px 20px;
	text-transform: uppercase;
}

#access a:hover { 
	color: #fff; 
}

#access ul li:hover ul  {
	background-color: rgb(0, 0, 0, .08);
	padding: 5px;
 }





.featured-thumb { margin-bottom: 10px; }
 

		  

/* Sidebar Section */

#sidebar { 
	color: #545350; 
}


/*-----------------------------
Footer Styles
-----------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}
.full-width-footer {
    width: 100vw;
    position: relative;
    left: 0;
}
.footer {
    background-color: #142e2b;
    color: #fff;
    font-family: "Open Sans", "Roboto", "Helvetica Neue", sans-serif;
    padding: 60px 20px 30px;
    width: 100%;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.footer-logo-section,
.footer-section {
    flex: 1 1 250px;
    min-width: 250px;
    text-align: left;
}
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-logo {
    width: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
}
.footer-description {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-style: italic;
}
.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #87c540;
    font-weight: normal;
    text-align: left;
}
.footer-section p,
.footer-section a {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}
.footer-section a:hover {
    color: #87c540;
    transition: color 0.3s ease;
}
.footer-contact-info {
    display: block !important;
    margin-bottom: 12px !important;
    text-align: left !important;
}
.footer-contact-info div,
.footer-contact-info p {
    text-align: left !important;
    margin: 0 !important;
    display: block !important;
}
.footer-contact-info div p {
    margin: 0 !important;
    text-align: left !important;
    line-height: 1.4 !important;
    display: block !important;
}
.footer-contact-info .icon {
    display: inline !important;
    margin-right: 5px !important;
}
.footer-contact-info .icon-placeholder {
    width: 20px;
    height: 20px;
    background-color: #87c540;
    border-radius: 3px;
    margin-top: 2px;
    flex-shrink: 0;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: #87c540;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    text-decoration: none;
    font-size: 12px;
    color: #2d4a2b;
    font-weight: bold;
}
.footer-bottom {
    border-top: 2px solid #87c540;
    margin-top: 40px;
    padding-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom-left {
    font-size: 14px;
    color: #fff;
    text-align: left;
}
.footer-bottom-left a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}
.footer-bottom-left a:hover {
    color: #87c540;
}
.footer-bottom-right {
    font-size: 14px;
    color: #fff;
    text-align: right;
}

.footer-bottom-right a {
    color: #ffffff;
    text-decoration: none;
}
/* Responsive adjustments */
/* Mobile Footer Reset */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 0; /* no flex gap */
    }

    .footer-logo-section,
    .footer-section {
        min-width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-section h3,
    .footer-section p,
    .footer-section a,
    .footer-contact-info,
    .footer-contact-info div,
    .footer-contact-info p {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.4 !important;
    }

    .footer-contact-info {
        margin-bottom: 5px !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px;
        margin-top: 10px !important;
        padding-top: 10px !important;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
    }
}


/*    Responsive Styles        */
/*---------------------------*/


@media only screen and (min-width:0px) and (max-width: 1050px) {

}
@media only screen and (min-width:0px) and (max-width: 900px) {

}

@media only screen and (min-width:0px) and (max-width: 850px) {

}

@media only screen and (min-width: 0px) and (max-width: 800px) {

}

@media only screen and (min-width: 0px) and (max-width: 750px) {
.alignleft, img.alignleft {
	margin: 0 auto;
	display: block;
	float: none;
	padding: 15px;
}
.alignright, img.alignright {
	margin: 0 auto;
	display: block;
	float: none;
	padding: 15px;
}
}

@media only screen and (min-width: 0px) and (max-width: 700px) {

}

@media only screen and (min-width: 0px) and (max-width: 600px) {

}

@media only screen and (min-width: 0px) and (max-width: 537px) {
	  
}

@media only screen and (min-width: 0px) and (max-width: 500px) {

}

@media only screen and (min-width: 0px) and (max-width: 347px) {

}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-bottom: 1px solid #eee;
    }

    .service-card:last-child {
        border-bottom: none;
    }
}
/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
}


