/* IMPORTS */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");


/* scroll bar */
/* For Webkit-based browsers (Chrome, Safari, Opera) */
::-webkit-scrollbar {
	width: 12px;

}

::-webkit-scrollbar-track {
	background-color: #999;
}

::-webkit-scrollbar-thumb {
	background-color: #e85f28;
	border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #d79981;
}

/* For Firefox */
/* Please note that Firefox currently only supports basic customization */
/* You may need to use a JavaScript-based solution for more advanced customization */
* {
	scrollbar-width: auto;
}

*::-moz-scrollbar-track {
	background-color: #888;
}

*::-moz-scrollbar-thumb {
	background-color: #e85f28;
	border-radius: 2px;
}

*::-moz-scrollbar-thumb:hover {
	background-color: #555;
}

/* VARIABLES */
.lock-scroll {
	overflow: hidden;
}

:root {
	--background-color: /*rgb(0, 0, 0);*/ rgb(4, 4, 4);
	--border-color: rgb(255, 255, 255, 1);
	--highlight-color: #e85f28;
	--gray: rgb(255, 255, 255, 0.1);
	--white: rgb(255, 255, 255);
}

/* STYLES */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: "Raleway", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: inherit;
    color: black;
}

html {
	box-sizing: border-box;
}

html,
body {
	height: 100vh;
	width: 100vw;
}

body {
	overflow-x: hidden;
	background-color: white;
    color: black;
	padding: 0;
	margin: 0;
}

/*Styling Navigation Bar*/
nav {
	width: 100%;
	color: white;
	background-color: white;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
    font-weight: 600;
	z-index: 1000;
    height: 90px;
}

/* Styling logo */
.logo {
	padding: 1vh 1vw;
}

.border {
	border: 1px solid black;
	height: 40px;
}

@media screen and (max-width: 1100px) {
	.border {
		height: 0px;
		width: 150px;
	}
}

/*Styling Links*/
.nav-links {
	display: flex;
	list-style: none;
	width: 88vw;
	padding: 0 0.7vw;
	color: white;
	justify-content: space-evenly;
	align-items: center;
	text-transform: uppercase;
}

.nav-links li .nav-link {
	text-decoration: none;
	margin: 0 1.5vw;
	transition: all 0.5s ease-in-out;
	transform: translateX(0px);
}

.nav-links li .nav-link:hover {
	color: var(--highlight-color);  
	letter-spacing: 5px;
	transform: translateX(10px);
	transition: all 0.5s ease-in-out;
}

.nav-links li .nav-link:not(:hover) {
	transition: all 0.5s ease-in-out;
	transform: translateX(0px);
}

.nav-links li {
	position: relative;
	padding: 10px 0;
}
.nav-links li a::before {
	content: "";
	display: block;
	height: 3px;
	width: 0%;
	background-color: var(--highlight-color);
	position: absolute;
	transition: all ease-in-out 250ms;
	margin: 0 0 0 10%;
}
.nav-links li a:hover::before {
	width: 80%;
}

.nav-links li a::after {
	content: "";
	display: block;
	height: 3px;
	width: 0%;
	background-color: var(--highlight-color);
	position: absolute;
	transition: all ease-in-out 250ms;
	margin: 0 -10% 0 0;
}

.nav-links li a {
	text-decoration: none;
	margin: 0 1.5vw;
	transition: color 0.5s ease-in-out;
}

.nav-links li a:hover {
	color: var(--highlight-color);
}

.nav-links li.dropdown > a .chevron {
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #ffffff transparent transparent transparent;
	margin-left: 5px;
	padding-top: -5px;
	transform: translateY(1px);
	transition: transform 0.3s ease-in-out;
}

.nav-links li.dropdown.open > a .chevron {
	transform: translateY(1px) rotate(180deg);
}


.nav-links li ul {
	display: none;
	background-color: #131418;
	position: absolute;
	top: 100%;
	left: 0;
	width: max-content; /* Adjust the width to fit the content */
	white-space: nowrap; /* Prevent line breaks */
	box-shadow: -3px 3px 10px -2px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	padding: 10px 0;
}

.nav-links li ul li a {
	padding: 10px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	width: max-content; /* Adjust the width to fit the content */
	white-space: nowrap; /* Prevent line breaks */
}

/* Styling Hamburger Icon */
.hamburger {
	display: none;
	padding-right: 20px;
}

.hamburger .line {
	width: 30px;
	height: 3px;
	background: #303030;
	margin: 5px;
	padding-right: 10px;
	transition: all 0.3s ease;
}

