﻿        :root {
            --primary-color: #0A121A; /* Brand colors used on the whole page */
            --dark-gray: #3F464C;
            --light-gray: #f9f9f9;
			--red-accent: #FF5E65;
			--light-sand: #FBF1E4;
			--solid-sand: #F7E4CB;
            --white: #ffffff;
        }
		
/* Removing this for now to add back the black bar to test with sand bar
	nav.title-bar {
    	display: none;
	}
	
	form.search {
		display: none;
	} */
	
	.off-canvas-content .main-section > .outer-row	/*removes the padding from the skin*/
{
	max-width: 100%;
	padding: 0px;
}

div.row.outer-row.sidenav-layout {
	max-width: 100%;
	padding: 0px;
	margin: 0px;
}

        body {
			margin: 0;
            padding: 0;
        }

		h1 {
            font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', 'Arial Black', 'sans-serif';
            font-size: 42px;
            line-height: 1.6;
			font-weight: 700;
        }

		h2 {
  			font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
			font-size: 36px;
			color: var(--primary-color);
			font-weight: 600;
			margin: 10px 0px; /* LG added this */
		}

		h3 {
  			font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
			font-size: 24px;
			color: var(--primary-color);
			font-weight: 500;
		}
		
		/* Use intro class for h3 outside of main-content section */
		.intro {
			margin: 25px 25px 10px 25px;
		}

		p {
			font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
			font-size: 16px;
			color: var(--primary-color);
			font-weight: 300;
			line-height: 1.3;
		}
		ul {
			font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
			font-size: 16px;
			color: var(--dark-gray);
			font-weight: 500;
			line-height: 1.3;
			margin-bottom: 1em;
}

		li {
  			font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
			font-size: 16px;
			color: var(--dark-gray);
			font-weight: 500;
			line-height: 1.3;
			margin-bottom: 1em;
}

        img {
            max-width: 100%;
            height: auto;
         }

		.icon {
			display: inline-block;
			margin: 10px;
		 }

		a:link { color: var(--primary-color); text-decoration: none; font-weight: 700; }
		a:visited { color: var(--primary-color); text-decoration: none; }
		a:hover { text-decoration: underline; }
		a:active { text-decoration: none; }
		
		
		

/* Top section with icon and title text */
        .top-grid { 
			display: grid;
  			grid-template-columns: 0.15fr 1fr;
  			grid-template-rows: 1fr;
  			gap: 25px 0;
			padding: 15px 0;
			background-color: var(--solid-sand);
  			grid-template-areas: "icon-section header-section";
		}

		.icon-section { grid-area: icon-section; justify-self: center; align-self: center; 
		}

		.header-section { grid-area: header-section; padding: 10px 25px 0 10px;
		}

/* Main content secttion layout */
		.main-content {  
		  display: grid;
		  grid-template-columns: 1fr 1fr 1fr 1fr;
		  grid-template-rows: auto;
		  gap: 50px 30px;
		  margin: 25px;
		  height: auto;
		  grid-template-areas:
			"top-left top-left top-right top-right" 
			"topic-01 topic-02 topic-03 topic-04"
			"bottom-left bottom-left bottom-right bottom-right";
		}

	
		
		.top-left { grid-area: top-left; padding: 0 30px 0 0; }
		
		

		.top-right { grid-area: top-right; padding: 0 30px 0 0; }

		.topic-01 { 
			grid-area: topic-01; 
			background-color: var(--solid-sand); 
			text-align: center; 
			padding: 0 15px 15px 15px; 
			border-radius: 8px;
		}
		
		.topic-02 { grid-area: topic-02; background-color: var(--solid-sand); text-align: center; padding: 0 15px 15px 15px; border-radius: 8px; }

		.topic-03 { grid-area: topic-03; background-color: var(--solid-sand); text-align: center; padding: 0 15px 15px 15px; border-radius: 8px; }

		.topic-04 { grid-area: topic-04; background-color: var(--solid-sand); text-align: center; padding: 0 15px 15px 15px; border-radius: 8px; }

		.bottom-left { grid-area: bottom-left; padding: 0 30px 0 0; }

		.bottom-right { grid-area: bottom-right; padding: 30px 30px 0 0; }
		
		/* class^="topic" sets the hover effect for all divs that start with "topic" which is the class for the boxes on the landing pages */
		[class^="topic"]:hover {
			box-shadow: 0 12px 18px rgba(0,0,0,0.16), 0 12px 18px rgba(0,0,0,0.23);
			transform: scale(1.05);
		}
		
		.noteWarning {
			display: block;
			background-color: var(--light-gray);
			font-size: 1.1rem;
			text-align: left;
			line-height: 1.5;
			overflow: hidden;
			border-left: solid 4px var(--red-accent);
			padding: 15px 15px 15px 30px;
}

/* Standard button style */
        .learn-more-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
			font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .learn-more-btn:hover {
            background-color: var(--dark-gray);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .main-content {
			grid-template-areas:
			"top-left top-left"
			"top-right top-right"
			"topic-01 topic-02" 
			"topic-03 topic-04"
			"bottom-left bottom-left"
			"bottom-right bottom-right";
			grid-template-columns: 1fr 1fr;
			grid-template-rows: auto;
            }
        }

        @media (max-width: 720px) {
           .top-grid {
			grid-template-areas:	
    	    "icon-section"
			"header-section";
			grid-template-columns: 1fr;
			grid-template-rows: auto;
			grid-area: header-section; text-align: center; align-self: center; padding: 0 25px;
			 }
            .main-content {
			grid-template-areas:
			"top-left"
			"top-right"
			"topic-01"
			"topic-02" 
			"topic-03"
			"topic-04"
			"bottom-left"
			"bottom-right";
			grid-template-columns: 1fr;
			grid-template-rows: auto;
        	}
		}