/* ===========================
   Global Reset & Layout
   =========================== */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
	position: relative;
	scrollbar-width: none;
}

/* ===========================
   Carousel / Slider Styling
   =========================== */
.carousel-item,
.carousel-item img {
	height: 100vh;
	width: 100%;
	object-fit: cover;
}

/* ===========================
   Carousel Indicators
   =========================== */
.carousel-indicators {
	position: absolute;
	bottom: 3%;
	transform: translateX(-45%);
	flex-direction: row;
	margin: 0;
}
.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.6;
	margin-left: 15px;
}
.carousel-indicators .active {
	opacity: 1;
	background-color: #000;
}

/* ===========================
   Slide Counter
   =========================== */
.slide-counter {
	position: absolute;
	right: 2vw;
	bottom: 1vh;
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 35px;
}
.slide-counter .active-count {
	font-size: 40px;
	font-weight: bold;
}
.slide-counter .total-count {
	font-size: 20px;
	opacity: 0.8;
}

/* ===========================
   Decorative Carousel Lines
   =========================== */
.carousel-lines::before {
	position: absolute;
	top: 100vh;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}
.carousel-lines .line-left,
.carousel-lines .line-right {
	position: absolute;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
}
.carousel-lines .line-left {
	left: 20%;
}
.carousel-lines .line-right {
	right: 20%;
}
.carousel-lines .line-top,
.carousel-lines .line-bottom {
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.5);
}
.carousel-lines .line-top {
	top: 15vh;
}
.carousel-lines .line-bottom {
	bottom: 15vh;
}

/* ===========================
   Logo Placement
   =========================== */
.logo {
	position: absolute;
	top: 1.5vh;
	left: 6.5vw;
	z-index: 1098;
	border-radius: 8px;
	padding: 6px 12px;
}
.logo img {
	object-fit: contain;
}
@media (max-width: 576px) {
	.logo {
		padding: 4px 8px;
	}
	.logo img {
		height: 24px !important;
	}
}

/* ===========================
   Center Overlay Text
   =========================== */
.slider-text-overlay {
	position: absolute;
	top: 40vh;
	z-index: 2000;
	text-align: center;
	pointer-events: none;
	width: 100vw;
}
.slider-text-overlay h2 {
	font-size: 6vw;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	font-family: "Sofia", Fantasy;
	color: rgba(255, 255, 255, 0.50);
	text-transform: uppercase;
}
.slider-text-overlay .startproject {
	position: absolute;
	top: 50vh;
	left: 40vw;
	font-size: 1.5vw;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	font-family: "Sofia", Fantasy;
	color: #fff;
	text-transform: uppercase;
	width: 100vw;
}

@media (max-width: 768px) {
	.slider-text-overlay h2 {
		font-size: 1.6rem;
	}
}
@media (max-width: 576px) {
	.slider-text-overlay h2 {
		font-size: 1.2rem;
	}
}

/* ===========================
   Top Right Menu (Hamburger)
   =========================== */
.top-right-icons {
	position: absolute;
	top: 3vh;
	right: 0.3vw;
	z-index: 1098;
	border-radius: 8px;
	padding: 6px 10px;
	color: rgba(255, 255, 255, 0.20);
}
.top-right-icons button {
	color: #fff;
	border: none;
	background: transparent;
}
@media (max-width: 576px) {
	.top-right-icons {
		top: 10px;
		right: 10px;
		padding: 4px 8px;
	}
}

/* ===========================
   Transparent Offcanvas Menu
   =========================== */
#offcanvasMenu {
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	backdrop-filter: blur(10px);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	width: 20vw;
	z-index: 2001;
}
#offcanvasMenuLabel {
	color: white;
	font-weight: 600;
	font-size: 1.25rem;
}
#offcanvasMenu.text-bg-dark {
	background-color: transparent !important;
}
#offcanvasMenu .nav-link:hover {
	color: #f0f0f0;
	text-decoration: underline;
}
#offcanvasMenu .offcanvas-header img {
	position: absolute;
	top: 2vh;
	width: 30px;
	transform: translateX(15vw);
	cursor: pointer;
	filter: brightness(0) invert(1);
}

/* ===========================
   Social Media Icons
   =========================== */
.social-media-icons {
	position: absolute;
	width: 3%;
	top: 35vh;
	left: 4vw;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1060;
}
.social-media-icons a {
	color: white;
	font-size: 15px;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 13px;
	border-radius: 50%;
	text-align: center;
	transition: all 0.3s ease;
}
.social-media-icons a:hover {
	background-color: #fff;
	color: #000;
}

/* ===========================
   Typography and Containers
   =========================== */
.container {
	padding: 60px 0;
	background-color: #f9f9f9;
	border-radius: 12px;
}
h2 {
	font-size: 2rem;
	font-weight: 700;
	color: #222;
}
h2.h4 {
	font-size: 1.5rem;
	color: #333;
}
p {
	font-size: 1rem;
	color: #555;
	line-height: 1.7;
}
.text-md-start h2 {
	color: #111;
	border-left: 5px solid #ffc107;
	padding-left: 15px;
}
@media (max-width: 768px) {
	h2 {
		font-size: 1.75rem;
	}
}

/* ===========================
   Portfolio & Filters
   =========================== */
.portfolio{
	position: absolute;	
}
.portfolio-item {
	display: none;
	transition: transform 0.3s ease;
}
.portfolio-item.show {
	display: block;
	animation: fadeIn 0.4s ease-in-out;
	padding: 10px;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
.filter-btn {
	text-transform: uppercase;
	position: relative;
	top: 15vh;
	background: transparent;
	color: #999;
	border: 2px solid;
	border-radius: 0 !important;
	padding: 10px 24px;
	font-weight: 500;
	margin: 0 5px;
	transition: all 0.3s ease;
}
.filter-btn:hover {
	color: #d4af37 !important;
}
.filter-btn.active {
	color: #d4af37 !important;
	border-color: #d4af37 !important;
}
.protfolio-text {
	position: relative;
	text-transform: uppercase;
	text-align: center;
	top: 10vh;
	font-size: 3.5rem;
	font-weight: 600;
	color: #d4af37;
}
.portfolio-container {
	width: 80%;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 60px;
}
.portfolio-box {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
	border-radius: 10px;
	box-shadow: 5px 5px 5px #ccc;
}
.portfolio-box img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.portfolio-box:hover img {
	transform: scale(1.05);
}
.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	color: #fff;
	transition: opacity 0.3s ease;
}
.portfolio-overlay h5 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* Decorative Lines */
.Portfolio-lines::before {
	position: relative;
}
.Portfolio-line-left,
.Portfolio-line-right {
	position: absolute;
	top: 0;
	width: 1px;
	height: 150%;
	background-color: rgba(0, 0, 0, 0.5);
}
.Portfolio-line-left {
	left: 10%;
}
.Portfolio-line-right {
	right: 10%;
}