/* Styling for small screens */
@media screen and (max-width: 1400px) {
	nav {
		position: fixed;
		z-index: 3;
	}

	.hamburger {
		display: block;
		position: absolute;
		cursor: pointer;
		right: 5%;
		top: 50%;
		transform: translate(-5%, -50%);
		z-index: 2;
		transition: all 0.7s ease;
	}

	.nav-links {
		position: fixed;
		background: #f2f2f2;
		height: 100%;
		width: 100%;
		flex-direction: column;
		top: -100%; /* Change from clip-path to top position */
		transition: all 1s ease-out;
		pointer-events: none;
	}

	.nav-links.open {
		top: 0; /* Change from clip-path to top position */
		pointer-events: all;
	}

	.nav-links li {
		opacity: 0;
	}

	.nav-links li:nth-child(1) {
		transition: all 0.5s ease 0.2s;
	}

	.nav-links li:nth-child(2) {
		transition: all 0.5s ease 0.4s;
	}

	.nav-links li:nth-child(3) {
		transition: all 0.5s ease 0.6s;
	}

	.nav-links li:nth-child(4) {
		transition: all 0.5s ease 0.7s;
	}

	.nav-links li:nth-child(5) {
		transition: all 0.5s ease 0.8s;
	}

	.nav-links li:nth-child(6) {
		transition: all 0.5s ease 0.9s;
		margin: 0;
	}

	.nav-links li:nth-child(7) {
		transition: all 0.5s ease 1s;
		margin: 0;
	}

	li.fade {
		opacity: 1;
	}

	.nav-links li:hover > ul {
		display: none;
	}

	.nav-links li a::before,
	.nav-links li a::after {
		display: none;
	}

	.nav-links li ul {
		display: none;
		position: static;
		width: 100%;
	}

	.nav-links li ul li a {
		padding: 15px 20px;
	}
}

/* Animating Hamburger Icon on Click */
.toggle .line1 {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
	transition: all 0.3s ease;
    opacity: 0;
}

.toggle .line3 {
	transform: rotate(45deg) translate(-5px, -6px);
}


/* Styling for the home page */
/*slider div*/
.slider,
.slider > div {
	/* Images default to Center Center. Maybe try 'center top'? */
	z-index: 1;
	background-position: center center;
	display: block;
	width: 100%;
	height: 1050px;
	/* height: 100vh; */ /* If you want fullscreen */
	position: relative;
	padding-top: 40px;
	background-origin: content-box;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #000;
	overflow: hidden;
	-moz-transition: transform 0.4s;
	-o-transition: transform 0.4s;
	-webkit-transition: transform 0.4s;
	transition: transform 0.4s;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	.slider,
	.slider > div {
		height: 40vh;
		width: 100%; /* Adjust as needed */
	}
}

@media screen and (max-width: 480px) {
	.slider,
	.slider > div {
		height: 40vh;
		width: 100%; /* Adjust as needed */
	}
}

.slider > div img {
	width: 100%;
	height: auto;
	object-fit: cover; /* Ensures the image covers the entire div */
}

.slider > div {
	position: absolute;
}

/*slider arrows*/
.slider > i {
	color: var(--highlight-color);
	position: absolute;
	font-size: 60px;
	margin: 20px;
	top: 40%;
	text-shadow: 0 10px 2px #223422;
	transition: 0.3s;
	width: 30px;
	padding: 10px 13px;
	background: #fff;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	line-height: 0;
	box-sizing: content-box;
	border-radius: 3px;
	z-index: 4;
}

/*slider arrow icons*/
.slider > i svg {
	margin-top: 3px;
}

.slider > .left {
	left: -100px;
}
.slider > .right {
	right: -100px;
}
.slider:hover > .left {
	left: 0;
}
.slider:hover > .right {
	right: 0;
}

.slider > i:hover {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	transform: translateX(-2px);
}

.slider > i.right:hover {
	transform: translateX(2px);
}

.slider > i.right:active,
.slider > i.left:active {
	transform: translateY(1px);
}

.slider:hover > div {
	transform: scale(1.01);
}

.hoverZoomOff:hover > div {
	transform: scale(1);
}

.slider > ul {
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 4;
	padding: 0;
	margin: 0;
	transform: translateX(-50%);
}

.slider > ul > li {
	padding: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	list-style: none;
	float: left;
	margin: 10px 10px 0;
	cursor: pointer;
	border: 1px solid #fff;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.slider > ul > .showli {
	background-color: var(--highlight-color);
	-moz-animation: boing 0.5s forwards;
	-o-animation: boing 0.5s forwards;
	-webkit-animation: boing 0.5s forwards;
	animation: boing 0.5s forwards;
}

.slider > ul > li:hover {
	background-color: var(--highlight-color);
}

.slider > .show {
	z-index: 1;
}

.hideDots > ul {
	display: none;
}

.showArrows > .left {
	left: 0;
}

.showArrows > .right {
	right: 0;
}

.titleBar {
	z-index: 2;
	display: inline-block;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	width: 100%;
	bottom: 0;
	transform: translateY(100%);
	padding: 20px 30px;
	transition: 0.3s;
	color: #fff;
}

.titleBar * {
	transform: translate(-20px, 30px);
	transition: all 700ms cubic-bezier(0.37, 0.31, 0.2, 0.85) 200ms;
	opacity: 0;
}

.titleBarTop .titleBar * {
	transform: translate(-20px, -30px);
}

.slider:hover .titleBar,
.slider:hover .titleBar * {
	transform: translate(0);
	opacity: 1;
}

.titleBarTop .titleBar {
	top: 0;
	bottom: initial;
	transform: translateY(-100%);
}

.slider > div span {
	display: block;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	bottom: 0;
	color: #fff;
	text-align: center;
	padding: 0;
	width: 100%;
}

