body {
	padding-top: 96px;
}

.card {
	transition: border-color 0.5s, box-shadow 0.25s;
}

.card:hover {
	border-color: rgba(13, 110, 253, 0.7);
	box-shadow: 0px 0px 10px 2px rgba(61, 213, 243, 0.5);
}

.main-content {
	width: 100%;
}

.bg-center {
	z-index: -500;
	background-image: url("../img/bg-center-compressed.png");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: 45%;
	background-position: 60% 50%;

	position: fixed;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-10deg);
}

.bg-bottom {
	z-index: -500;
	background-image: url("../img/bg-bottom-compressed.png");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: 20%;
	background-position: 67% 100%;

	position: fixed;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.menu-line {
	border-bottom: solid white 4px;
}

.fw-700 {
	font-weight: 700;
}

.fw-800 {
	font-weight: 800;
}

.nav-link:hover {
	color: #333;
	background-color: #dadada;
}

.nav-link:focus {
	color: black;
}

.bg-shade {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -250;
	background-color: rgba(0, 0, 0, 0.4);
}

.right-align {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin-right: 0;
    padding: 0;
}

.right-align a {
	margin-right: 10px; 
}

.index-call-menu {
	display: none;
}

.index-call-nav {
	height: 96px;
	margin-bottom: 32px;
	color: gold;
	font-weight: 700;
	font-size: 32px;
	display: block;
	position: relative;
	left: 50%;
	top: 32px;
	transform: translate(-50%);
	text-align: center;
}

@media (max-width: 1399.98px) {
	.navbar {
		border-bottom: solid 4px white;
	}

    .bg-center {
        background-size: 80%;
    }

    .bg-bottom {
        background-size: 70%;
    }
    
    .bg-shade {
		background-color: rgba(0, 0, 0, 0.85);
	}

	.nav-link:focus, .nav-link:active {
		color: rgba(255,255,255,0.8);
	}

	.index-call-menu {
		color: gold;
		font-weight: 700;
		font-size: 32px;
		display: block;
		position: relative;
		left: 50%;
		top: 32px;
		transform: translate(-50%);
		text-align: center;
	}

	.index-call-nav {
		display: none;
	}

	ol.socials img {
		width: 32px;
	}
}

@media (min-width: 1400px) {
	body {
		padding-top: 0;
	}

	.main-content {
		width: 33%;
	}

	.navbar {
		height: 100%;
		flex-grow: 1;
		position: relative;
		top: 0;
		right: 0;
		left: 0;
	}

	.navbar-nav {
		flex-direction: column;
	}

	.nav-link {
		color: black;
		text-align: center !important;
		font-weight: 800;
		font-size: 24px;
		background: white;
		margin: 12px;
		min-width: 300px;
		padding: 12px 64px 12px 32px !important;
		border-radius: 50px 0% 0% 50px;
		position: relative;
	}

	.nav-link::after {
		background: black;
		content: '';
		display: block;
		width: 50px;
		height: 100%;
		position: absolute;
		right: 0px;
		top: 0;
		border-radius: 0% 0% 0% 50%;
	}

	.navbar-brand {
		width: 50%;
		padding-bottom: 64px;
	}

	.navbar-brand img {
		width: 256px;
		height: 256px;
		position: relative;
		transform: translateX(-50%);
		left: 50%;
		top: 32px;
	}

	.right-align {
		margin-right: 32px; 
	}
}





.gallery img {
    margin: 0; /* Ensure no margin around the image */
    border-radius: 0; /* Remove any rounded edges if present */
}

.card-body {
    background-color: transparent !important; /* Remove any background color from the card body */
}

.gallery-item .card {
    background-color: #1a1a1a; /* Even darker card background */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
}

.gallery-item .card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.card-header, .card-body {
    border-bottom: 1px solid #333; /* Subtle separators */
}



.index-modal-content table {
    border-collapse: collapse; /* Removes extra spacing between table cells */
    width: 100%; /* Ensures the table takes up the full width */
}

.index-modal-content table td,
.index-modal-content table th,
.index-modal-content table tr {
    border: none; /* Removes borders */
    background-color: transparent; /* Removes background colors */
    text-align: left; /* Aligns content to the left */
    padding: 0; /* Removes padding */
	color: white;
}

.index-modal-content table tr > *:first-child {
    text-align: left; /* Ensures the first column is aligned left */
}

.index-modal-content table tr > *:last-child {
    text-align: right; /* Ensures the last column is aligned right */
}

.index-modal-content table td {
    white-space: nowrap; /* Prevents wrapping of cell content */
}

.index-modal-content img {
	width: 100%;
}