
/* font colors 
	black
	white
	#a61d1b (red)
	#d8b46a (gold)
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	background-color: black;
	color: white;
	font-family: 'Inter';
	font-size: 16px; /* setting default font-size manually to not get borked in the future with default font-size browser changes */
}

/* Header */

header {
    display: flex;
    justify-content: space-between;
	height: 8vh;
}

.header-left-side {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 10px;
}

nav ul {
	background: white;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    height: 100vh; /* 100% */
    margin: 0;
    list-style: none;
    width: 45%;
	padding-right: 1em;
    text-align: right;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
}

nav ul li {
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;

	&:nth-of-type(1) {
		margin-bottom: 2em;
	}
}

nav ul li a {
	color: black;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;

	&:hover {
		text-decoration: none;
		color: #a61d1b;
	}
}

.header-logo {
	width: auto;
	height: 125px;
}

.nav-menu-button {
	width: 35px;
	height: auto;
	margin-top: 1em;
	margin-right: 1em;
}

.nav-menu-close-button {
	width: 35px;
	height: auto;
}

.nav-menu-cta {
	background-color: #a61d1b;
	border: none;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	border-radius: 5px;
	padding: 5px;
}

.nav-menu-cta:hover {
	text-decoration: none;
	background-color: white;
}

.open {
    transform: translateX(0%);
}

.hide-on-mobile {
	display: none;
}

/* SECTION 1 */

.html-prison-1 {
	background-color: black;
	width: 100%;
	height: auto;
	padding-bottom: 50px;
	text-align: center;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-top-color: #d8b46a;
}

.word-prison-1 {
	padding-left: 5vw;
	padding-right: 5vw;
}

.h1-1 {
	color: #a61d1b;
	padding-top: 50px;
	font-size: 2.5em;
}

.p-1 {
	margin-top: 20px;
	font-size: 1.5em;
}

.p-1-1 {
	margin-top: 20px;
	font-size: 1.5em;
}

.main-button-cta {
	margin-top: 30px;
	font-size: 2em;
	font-weight: bolder;
	
	background-color: #a61d1b;
	color: white;
	border: none;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	border-radius: 5px;
	padding: 10px;
}

.main-button-cta:hover {
	text-decoration: none;
	background-color: white;
	color: #a61d1b;
}

.p-2 {
	margin-top: 5px;
	font-size: 1em;
}

/* SECTION 2-1 */

.html-prison-2-1 {
	background-color: black;
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-top-color: #d8b46a;
}

.word-prison-2-1 {
	padding-left: 5vw;
	padding-right: 5vw;
	text-align: center;
}

.h2-1-1 {
	color: #a61d1b;
	font-size: 2em;
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 30px;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.carousel img {
  height: 250px; /* adjust as needed */
  width: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 20px;
  margin-right: 20px;
  object-fit: contain;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION 2 */

.html-prison-2 {
	background-color: black;
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-top-color: #d8b46a;
}

.word-prison-2 {
	padding-left: 5vw;
	padding-right: 5vw;
	text-align: center;
}

.h2-1 {
	color: #a61d1b;
	font-size: 2.5em;
}

.p-3 {
	margin-top: 20px;
	font-size: 1.5em;
}

.img-1 {
	margin-top: 10px;
	width: 80%;
	height: auto;
}

.p-4 {
	margin-top: 10px;
	font-size: 1.5em;
}

.img-2 {
	margin-top: 10px;
	width: 100%;
}

.p-5 {
	margin-top: 20px;
	font-size: 1.5em;
}

/* SECTION 3 */

.html-prison-3 {
	background-color: black;
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-top-color: #d8b46a;
}

.word-prison-3 {
	padding-left: 5vw;
	padding-right: 5vw;
	text-align: center;
}

.h2-2 {
	color: #a61d1b;
	font-size: 2.5em;
}

.p-6 {
	margin-top: 20px;
	font-size: 1.5em;
}

.p-7 {
	margin-top: 20px;
	font-size: 1.5em;
}

.p-8 {
	margin-top: 20px;
	font-size: 1.5em;
}

.p-9 {
	margin-top: 20px;
	font-size: 1.5em;
}

/* SECTION 4 */

.html-prison-4 {
	background-color: black;
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-top-color: #d8b46a;
}

.download-step {
	background-color: #a61d1b;
	color: white;
	border: none;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	border-radius: 5px;
	padding: 5px;
}

.h2-3 {
	color: #a61d1b;
	font-size: 2.5em;
	margin-bottom: 20px;
}

.download-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 20px;
	max-width: 80%;
	margin: auto;
}

.download-box {
	background: transparent;
	border-radius: 12px;
	padding: 20px;
	text-align: left;
	text-decoration: none; /* Removes the underline */
	color: white;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #a61d1b;
	border-left-color: #a61d1b;
	border-right-color: #a61d1b;
	border-bottom-color: #a61d1b;
}

.download-p {
	text-decoration: none; /* Removes the underline */
	color: white;
}

.download-p-a {
	text-decoration: none; /* Removes the underline */
	color: #a61d1b;
}

.available-on-container img {
	height: 40px; /* adjust as needed */
	width: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	margin-right: 10px;
}

/* SECTION 5 */

.html-prison-5 {
	background-color: black;
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-top-color: #d8b46a;
}

.h2-4 {
	color: #a61d1b
	font-size: 2.5em;
	margin-bottom: 20px;
}

.pricing-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 20px;
	max-width: 80%;
	margin: auto;
}