/* Responsive Styles for slider dots */
@media screen and (max-width: 768px) {
	.slider {
		padding-bottom: 10px;
	}

	.slider > ul > li {
		margin: 0 5px; /* Adjust the margin for the dots on smaller screens */
	}
}

/* Animation for the title bar */
@keyframes boing {
	0% {
		transform: scale(1.2);
	}
	40% {
		transform: scale(0.6);
	}
	60% {
		transform: scale(1.2);
	}
	80% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(1);
	}
}

@-webkit-keyframes boing {
	0% {
		transform: scale(1.2);
	}
	40% {
		transform: scale(0.6);
	}
	60% {
		transform: scale(1.2);
	}
	80% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(1);
	}
}

@-moz-keyframes boing {
	0% {
		transform: scale(1.2);
	}
	40% {
		transform: scale(0.6);
	}
	60% {
		transform: scale(1.2);
	}
	80% {
		transform: scale(0.8);
	}
	100% {
		transform: scale(1);
	}
}

/* Section Styles */
.home_section {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto; /* Center the container */
	max-width: 1000px; /* Set a maximum width if needed */
	color: var(--white);
}

.section__item {
	box-sizing: border-box;
	padding: 10px; /* 1 */
	width: 50%; /* 1 - Set each item to take up 50% of the width */
}

.section__item img {
	max-width: 100%; /* 5 - Make sure the image doesn't exceed the container width */
	height: auto; /* 5 - Maintain the image aspect ratio */
	object-fit: cover; /* 5 */
	object-position: center; /* 5 */
}

.section1 .section__item:nth-child(odd) {
	order: 1; /* 3 - For section1, odd rows have text on the right */
}

.section1 .section__item:nth-child(even) {
	order: 2; /* 3 - For section1, even rows have text on the left */
}

.section2 .section__item:nth-child(odd) {
	order: 2; /* 3 - For section2, odd rows have text on the left */
}

.section2 .section__item:nth-child(even) {
	order: 1; /* 3 - For section2, even rows have text on the right */
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
	.home_section {
		flex-direction: column; /* Adjust flex-direction for single column mode */
	}

	.section__item {
		width: 100%; /* 4 */
		order: unset; /* Reset order for single column mode */
		margin-top: 20px; /* 2 */
	}

	.section__item img {
		width: 100%; /* 6 */
		max-width: 100%; /* Ensure responsiveness on smaller screens */
		height: auto; /* Maintain aspect ratio */
		max-height: 400px; /* Example: Set a max-height for the images on smaller screens */
	}
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
	.section__item img {
		max-width: 100%; /* Set a max-width for the images on larger screens */
		max-height: 600px; /* Example: Set a max-height for the images on larger screens */
	}
}

@media screen and (min-width: 1200px) {
	.section__item {
		width: calc(
			33.3333% - 20px
		); /* Example: 3 items per row on larger screens */
		order: unset; /* Reset order for larger screens */
	}
}

/* Additional Styles */
.section__item * + * {
	margin-top: 10px; /* 2 */
}

.center-image {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.center-image img {
	width: 100%;
	max-width: 800px; /* Adjust the maximum width as needed */
	height: 100%;
	max-height: 1200px; /* Adjust the maximum height as needed */
	object-fit: cover;
	object-position: center;
	padding-top: 10rem;
	margin-bottom: -15rem;
}

@media screen and (max-width: 768px) {
	.center-image img {
		width: 100%;
		max-width: 400px; /* Adjust the maximum width as needed */
		height: 100%;
		max-height: 700px; /* Adjust the maximum height as needed */
	}
}

/* Styling the cards*/
.card-group, .live-events-cards {
	width: 100%;
	height: 75%;
	display: flex;
	place-items: center;
	padding: 2rem;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.card {
	margin: 1rem;
	width: 30%;
	height: 25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

/* Styling for partnership cards */
.partnership-cards .partnership-card {
	border: none; /* Remove the border for partnership cards */
}

/* Styling for live events cards */
.live-events-cards .live-events-card {
    border: none; /* Remove the border for live events cards */
    margin: 1rem;
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center; /* Show the center portion of the image */
	transition: all 0.5s ease;
}

.live-events-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Show the center portion of the image */
    transition: all 0.5s ease;
}


.card:hover .card-image {
	transform: scale(1.1);
	transition: all 0.5s ease;
}



.card-bottom {
	padding: 0 1rem;
	position: absolute;
	bottom: 0;
	transform: translate(-50, 50%);
	color: var(--white);
	width: 100%;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(transparent, black 33%, black);
}

.live-events-card-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.live-events-card-button > a {
    text-decoration: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--highlight-color);
    padding: 1rem;
    border-radius: 1em;
    font-size: 2rem;
    font-weight: 600;
    margin: 1rem;
    transition: all 500ms ease;
}

.card-button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0.5rem;
}

.card-button > a {
	text-decoration: none;
	color: var(--white);
	background-color: var(--highlight-color);
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	margin: 0.5rem;
	transition: all 500ms ease;
}

.card-button > a:hover,
.live-events-card-button > a:hover {
	color: var(--highlight-color);
	background: linear-gradient(
		135deg,
		var(--highlight-color) 50%,
		black 50%
	);
	background-position: 100%;
	background-size: 200% 100%;
	text-decoration: none;
	transition: all 500ms ease;
	cursor: pointer;
}

