
/*
@font-face {
    font-family: 'PumpedUpKicks';
    src: url('fonts/pumped-up-kicks/pumped-up-kicks.woff2') format('woff2'),
         url('fonts/pumped-up-kicks/pumped-up-kicks.woff') format('woff'); 
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*/

/* Colours */
:root {
    --cream: #F7F3E9;
    --grey: #B7A6C9;
    --pink: #DF6CF5;
    --mustard: #D9A441;
    --teal: #5FA8A1;
}

/* Internal CSS styles go here */
body {
	line-height: 1.6;
	background-color: var(--grey);
	color: #333;
	margin: 0;
	padding: 0;
	font-family: "DM Sans", sans-serif;
	font-weight: 300;
}
.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
	
}

a {
	color: var(--pink);
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

.ranchers-regular {
  font-family: "Ranchers", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
	font-family: "Ranchers", sans-serif;
	font-size:3rem;
	background-color: var(--pink);
	color: var(--cream);
	margin: 0;
	padding: 10px 20px 5px 20px;
	line-height: 1;
}

h2 {
	font-family: "Ranchers", sans-serif; !important
	font-size:3rem;
	
	color: var(--pink);
	margin: 0;
	line-height: 1;
	/*
	
	padding: 10px 20px 5px 20px;
	background-color: var(--pink);
	
	*/
}

/* Sidebar Layout */

.sidebar-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    background-color: var(--cream);
}

.sidebar-aside {
    padding: 20px;
}

.sidebar-content {
    padding: 20px;
}

/* Form input style */

input, textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    color: #2d3748;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.25s ease;
    margin-bottom:10px;
    font-family: inherit;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00843D;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 132, 61, 0.12);
}

input::placeholder, textarea::placeholder {
    color: #a0aec0;
    opacity: 1;
}




/* ###################### */
/* ##### RESPONSIVE ##### */
/* ###################### */


@media (max-width: 768px) {
    .layout-container {
        grid-template-columns: 1fr; /* Stacks the columns vertically on small screens */
        gap: 20px;
    }
}