.pricing-box {
	background: transparent;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	padding: 20px;
	text-align: left;
	transition: transform 0.2s;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #a61d1b;
	border-left-color: #a61d1b;
	border-right-color: #a61d1b;
	border-bottom-color: #a61d1b;
}

.pricing-box:hover {
	transform: translateY(-2px);
}

.pricing-button-cta {
	width: 100%;
	margin-top: 20px;
	font-size: 1.5rem;
	font-weight: bolder;
	
	background-color: #a61d1b;
	color: white;
	border: none;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	border-radius: 5px;
	padding: 5px;
}

.pricing-button-cta:hover {
	text-decoration: none;
	background-color: white;
	color: #a61d1b;
}

/* Footer */

footer {
	background-color: black;
	width: 100%;
	height: auto;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px;
	border-style: solid;
	border-top-width: 1px;
	border-left-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-top-color: #d8b46a;
}

@media (min-width: 1200px) {
	
	/* Header */

    /* Hide hamburger + close buttons */
    .menu-open,
    .menu-close {
        display: none;
    }

	header {
		display: flex;
		justify-content: space-between;
		height: 10vh; /* match */
	}

	.header-left-side {
		display: flex;
		justify-content: space-between;
		margin-left: 10vw;
	}

	nav ul {
		background: transparent;
		position: relative;
		height: 10vh; /* match */
		width: auto;
		text-align: right;
		transform: none;
	}

	nav ul li {
		display: inline-block; /* stops stacking them vertically */
		padding-top: auto;
		padding-bottom: auto;
		margin-left: 1em;
		margin-right: 1em;
	}

	nav ul li a {
		color: white;
		text-decoration: none;
		font-weight: 600;
		font-size: 1.1rem;

		&:hover {
			text-decoration: none;
			color: #a61d1b;
		}
		
	}
	
	nav ul li:last-child a {
		margin-right: 10vw;
		font-size: 1.2rem;
	}

	.header-logo {
		width: auto;
		height: 150px;
	}

	.nav-menu-cta {
		background-color: #a61d1b;
		border: none;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		cursor: pointer;
		border-radius: 5px;
		padding: 8px;
	}

	.nav-menu-cta:hover {
		text-decoration: none;
		background-color: x;
		color: x;
	}

	/* nav */
	.desktop-prison {
		max-width: 1200px;
		margin: 0 auto;   /* centers horizontally */
		width: 100%;      /* makes it responsive */
	}

	.pricing-container {
		max-width: 350px;
	}

	.img-1 {
		margin-top: 10px;
		width: 50%;
		height: auto;
	}

}

@media (min-width: 1400px) {
	
	/* Header */

	.header-left-side {
		margin-left: 20vw;
	}
	
	nav ul li:last-child a {
		margin-right: 18vw;
	}

}