.card-text,
.card-title {
	margin: 0.5rem;
	text-align: center;
}

.card-title {
	font-size: 1.5rem;
	font-weight: 600;
}

.card-text {
	font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {

	.card-group {
		padding: 1rem;
	}

	.card {
		margin: 1rem;
		height: 40vh;
		width: 90%;
        border-radius: 0.5rem;
	}

    .live-events-cards {
        width: 100%;
        padding: 1rem;
    }

    .live-events-card {
        margin: 1rem;
        height: 40vh;
        width: 100%;

    }

    .live-events-card-button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 0.5rem;

    }

    .live-events-card-button > a {
        text-decoration: none;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--white);
        background-color: var(--highlight-color);
        padding: 1rem;
        border-radius: 1em;
        font-size: 1.5rem;
        font-weight: 600;
        margin: 1rem;
        transition: all 500ms ease;
    }

	.card-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center; /* Show the center portion of the image */
		transition: all 0.5s ease;
	}

    .card:hover .card-image {
        transform: scale(1.1);
        transition: all 0.5s ease;
    }

	.card-title {
		font-size: 1rem;
	}

	.card-text {
		font-size: 1rem;
	}

	.btn {
		font-size: 1.25rem;
	}
}

/* Base styles */
.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the columns horizontally */
}

ul {
    list-style: none;
    padding: 0; /* Remove default padding */
}

.footer {
    background-color: white;
    color: black;
    padding: 70px 0;
    text-align: center; /* Center text in the footer */
}

.footer-col {
    width: 25%;
    padding: 0 15px;
    text-align: left; /* Align text to the left in the footer columns */
    margin-bottom: 50px;
    margin-left: auto; /* Center the column horizontally */
    margin-right: auto; /* Center the column horizontally */
}

.footer-col h4 {
    font-size: 18px;
    color: black;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 600;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--highlight-color);
    height: 2px;
    box-sizing: border-box;
    width: 8rem;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul {
    padding: 0;
    list-style: none;
    margin: 0;
    color: black;
    font-size: 16px;
    font-weight: 400;
}

.footer-col ul li a i {
    margin-right: 10px;
    color: #e85f28;
}

.footer-col ul li a {
    display: flex;
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    color: black; /* corrected color from whit to black */
    transition: all 0.3s ease;
    text-align: left; /* Align text to the left in list items */
}

.footer-col ul li a:hover {
    color: #e85f28;
    padding-left: 8px;
    font-weight: bold;
}

.footer-col ul li a:hover i {
    font-size: 1.2rem; /* Example: change font size of the <i> tag */
    transform: rotate(90deg); /* Example: rotate the <i> tag */
    transition: all 0.5s ease;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: #e85f28;
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    background-color: white;
    color: #e85f28;
}

footer #copyright {
    text-align: center;
    color: black;
    font-weight: 600;
}

footer .logo {
    text-align: center;
    color: black;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .footer-col {
        width: 33.33%; /* Three columns for tablets */
    }
}

@media (max-width: 992px) {
    .footer-col {
        width: 50%; /* Two columns for smaller tablets and large phones */
    }
}

@media (max-width: 550px) {
    .footer-col {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-col h4::before {
        left: 50%; /* Center the underline on smaller screens */
        transform: translateX(-50%); /* Center the underline on smaller screens */
    }

    .footer-col h4 {
        text-align: center; /* Center h4 elements on mobile */
        margin-bottom: 20px; /* Adjust margin for h4 elements on mobile */
        font-size: 16px;
    }

    .footer-col ul {
        padding: 0; /* Remove default padding for ul elements */
        list-style: none; /* Remove default list style for ul elements */
    }

    .footer-col ul li {
        margin-left: 0; /* Remove default margin for li elements on mobile */
    }

    .footer-col ul li a {
        display: block; /* Ensure links take full width on mobile */
        text-align: center; /* Center text in a elements on mobile */
    }

    .footer-col .social-links a {
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255, 255, 255, 0.2);
        margin: 0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
    }

    .footer-col .social-links a:hover {
        color: var(--highlight-color);
        background-color: var(--background-color);
    }

    footer .logo {
        text-align: center;
        color: black;
        font-size: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}


 /* Contact section */
.contact-section {
    padding: 4rem;
    color: var(--white);
    transition: all 500ms ease;
}

.contact__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    height: 80vh;
	padding: 1rem;
	width: 100%;
}

