@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
/**********************************/
/*PRE DEFINES*/
/**********************************/
:root {
	--color-black: #000000;
	--color-light1A: #1A1A1A;
	--color-white: #FFFFFF;
	--color-white80: #FFFFFFCC;
	--color-brown: #C5B8A8;
	--color-black22: #222222;
	--color-grey-66 : #666666;
	--color-grey-99: #999999;
	--font-mono: "Roboto Mono", monospace;
}
body {
	font-family: var(--font-mono);
	overflow-x: hidden;
}
.container-1280 {
	max-width: 1280px;
	margin: 0 auto;
	width: 92%;
}
.container-1152 {
	max-width: 1152px;
	margin: 0 auto;
	width: 92%;
}
.f-60-w {
	color: var(--color-white);
	font-size: 60px;
	font-weight: 400;
	letter-spacing: 12px;
}
.f-60-b {
	color: var(--color-black22);
	font-size: 60px;
	font-weight: 400;
	letter-spacing: 12px;
}
.f-24-b {
	font-size: 24px;
	line-height: 32px;
	font-weight: 400;
	color: var(--color-black22);
}
.f-20-b {
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
	color: var(--color-black22);
}
.f-18-w {
	color: #FFFFFFCC;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}
.f-18-g {
	color: var(--color-grey-66);
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}
.f-16-w {
	color: #FFFFFFCC;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}
.f-16-g {
	color: #999999;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}
.f-14-b {
	color: #2A2A2A;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.35px;
	transition: .3s;
}
.f-14-b a {
	color: #2A2A2A;
	text-decoration: none;
}
.mt-385 {
	padding-top: 325px;
}
.mt-185 {
	margin-top: 185px;
}
.mt-112 {
	margin-top: 112px;
}
.mt-80 {
	margin-top: 80px;
}
.mt-64 {
	margin-top: 64px;
}
.pb-80 {
	padding-bottom: 80px;
}
.mt-48 {
	margin-top: 48px;
}
.mt-32 {
	margin-top: 32px;
}
.mb-24 {
	margin-block: 24px;
}
/**********************************/
/*HEADER*/
/**********************************/
.set-bg-navbar {

	padding: 32px 80px;
	transition: all 0.4s ease;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}
.set-bg-brown {
	background: var(--color-brown);
}
/* White background after scrolling */
.set-bg-navbar.scrolled  {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.set-bg-navbar.scrolled .nav-item .nav-link {
	color: var(--color-black22);
}
.set-bg-navbar.scrolled .nav-item .nav-link:hover {
	color: var(--color-black22);
}
/* Hide navbar when scrolling down */
.set-bg-navbar.hide {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
/* Show navbar when scrolling up */
.set-bg-navbar.show {
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.set-bg-navbar .black-arrow {
	display: none;
}
.set-bg-navbar.scrolled .white-arrow {
	display: none;
}
.set-bg-navbar.scrolled .black-arrow {
	display: inline-block;
}

.set-bg-navbar .nav-item .nav-link {
	font-size: 16px;
	letter-spacing: 0.8px;
	transition: .3s;
	color: var(--color-white80);
	padding: 10px 12px;
	font-weight: 400;
	gap: 12px;
}
.set-bg-navbar .nav-item .nav-link img {
	transition: .3s;
	opacity: 0;
}
.set-bg-navbar .nav-item .nav-link:hover {
	color: var(--color-white);
	transition: .3s;
	transform: translateY(-2px);
}
.set-bg-navbar .nav-item .nav-link:hover img {
	opacity: 1;
	transition: .3s;
}
.set-round-social {
	background-color: var(--color-black);
	border-radius: 50px;
	padding: 8px 16px;
}
.set-round-social a {
	color: #FFFFFFB2;
	transition: .3s;
}
.set-round-social a:hover {
	color: var(--color-white);
	transition: .3s;
}
.set-round-social a i {
	font-size: 28px;
}
/**********************************/
/*HERO SECTION*/
/**********************************/
.set-main-hero {
	padding-top: 125px;
	background-color: var(--color-brown);
}
.set-content-desktop {
	min-height: calc(100vh - 110px);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.set-img-bg-overlay {
	position: absolute;
	bottom: 0px;
	right: 0;
	height: 100%;
	transition: .3s;
	max-width: 100%;
}
.set-img-bg-overlay:hover {
	transform: scale(1.02);
	transition: .3s;
}
.set-btn-link:hover {
	transform: translateX(10px);
	transition: .3s;
}
/**********************************/
/*BIO*/
/**********************************/
.set-main-bio {
	background-color: #1A1A1A;
}
/**********************************/
/*GALERIA*/
/**********************************/
.set-img-gallery {
	transition: .3s;
	opacity: 1;
	cursor: pointer;
}
.set-img-gallery:hover {
	transition: .3s;
	opacity: 0.8;
}
/**********************************/
/*MULTIMEDIA*/
/**********************************/
.set-iframe-box {
	border-top: 1px solid #E5E7EB;
	box-shadow: 0px 25px 50px -12px #00000040;
	background-color: #F3F4F6;
	border-radius: 16px;
	padding: 32px;
	max-width: 896px;
	margin-left: auto;
	margin-right: auto;
}
.set-container-cards {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
}
.set-inner-social-card div {
	height: 136px;
	width: 134px;
	border-radius: 14px;
	background-color: var(--color-white);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	border: 2px solid #DDDDDD;
	transition: .3s;
	color: #222222;
	flex-shrink: 0;
}
.set-inner-social-card div:hover {
	transform: translateY(-2px);
	transition: .3s;
	background-color: var(--color-black22);
	color: var(--color-white);
	border: 2px solid  var(--color-black22);
}
.set-inner-social-card div:hover .f-14-b {
	color: var(--color-white);
}
.set-inner-social-card div:hover svg path {
	fill: var(--color-white);
}
.set-inner-social-card {
	text-decoration: none;
	display: block;
}
.set-inner-social-card i {
	font-size: 32px;
}
.set-inner-social-card .special-music:hover svg path {
	fill: var(--color-white);
}
/**********************************/
/*INSTAGRAM*/
/**********************************/
.set-insta-section {
	background-color: #1A1A1A;
	padding: 80px 0px;
}
.set-insta-gallery {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}
.outer-anchor-insta {
	height: 230px;
	width: 230px;
	border-radius: 16px;
	overflow: hidden;
	transition: .3s;
	margin-top: 8px;
}
.outer-anchor-insta:hover {
	transition: .5s;
	transform: translateY(-2px);
}
.set-insta-gallery a {
	display: block;
	transition: .5s;
	height: 100%;
	width: 100%;
}
.set-insta-gallery a img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.set-insta-gallery a:hover {
	transform: scale(1.1);
	transition: .5s;
}
.set-btn-insta {
	border: 1px solid #FFFFFF33;
	padding: 13px 25px;
	margin-top: 45px;
	display: inline-block;
	text-decoration: none;
	transition: .3s;
	color: #FFFFFF80;
}
.set-btn-insta:hover {
	color: #ffffffb0;
	transition: .3s;
	transform: translateY(-2px);
}
/**********************************/
/*ORGANIZATOR*/
/**********************************/
.set-table-830 {
	max-width: 830px;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0px 10px 15px -3px #0000001A;
	border-top: 1px solid #E5E7EB;
	border-radius: 12px;
	overflow: hidden;
}
.set-table-830 table tr th {
	color: #666666;
	font-size: 12px;
	background-color: #F9FAFB;
	font-weight: 400;
	text-transform: uppercase;
	padding: 10px 20px;
}
.set-table-830 table tr td {
	color: #666666;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 10px 20px;
	border-bottom: 1px solid #F3F4F6;
}
.set-table-830 table tr td:hover {
	background-color: #F9FAFB;
}
.set-table-830 table tr:hover {
	background-color: #F9FAFB;
}
.set-bg-grey {
	height: 56px;
	width: 56px;
	border-radius: 12px;
	overflow: hidden;
	background-color: #F3F4F6;
}
.set-bg-grey img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.set-max-830 {
	max-width: 830px;
	margin-left: auto;
	margin-right: auto;
}
.set-max-830 p {
	color: #222222;
	text-align: center;
}
.set-max-830 p a {
	color: #222;
}
.navbar-toggler {
	border: none;
}
.navbar-toggler:focus {
	box-shadow: none;
}
/**********************************/
/*FOOTER*/
/**********************************/
footer {
	background-color: var(--color-black22);
	padding: 64px 0px 24px 0px;
}
.container-896 {
	max-width: 896px;
	width: 92%;
	margin: 0 auto;
}
.f-14-60 {
	color: #FFFFFF99;
	font-size: 14px;
	font-weight: 400;
}
.f-14-60 a {
	color: #FFFFFF99;
}
.f-14-60 a:hover {
    color: #ffffffb0;
    transition: .3s;
    transform: translateY(-2px);
}
.set-link-sections {
	text-align: center;
}
.set-link-sections a {
	font-size: 14px;
	color: #FFFFFFCC;
	font-weight: 400;
	transition: .3s;
	display: inline-block;
	text-decoration: none;
	padding: 14px;
}
.set-link-sections img {
	transition: .3s;
	opacity: 0;
}
.set-link-sections a:hover img {
	opacity: 1;
	transition: .3s;
}

.set-round-social-ftr {
	text-align: center;
	border-radius: 50px;
	padding: 8px 16px;
}
.set-round-social-ftr a {
	color: #FFFFFFB2;
	transition: .3s;
}
.set-round-social-ftr a:hover {
	color: var(--color-white);
	transition: .3s;
}
.set-round-social-ftr a i {
	font-size: 28px;
}
.f-12-40 {
	font-size: 12px;
	color: #FFFFFF66;
	font-weight: 400;
}
.f-12-40 a {
	transition: .3s;
	color: #FFFFFF66;
}
.f-12-40 a:hover {
	color: #ffffffb0;
	transition: .3s;
}
.overflow-x-hidden {
	overflow-x: hidden;
}
/* width */
.overflow-x-hidden::-webkit-scrollbar {
  width: 0px;
}
html {
	scroll-behavior: smooth;
}
/**********************************/
/*MEDIA QUERY*/
/**********************************/
@media only screen and (max-width: 1321px) {
	.set-bg-navbar .nav-item .nav-link {
	    font-size: 15px;
	}
}
@media only screen and (max-width: 1024px) {
	.set-bg-navbar .nav-item .nav-link {
        font-size: 13px;
        padding: 10px 10px;
    }
    .set-bg-navbar {
	    padding: 32px 10px;
	}
	.f-60-w {
	    font-size: 45px;
	}
	.f-16-w {
	    font-size: 13px;
	    line-height: 22px;
	}
	.f-18-w {
	    font-size: 15px;
	    line-height: 26px;
	}
	.f-60-b {
	    font-size: 45px;
	}
	.f-18-g {
	    font-size: 15px;
	    line-height: 26px;
	}
	.f-24-b {
	    font-size: 20px;
	    line-height: 28px;
	}
	.f-16-g {
	    font-size: 14px;
	}
	.f-20-b {
	    font-size: 18px;
	    line-height: 28px;
	}
	.set-container-cards {
	    gap: 15px;
	}
}
@media only screen and (max-width: 991px) {
	.set-bg-navbar .nav-item .nav-link {
        font-size: 16px;
    }
    .set-bg-navbar.show {
        padding: 10px 10px;
    }
}
@media only screen and (max-width: 576px) {
	.set-bg-navbar.show {
        padding: 10px 0px;
    }
    .set-main-hero .f-14-b {
    	color: #fff;
    }
    .set-bg-navbar {
        padding: 12px 0px;
    }
    .mt-112 {
	    margin-top: 45px;
	}
	.f-60-w {
        font-size: 30px;
    }
    .pb-80 {
	    padding-bottom: 40px;
	}
	.img-fluid {
		width: 100%;
	}
	.f-60-b {
        font-size: 30px;
    }
    .set-iframe-box {
	    padding: 20px;
	}
	.f-20-b {
        font-size: 16px;
    }
    .outer-anchor-insta {
	    height: 165px;
	    width: 165px;
	    border-radius: 8px;
	    margin-top: 0px;
	}
	.set-insta-gallery {
	    gap: 8px;
	}
	.mt-48 {
	    margin-top: 35px;
	}
	.set-link-sections a {
		padding: 8px;
	}
	.f-12-40 {
		margin-bottom: 0px;
	}
	.f-14-b a {
		color: #fff;
		text-decoration: none;
	}
	.set-img-bg-overlay {
		height: auto;
	}
}

/* === DP ADDON: Lightbox + Hamburger(X) === */
.dp-no-scroll { overflow: hidden; }

/* Lightbox overlay */
.dp-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  padding: 24px;
}
.dp-lightbox.open { display: flex; }
.dp-lightbox__img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.dp-lightbox__close {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 24px;
  line-height: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.dp-lightbox__close:focus { outline: 2px solid #3b82f6; outline-offset: 2px; }

/* Mobile hamburger: default uses Bootstrap's .collapsed toggle.
   When NOT .collapsed (menu open), replace burger with an "X" glyph. */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background-image: none;
  width: auto; height: auto;
  position: relative;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  content: "✕";
  font-size: 28px;
  line-height: 1;
  color: #222;
}
/* if navbar has dark background, make X white for contrast */
.set-bg-navbar:not(.scrolled) .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  color: #fff;
}