.contact__social {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.contact__link {
    width: 100%;
}

.contact__icon {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    font-size: 2.5rem;
    color: black;
    text-decoration: none;
    transition: all 500ms ease;
    position: relative;
    transition: all 500ms ease;
}

.contact-section h2 {
    font-size: 4rem; /* Adjust the font size for responsiveness */
    padding: 1rem; /* Adjust the padding for responsiveness */
    font-weight: 700;
    text-align: center; /* Center the text on all screens */
}

.contact__icon:hover {
    color: var(--highlight-color);
    padding-left: 10px;
    transition: all 500ms ease;
    font-weight: 600;
    font-size: 3.25rem;
    cursor: pointer;
}

.contact__icon i {
    margin-right: 2rem;
    font-size: 2rem;
    padding: 1rem;
    width: 4rem; /* Fixed width */
    height: 4rem; /* Fixed height */
    border-radius: 50%;
    color: var(--highlight-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.contact__icon i:hover {
    transform: rotate(90deg);
    background-color: var(--white);
    color: var(--highlight-color);
    transition: all 500ms ease;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {

    .contact__container {
        padding: 1rem;
        width: 90%;
        height: 80vh;
    }

    .contact__icon {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact__icon i {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
}

/* about section */

.page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    padding-top: 160px; /* Adjust this value to match the height of your nav */

}

.content-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1200px;
    height: 100%; /* Height of a standard laptop screen */
    margin-bottom: 5rem;
    gap: 40px;
}

.column {
    flex: 1;
    padding: 20px;
    overflow-y: auto; /* Enable scrolling if content exceeds height */
}

.left-column {
    border-right: 1px solid var(--gray);
    margin-right: 20px;
}

.image-container {
    margin-bottom: 20px;
}

.responsive-image {
    max-width: 100%;
    height: auto;
}

.caption {
    font-size: 0.75rem;
    color: var(--highlight-color);
    margin-top: 5px;
    font-weight: 600;
}

.section-heading {
    font-size: 1.5em;
    color: var(--highlight-color);
    margin: 25px 0 10px;
    text-transform: uppercase;
}

.section-end {
    width: 25%;
    height: 2px;
    background-color: var(--highlight-color);
    margin-bottom: 30px;
    margin-top: 30px;
}

.page-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-container a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-container a:hover {
    text-decoration: underline;
    color: RGBA(#e69777, 0.8);
    transition: all 0.3s ease;
    transform: scale(1.1);
}

.page-container ul {
    margin: 20px 0;
    padding-left: 20px;
}

.page-container li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Table Styles */
.table-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px 0;
    overflow-x: auto; /* Enable horizontal scrolling */
    padding-top: 40px;
}

.table-container p {
    font-size: 1.25em;
    margin: 25px 0 10px;
    font-weight: 500;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9em;
    font-weight: 500;
    table-layout: fixed;
    min-width: 400px;
}

.content-table th,
.content-table td {
    padding: 10px;
    text-align: center;
    width: 20%;
    height: 50%;
    border: 1.5px solid var(--background-color);
}

.content-table tbody tr:nth-child(odd) {
    background-color: rgba(232, 95, 40, 0.6);
}

.content-table tbody tr:nth-child(even) {
    background-color: transparent;
}

/* Color only the second column */
.content-table td:nth-child(2) {
    background-color: var(--highlight-color);
    color: var(--white); /* Optional: change text color for better contrast */
}


@media (max-width: 768px) {
    .content-table {
        font-size: 12px;
    }
}

@media (max-width: 1440px) {
    .content-container p {
        font-size: 14px;
    }
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .content-container {
        flex-direction: column;
        height: auto;
        font-size: 0.75rem;
        gap: 0;
    }

    .left-column {
        border-right: none;
        border-bottom: 1px solid var(--gray);
    }

    .responsive-image {
        max-width: 100%;
        height: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        margin: 0 auto;
        padding-bottom: 25px;
    }

    .column {
        padding: 20px;
        margin-right: 0;
    }

    .section-heading {
        font-size: 1.25em;
    }

    .section-end {
        width: 50%;
        height: 2px;
        background-color: var(--highlight-color);
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .caption {
        font-size: 0.75rem;
        color: var(--highlight-color);
        margin-top: 5px;
        text-align: center;
        font-weight: 600;
    }

    .image-container {
        margin-bottom: 20px;
    }

    .page-container p, .table-container p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}
/* Styling for the about section */

/*coming soon page*/
.coming-soon {
    text-align: center;
    font-size: 4rem;
    letter-spacing: 0.1rem;
    color: black;
    width: 90%;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto; /* Center the .coming-soon section itself horizontally */
}

.coming-soon h1 {
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-size: 6rem;
    font-weight: 800;
    margin: 0; /* Reset margin to ensure full centering */
}

.coming-soon p {
    font-weight: 500;
    margin: 0; /* Reset margin to ensure full centering */
    margin: 2rem 0;
    font-size: 2rem;
}

.coming-soon .icon {
    margin-bottom: 2rem; /* Add some space between the icon and the previous element */
    width: 150px; /* Set the width of the icon */
    height: auto; /* Maintain aspect ratio */
}

@media screen and (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2rem;
    }

    .coming-soon p {
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }

    .coming-soon .icon {
        width: 50px; /* Adjust the icon size for smaller screens */
    }
}


/* home page alternating columns*/

.home-content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: white;
    color: black;
}

.home-content-section:nth-child(even) {
    flex-direction: row-reverse;
}

.home-content-section-text h2 {
    font-size: 2.5rem;
    padding: 20px;
    font-weight: 700;
    text-decoration: underline;
}

.home-content-section-text p {
    font-size: 1.25rem;
    padding: 20px;
    line-height: 1.5;
    text-align: left;
    max-width: 800px;
}

.home-content-section img {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    padding: 25px;
    margin: 25px;
}

@media only screen and (max-width: 1400px) {
    .home-content-section img {
        margin: 0;
        padding: 5%; /* Adjust padding for smaller screens */
        max-width: 60%;
        max-height: 60vh; /* Set a maximum height for the image */
    }
}

@media only screen and (max-width: 1200px) {
    .home-content-section {
        flex-direction: column;
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .home-content-section:nth-child(even) {
        flex-direction: column; /* Ensure alternating columns stack in order */
    }

    .home-content-section img {
        margin: 0; /* Remove margin for images on smaller screens */
        max-width: 100%; /* Ensure images take full width */
    }

    .home-content-section-text {
        text-align: center;
        font-size: 1rem;
    }

        /* Styles for the button on mobile */
        .home-animated-link {
            position: relative;
            margin-top: 20px;
            padding: 10px 25px;
            text-decoration: none;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid var(--white);
            border-radius: 10px;
        }
    
        .home-animated-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: white;
            color: var(--highlight-color);
            bottom: 0;
            left: 0;
        }
    
        .home-animated-link span {
            color: var(--white);
            /* Add any other styles you want for the link text on mobile */
        }
}

/* Styles for the button */
.home-animated-link {
    display: inline-block;
    font-size: 1rem;
    position: relative;
    margin-top: 20px;
    border: 1px solid var(--highlight-color);
    border-radius: 10px;
    padding: 10px 25px;
    background-color: var(--highlight-color);
    color: white;
    
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-animated-link span {
    position: relative;
    z-index: 1;
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.home-animated-link::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: white;
    color: white;
    bottom: 10px;
    transform-origin: 0% 50%;
    transform: scaleX(0);
    animation-delay: 0.2s;
    transition: transform 0.3s ease;
}

/* Hover effect */
.home-animated-link:hover {
    padding: 10px 25px;
    background-color: #000000;
    transform: scale(1.1);
    border: 2px dotted var(--highlight-color);
    color: black;
    font-weight: 800;
    transition: all 0.3s ease;
}

.home-animated-link span:hover {
    transition: all 0.3s ease;

}

.home-animated-link:hover::before {
    transform: scaleX(1.25);
    transition: all 0.3s ease;
    animation-delay: 0.6s;
}

/* Login Page */
.login-main, .create-account-main {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f1f1f1;
    padding-top: 100px; /* Adjust this value to match the height of your nav */
}

.login-container, .create-account-container {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 1200px;
    margin: 20px;
}

.login-left-column, .create-account-left-column,
.login-right-column, .create-account-right-column {
    flex: 1;
    padding: 20px;
}

.login-left-column {
    background-color: #f9f9f9;
    border-right: 1px solid #ddd;
}

.create-account-left-column {
    background-color: #f9f9f9;
    border-right: 1px solid #ddd;
}

.login-left-column h2, .login-right-column h2,
.create-account-left-column h2, .create-account-right-column h2 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-buttons button {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-buttons button:first-child {
    background-color: #007bff;
    color: white;
}

.action-buttons button:last-child {
    background-color: #28a745;
    color: white;
}

.action-buttons button:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.login-right-column, .create-account-right-column {
    background-color: #fff;
}

.login-container form, .create-account-container form {
    display: flex;
    flex-direction: column;
}

.login-container form label, .create-account-container form label {
    margin-bottom: 5px;
}

.login-container form input, .create-account-container form input {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.login-container form button, .create-account-container form button {
    display: inline-block;
    font-size: 1rem;
    position: relative;
    font-weight: 600;
    border: 1px solid var(--highlight-color);
    border-radius: 10px;
    padding: 10px;
    background-color: var(--highlight-color);
    color: white;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.login-container form button:hover, .create-account-container form button:hover {
    padding: 10px 25px;
    opacity: 0.8;
}
.signUpMessageDiv {
    display: none; /* Hidden by default */
    color: white; /* Text color */
    background-color: #f44336; /* Red background */
    padding: 15px; /* Padding around the message */
    margin-top: 10px; /* Space above the message */
    margin-bottom: 10px; /* Space below the message */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    text-align: center; /* Center the text */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.signUpMessageDiv.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

#loginMessage {
    display: none; /* Hidden by default */
    color: white; /* Text color */
    background-color: #f44336; /* Red background */
    padding: 15px; /* Padding around the message */
    margin-top: 10px; /* Space above the message */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    text-align: center; /* Center the text */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.show {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Adjustments for specific pages */
#page-2 .enrolColumn,
#page-3 .enrolColumn {
    flex: 1;
    min-width: 45%; /* Adjust min-width to control column width */
    padding: 20px;
    box-sizing: border-box;
    margin: 10px; /* Add some margin for spacing between columns */
}

/* General adjustments for responsiveness */
.enrolContainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background-color: white;
    color: black;
    padding-top: 100px;
    font-size: 1.5rem;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

.enrolColumn {
    flex: 1 1 100%; /* Ensure flexibility and full width on smaller screens */
    padding: 20px;
    box-sizing: border-box;
    margin: 10px;
}

.enrolColumn form {
    display: flex;
    flex-direction: column;
}

.enrolColumn form label,
.enrolColumn form input,
.enrolColumn form select,
.enrolColumn form button {
    width: 100%; /* Ensure form elements take full width */
    padding: 10px;
    margin-top: 10px;
    font-size: 1rem; /* Increase font size for better readability on mobile */
    box-sizing: border-box; /* Include padding and border in width calculation */
}
.enrolColumn form button {
    background-color: var(--highlight-color);
    color: white;
    border: none;
    margin: 20px 0;
    font-size: 1rem; /* Adjust font size to fit the cells */
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enrolColumn form button:hover {
    opacity: 0.8;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.enrolColumn form label {
    font-weight: 500;
}

/* Review Table Styles */
/* Review Table Styles */
.review-table {
    max-width: 50%; /* Adjust max-width as needed */
    margin-bottom: 20px;
    border-collapse: collapse;
    font-size: 1rem;
}

.review-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-weight: 400;
}

.review-table td:first-child {
    font-weight: bold;
}

/* Additional Info Form Styling */
#additionalInfoForm {
    margin-top: 20px;
}

#additionalInfoForm label {
    font-weight: 600;
}

#additionalInfoForm textarea {
    height: 100px; /* Adjust height as needed */
    resize: vertical; /* Allow vertical resizing */
    margin-top: 10px;
}

#additionalInfoForm input[type="radio"],
#additionalInfoForm input[type="checkbox"] {
    margin-top: 10px;
}

/* Privacy Notice Styling */
.privacy-notice {
    margin-top: 10px;
}

.privacy-notice p {
    font-size: 0.9rem;
}

/* Button Styling */
button {
    background-color: var(--highlight-color);
    color: white;
    border: none;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Ensure columns stack vertically on smaller screens */
@media (max-width: 768px) {
    .enrolContainer {
        flex-direction: column;
    }
}


/* Additional styling for columns and info section */
.enrolColumn, #infoSection {
    display: flex;
    flex-direction: column;
}

#infoSection {
    margin-top: 20px;
}

#lessonCards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates a 2-column grid */
    gap: 20px; /* Gap between grid items */
    justify-items: center; /* Centers items horizontally */
}

.card {
    width: calc(75% - 10px); /* Adjusted width to accommodate gap */
    max-width: 100%; /* Ensure cards don't exceed container width */
    background-color: #dcdcdc;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.card-content {
    margin-top: 10px;
}

.enroll-button {
    background-color: #e85f28;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.selected {
    background-color: #b5b5b5; /* Background color for selected card */
    border-color: #000000; /* Border color for selected card */
    border: 2px solid #000000; /* Border for selected card */
    color: #ffffff; /* Text color for selected card */

    /* Box shadow and other styles for selected card */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.selected .card-content {
    /* Add specific styles for the card content when selected */
    color: #ffffff; /* Text color for card content */
}

.selected .enroll-button {
    background-color: #4dd184; /* Background color for selected button */
    color: black; /* Text color for selected button */
    border-color: #287046; /* Border color for selected button */
    cursor: default; /* Change cursor for selected button */
}


/* Media query for responsiveness */
@media (max-width: 768px) {
    #lessonCards {
        grid-template-columns: 1fr; /* Change to 1 column layout for smaller screens */
    }
}

.enrolContainer h2, h3 {
    color: var(--highlight-color);
    margin-bottom: 10px;
}

.review-table {
    width: 100%;
    margin-bottom: 20px;
}

.review-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.review-table td:first-child {
    font-weight: bold;
}


/* page 2 */

/* Adjustments for specific pages */
#page-2 .enrolContainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background-color: white;
    color: black;
    padding-top: 100px;
    font-size: 1.5rem;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
}

#page-2 .enrolColumn {
    flex: 1;
    min-width: 45%; /* Adjust min-width to control column width */
    padding: 20px;
    box-sizing: border-box;
    margin: 10px;
}

#page-2 .enrolColumn form {
    display: flex;
    flex-direction: column;
}

#page-2 .enrolColumn form label,
#page-2 .enrolColumn form input,
#page-2 .enrolColumn form select,
#page-2 .enrolColumn form button {
    width: 100%; /* Ensure form elements take full width */
    padding: 10px;
    margin-top: 8px;
    font-size: 0.9rem;
    box-sizing: border-box; /* Include padding and border in width calculation */
}

#page-2 .enrolColumn form button {
    background-color: var(--highlight-color);
    color: white;
    border: none;
    margin-top: 20px;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#page-2 .enrolColumn form button:hover {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

#page-2 .enrolColumn form label {
    font-weight: 500;
}

/* Review Table Styles */
#page-2 .review-table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    font-size: 1rem;
}

#page-2 .review-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-weight: 400;
}

#page-2 .review-table td:first-child {
    font-weight: bold;
}

/* General styling for payment container and iframe */
.payment-container {
    max-width: 100%; /* Ensure the container takes the full width on smaller screens */
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.payment-container h1 {
    margin-bottom: 20px;
    font-size: 1.5rem; /* Increase font size for headings on mobile */
}

/* Wrapper for iframe to apply scaling */
.iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    overflow: hidden;
    background: #fff;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    transform-origin: 0 0; /* Scale from top left */
    transition: transform 0.3s ease; /* Add smooth transition */
    zoom: 0.9; /* Adjust zoom as needed */
}


/* Button styling */
button {
    width: 100%; /* Ensure buttons take full width */
    margin-top: 20px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .enrolContainer {
        flex-direction: column; /* Stack columns vertically on smaller screens */
        padding-top: 100px; /* Adjust padding for smaller screens */
    }

    .enrolColumn {
        margin: 10px 0; /* Adjust margin for better spacing */
    }

    .iframe-wrapper {
        padding-top: 75%; /* Adjust aspect ratio for smaller screens */
        height: 100vh;
    }
    .iframe-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%; /* Adjust width for smaller screens */
        height: 20vh; /* Adjust height for smaller screens */
        margin-bottom: 10px;
        zoom: 0.4;
    }
}

/* Add this new section */
#completePaymentButton {
    display: block;
    width: 50%;
    margin: 20px auto 0; /* Adjust the margins as needed */
    margin-bottom: 100px;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

#completePaymentButton:hover {
    background-color: #0056b3;
}


/* home About section */

.about-sound-factory {
    padding-top: 5vh;
}

.about-sound-factory .container {
    max-width: 800px;
    background-color: #fff;
    padding-top: 10vh; /* Increased padding */
    padding-left: 5vh; /* Increased padding */
    padding-right: 5vh; /* Increased padding */
    padding-bottom: 5vh; /* Increased padding */
    padding: 40px;
    background-color: white;
    color: black;
    padding-top: 100px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.about-sound-factory h1 {
    color: #333;
    margin-bottom: 20px;
}
.about-sound-factory p {
    color: #555;
    line-height: 1.6;
}
.about-sound-factory ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
    color: #555;
    list-style-type: none; /* Remove default bullet points */
}
.about-sound-factory li {
    margin-bottom: 10px;
    position: relative;
}
.about-sound-factory li:before {
    content: "\2022"; /* Bullet point character */
    color: #d9534f; /* Bullet point color */
    font-size: 1.5em;
    margin-right: 10px;
    position: absolute;
    left: -20px; /* Adjust position */
    top: 0.6em; /* Adjust position */
}
.highlight {
    color: #d9534f;
    font-weight: bold;
}
.about-sound-factory .cta {
    margin-top: 20px;
    font-weight: bold;
}
.about-sound-factory a {
    color: #0275d8;
    text-decoration: none;
}
.about-sound-factory a:hover {
    text-decoration: underline;
}




/* manage page */

.account-table-container {
    width: 80%;
    margin: 20px auto;
    overflow-x: auto; /* Enable horizontal scrolling if table exceeds container width */
}

.account-table {
    width: 100%;
    border-collapse: collapse;
}

.account-table th, .account-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.account-table th {
    background-color: #f2f2f2;
}

.account-table td button {
    width: auto; /* Allow buttons to be only as wide as necessary */
    padding: 8px 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.account-table td button:hover {
    background-color: #0056b3;
}

/* Ensure cells do not shrink excessively */
.account-table td[contenteditable="true"] {
    min-width: 150px; /* Adjust as needed to prevent excessive shrinking */
}

.editing {
    background-color: lightyellow; /* Highlight edited cells */
}




/* FAQs section */

#faqs {
    padding-top: 5vh;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}

#faqs .container {
    max-width: 800px;
    background-color: #fff;
    padding-top: 10vh;
    padding-left: 5vh;
    padding-right: 5vh;
    padding-bottom: 5vh;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    justify-content: center;
    align-items: center;
}
#faqs h2 {
    color: #333;
    margin-bottom: 20px;
}
#faqs .faq-item h3 {
    color: #333;
    margin: 0;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    background-color: #f8f9fa; /* Add background color for h3 */
    transition: background-color 0.3s; /* Smooth transition */
}
#faqs .faq-item h3:hover {
    background-color: #e2e6ea; /* Hover effect */
}
#faqs .faq-item p {
    display: none;
    margin: 0 auto;
    padding: 10px;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    border-radius: 4px;
    text-align: left; /* Align text to the left for better readability */
    justify-content: center;
    align-items: center;
}
#faqs .faq-item.active p {
    display: block;
    max-width: 600px;
}

#faqs .faq-item.active h3 {
    background-color: #e59271; /* Change background color for active item */
}

#faqs .faq-item {
    margin-bottom: 10px;

}

/* Responsive Styles */

@media (max-width: 768px) {
    #faqs .faq-item h3 {
        font-size: 1rem;
    }
    #faqs .faq-item p {
        font-size: 0.9rem;
    }
}


.enrollments-table-container {
    width: 80%;
    margin: 20px auto;
    overflow-x: auto; /* Enable horizontal scrolling if table exceeds container width */
}

.account-table {
    width: 100%;
    border-collapse: collapse;
}

.account-table th, .account-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.account-table th {
    background-color: #f2f2f2;
}

.account-table td button {
    width: auto; /* Allow buttons to be only as wide as necessary */
    padding: 8px 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.account-table td button:hover {
    background-color: #0056b3;
}

/* Ensure cells do not shrink excessively */
.account-table td[contenteditable="true"] {
    min-width: 150px; /* Adjust as needed to prevent excessive shrinking */
}

.editing {
    background-color: lightyellow; /* Highlight edited cells */
}
