@import url('https://fonts.googleapis.com/css2?family=Love+Light&family=Ms+Madi&display=swap');
@import "./assets/fonts/Satoshi_Complete/WEB/css/satoshi.css";

:root {
	--col1: #00A99D;
	--col2: #f3f4f4;
    --col3: #fff;
	--col4: #0f0f0f;
	--col5: #0f1010;
	--font1: "Ms Madi", sans-serif;
	--font2: "Love Light", cursive;
}

*,
*::before,
*::after {
	margin: 0;
  	padding: 0;
	box-sizing: border-box !important;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	background-color: var(--col3);
	overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Satoshi-Bold", sans-serif;
	font-weight: 500;
}

p, ul, ol, a, span {
	font-family: 'Satoshi-Regular', sans-serif;
}

a {
	text-decoration: none;
}

.bg-teal {
	background-color: var(--col1);
}

.max-w {
	width: max-content;
}

.text-justify {
	text-align: justify;
}

/* Preloader */
#preloader {
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: var(--col1);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	transition: opacity 0.64s ease, visibility 0.64s ease;
}

#preloader.fade-out {
	opacity: 0;
	visibility: hidden;
}


/* Navbar Style */
.navbar {
	margin: 0 auto;
	background-color: var(--col1);
	z-index: 9;
}

.nav-link,
.navbar-brand {
	color: var(--col3) !important;
	cursor: pointer;
}

.navbar-brand,
.navbar-brand span {
	font-family: "Ms Madi", sans-serif;
	font-size: 28px;
}

.navbar-brand .name-animation {
	width: 172px;
}

.navbar-brand .text {
	font-family: "Ms Madi", sans-serif;
	display: none;
	font-size: 28px;
	animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(243, 244, 244, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
	font-size: 16px;
	padding: 0px 3px 0px 3px;
	margin-right: 15px;
}

.nav-link:hover {
	text-decoration: underline solid 1px var(--col2);
}

.nav-icon i {
	color: var(--col2);
	font-size: 20px;
	transition: transform 0.5s ease-out;
}

.nav-icon i:hover {
	opacity: 0.70;
}

.nav-icon:nth-child(1) {
	margin-right: 15px;
}

.menu-btn {
	display: none;
	background-color: transparent;
	border: none;
}

.offcanvas-nav {
	display: none;
	background-color: var(--col5);
	color: var(--col2);
}

.offcanvas-links h1 {
	font-size: 32px;
}

.offcanvas-links a {
	color: var(--col1);
}

.offcanvas-links a:hover {
	color: var(--col2);
}


@media screen and (max-width: 991px) {	
	.big-nav {
		display: none;
	}

	.menu-btn {
		display: block;
	}

	.offcanvas-nav {
		display: block;
	}

	.nav-link {
		padding-left: 10px;
	}
    
    .nav-item {
		padding-bottom: 7px;
	}
}

@media screen and (max-width: 767px) {
	.navbar .container {
		padding-inline: 0px;
	}

	.navbar-brand {
		margin-left: 16px;
	}

	.navbar-toggler {
		margin-right: 16px;
	}

	.nav-item {
		padding-left: 12px;
	}

	.nav-link {
		font-size: 18px;
	}
}

@media screen and (max-width: 575px) {
	.navbar-nav {
		border-top: solid 1px #65010139;
		padding-top: 7px;
	}
}


/* HERO */
.hero {
	background-color: var(--col1);
	color: var(--col4);
	font-family: var(--font1);
}

.hero .container-fluid {
	background-color: var(--col2);
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	position: relative;
}

.hero .overlay {
	position: relative;
	height: 88vh;
}

.hero h1 {
    color: var(--col1);
}

.hero-text {
	position: absolute;
}

.hero-text.hero-text-1 {
	left: 200px;
	bottom: 120px;
	width: 250px;
}

.hero-text.hero-text-2 {
	right: 144px;
	top: 150px;
	width: 280px;
	display: flex;
}

.hero-text.hero-text-3 {
	right: 200px;
	bottom: 54px;
	width: 250px;
}

.material-symbols-outlined.asterisk,
.material-symbols-outlined.flare {
	font-size: 48px;
	margin-top: -20px;
	color: var(--col1);
}

.hero-img {
	text-align: center;
}
.hero-img-2 {
	display: none;
}
@media screen and (max-width: 767px) {
	.hero-img-1 {
		display: none;
	}
	.hero-img-2 {
		display: block;
	}
	.hero-img-2 img {
		width: 68%;
	}
}
@media screen and (max-width: 576px) {
	.hero-img-2 img {
		width: 87%;
	}
}
@media screen and (max-width: 390px) {
	.hero .overlay {
		height: 78vh;
	}
	.hero .sound-wave {
		top: -72px;
	}
	.hero-img-2 img {
		width: 400px;
	}
	.hero-img-2 {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media screen and (max-width: 1115px) {
	.hero-text.hero-text-1 {
		left: 108px;
		bottom: 120px;
	}
	
	.hero-text.hero-text-2 {
		right: 72px;
		top: 150px;
	}
	
	.hero-text.hero-text-3 {
		right: 114px;
		bottom: 54px;
	}
}

@media screen and (max-width: 991px) {
    .hero-text.hero-text-1 {
		left: 32px;
		bottom: 72px;
	}
	
	.hero-text.hero-text-2 {
		right: 20px;
		top: 120px;
	}
	
	.hero-text.hero-text-3 {
		right: 40px;
		bottom: 40px;
	}
}

@media screen and (max-width: 890px) {
	.hero-text {
		font-size: 14px;
	}

	.hero-text.hero-text-1 {
		left: 32px;
		bottom: 72px;
		width: 200px;
	}
	
	.hero-text.hero-text-2 {
		right: 20px;
		top: 96px;
		width: 232px;
	}
	
	.hero-text.hero-text-3 {
		right: 28px;
		bottom: 40px;
		width: 200px;
	}
}

@media screen and (max-width: 740px) {
	.hero-text.hero-text-2 {
		top: 72px;
	}

	.hero-text.hero-text-3 {
		bottom: 20px;
	}
}


@media screen and (max-width: 684px) {
	.hero-text.hero-text-1 {
		left: 32px;
		top: 72px;
		width: 180px;
	}

	.hero-text.hero-text-2 {
		flex-direction: row-reverse;
		text-align: end;
	}

	.hero-text.hero-text-3 {
		right: 0;
		bottom: 0;
		width: 160px;
	}
}

@media screen and (max-width: 510px) {
	.hero-text.hero-text-1 {
		left: 0;
		right: 0;
		top: 16px;
		margin-left: auto;
  		margin-right: auto;
		width: 240px;
		text-align: center;
	}

	.hero-text.hero-text-1 h1 {
		font-size: 48px;
	}

	.hero-text.hero-text-1 p {
		font-size: 18px;
	}

	.hero-text.hero-text-2 {
		display: none;
	}

	.hero-text.hero-text-3 {
		display: none;
	}
}

/* HERO AUDIO EXPERIENCE */
.hero .custom-audio-player {
	position: absolute;
	display: inline-block;
	background: white;
	bottom: -72px;
  	left: 50%;
  	transform: translateX(-50%);
	width: 108px;
	padding-top: 16px;
	padding-bottom: 12px;
	font-family: 'Satoshi-Regular', sans-serif;
	text-align: center;
	border-radius: 16px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.hero .play-btn {
	background: #111;
	color: white;
	border: none;
	padding: 8px 12px;
	font-size: 20px;
	border-radius: 50%;
	cursor: pointer;
}

.hero .play-btn i {
	pointer-events: none;
}

.hero .audio-timer {
	margin-top: 10px;
	font-size: 12px;
	color: var(--col5);
}


/* HEALING-JOURNEY */
.healing-journey {
	background: linear-gradient(to bottom right, #0f0f0f, #0f0f0f);
	font-family: 'Satoshi-Regular', sans-serif;
	text-align: center;
	z-index: 0;
}

.healing-journey .video-wrapper video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	z-index: 1;
	object-fit: cover;
	opacity: 0.35;
}

.healing-journey .container {
	position: relative;
	z-index: 2;
}

.healing-journey .container h1 {
	color: var(--col2);
	font-family: "Satoshi-Medium", sans-serif;
	font-size: 2.4rem;
}


/* JEJELI */
.jejeli {
	background-color: var(--col1);
}

.jejeli h1, 
.jejeli h1 span {
	color: var(--col2);
	font-family: var(--font2);
	font-size: 44px;
}

.jejeli i {
	font-size: 40px;
}

@media screen and (max-width: 400px) {
	.jejeli h1, 
	.jejeli h1 span {
		font-size: 36px;
	}
	.jejeli i {
		font-size: 32px;
	}
}

.jejeli .latest-song-cover img {
	width: 520px;
	box-shadow: 10px 10px 32px 0px rgba(196,193,193,0.08);
	-webkit-box-shadow: 10px 10px 32px 0px rgba(196,193,193,0.08);
	-moz-box-shadow: 10px 10px 32px 0px rgba(196,193,193,0.08);
}

@media screen and (max-width: 540px) {
	.jejeli .latest-song-cover img {
		width: 384px;
	}
}

@media screen and (max-width: 420px) {
	.jejeli .latest-song-cover img {
		width: 320px;
	}
}

@media screen and (max-width: 350px) {
	.jejeli .latest-song-cover img {
		width: 280px;
	}
}

/* JEJELI FANCYBOX */
/* .jejeli .fancybox {
	width: 68%;
}

@media screen and (max-width: 991px) {
	.jejeli .fancybox {
		width: 87%;
	}
}

@media screen and (max-width: 767px) {
	.jejeli .fancybox {
		width: 96%;
	}
}

.jejeli .fancybox .jejeli-img-2 {
	display: none;
}
@media screen and (max-width: 576px) {
	.jejeli .fancybox .jejeli-img-1 {
		display: none;
	}
	.jejeli .fancybox .jejeli-img-2 {
		display: block;
	}
}

.jejeli .play-div {
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}

.jejeli .play-div span {
	color: var(--col2);
	font-size: 68px;
}

.jejeli h6 {
	background: rgba(0, 0, 0, 0.5);
	color: var(--col2);
	font-size: 1rem;
	bottom: 8px;
	left: 12px;
} */

/* PLAYLIST */
.playlist .playlist-col {
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 767px) {
	.playlist .playlist-col {
		padding-bottom: 40px;
		flex-direction: column-reverse;
	}
}

.playlist h1 {
	color: var(--col1);
}

.playlist .container-1 img {
	border-radius: 8px;
	box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
	width: 92%;
}

.playlist .container-2 {
	display: none;
}
@media screen and (max-width: 576px) {
	.playlist .container-1 {
		display: none;
	}
	.playlist .container-2 {
		display: block;
	}
}

.playlist .container-2 .ply-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* QUOTE */
.quote {
	background-color: var(--col5);
	color: var(--col2);
	font-family: 'Satoshi-Regular', sans-serif;
}

.quote .overlay {
	color: var(--col1);
}

.quote .quote-txt {
	font-family: "Satoshi-Regular", sans-serif;
	color: var(--col2);
}

.quote h1 {
	font-family: var(--font1);
	color: var(--col2);
}


/* GALLERY */
.gallery .wrapper {
	display: flex;
	width: 100%;
	height: 440px;
}
.gallery .wrapper .wrapper1,
.gallery .wrapper .wrapper2 {
	display: flex;
	width: 50%;
}
.gallery .wrapper .column1 {
	background: url('https://theoreoluwadavid.com/wp-content/uploads/2025/07/1000001142.jpg') no-repeat center bottom/cover;
	width: 50%;
	height: 100%;
}
.gallery .wrapper .column2 {
	background: url('https://theoreoluwadavid.com/wp-content/uploads/2025/07/gallery-tod1.jpg') no-repeat center bottom/cover;
	width: 50%;
	height: 100%;
}
.gallery .wrapper .column3 {
	background: url('https://theoreoluwadavid.com/wp-content/uploads/2025/07/gallery-tod3.jpg') no-repeat center bottom/cover;
	width: 50%;
	height: 100%;
}
.gallery .wrapper .column4 {
	background: url('https://theoreoluwadavid.com/wp-content/uploads/2025/07/gallery-tod2.jpg') no-repeat center bottom/cover;
	width: 50%;
	height: 100%;
}
@media screen and (max-width: 767px) {
	.gallery .wrapper {
		height: 720px;
		flex-direction: column;
	}
	.gallery .wrapper .wrapper1,
	.gallery .wrapper .wrapper2 {
		height: 360px;
		width: 100%;
	}
	.gallery .wrapper .column1,
	.gallery .wrapper .column2,
	.gallery .wrapper .column3,
	.gallery .wrapper .column4 {
		background-position: top;
		width: 50%;
	}
}
@media screen and (max-width: 400px) {
	/* .gallery .wrapper {
		flex-direction: column;
		height: 720px;
	}
	.gallery .wrapper .column1,
	.gallery .wrapper .column2 {
		background-position: top;
		width: 100%;
	} */
}


/* DNA SERVICES */
.dna-services h1,
.dna-services .card-sect i {
	color: var(--col1);
}

.dna-services .card {
	margin-left: auto;
	margin-right: auto;
}


/* EMAIL SIGNUP */
.email-signup .send-icon {
	width: 96px;
	transform: rotate(135deg);
	margin-top: -24px;
	left: 46%;
}
@media screen and (max-width: 1115px) {
	.email-signup .send-icon {
		left: 45%;
	}
}
@media screen and (max-width: 767px) {
	.email-signup .send-icon {
		left: 43%;
	}
}
@media screen and (max-width: 650px) {
	.email-signup .send-icon {
		left: 42%;
	}
}
@media screen and (max-width: 568px) {
	.email-signup .send-icon {
		left: 41%;
	}
}
@media screen and (max-width: 408px) {
	.email-signup .send-icon {
		left: 37%;
	}
}
@media screen and (max-width: 340px) {
	.email-signup .send-icon {
		left: 36%;
	}
}


/* Footer */
footer {
	background-color: var(--col5);
	color: var(--col2);
}

.footer .row {
	padding-top: 48px;
	padding-bottom: 72px;
}

footer .name {
	font-family: var(--font1);
	font-size: 63px;
	color: var(--col1);
	line-height: 0.7;
}

footer p,
footer ul li a {
	font-family: 'Satoshi-Regular', sans-serif;
    color: var(--col2);
}

footer ul li a:hover {
	color: var(--col1);
	text-decoration: underline solid 1px var(--col1);
    transition: 0.5s;
}

footer .social .footer-icon {
	width: 40px;
	padding: 0 2px;
}

footer .social a i {
    color: var(--col2);
}

footer .social a i:hover {
    color: var(--col1);
    transition: 0.5s;
}

footer hr {
    width: 87%;
}

.copyright,
.copyright a{
    color: var(--col2);
	font-family: 'Satoshi-Regular', sans-serif;
	font-size: 16px;
}

@media screen and (max-width: 575px) {
	.col-footer:nth-child(1),
	.col-footer:nth-child(3) {
		width: 60%;
	}
	.col-footer:nth-child(2),
	.col-footer:nth-child(4) {
		width: 40%;
	}
	.col-footer:nth-child(1),
	.col-footer:nth-child(2) {
		margin-bottom: 40px;
	}

	.col-footer h6 {
		font-size: 20px;
	}
}

@media screen and (max-width: 532px) {
	.col-footer {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.col-footer:nth-child(1),
	.col-footer:nth-child(2),
	.col-footer:nth-child(3),
	.col-footer:nth-child(4) {
		width: 100%;
	}
	.col-footer:nth-child(3) {
		margin-bottom: 40px;
	}
}


/* DNA-SOUND-DEN POPUP */
.dnasoundden-popup {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 88px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.dnasoundden-popup .popup-content {
	position: relative;
	background-color: var(--col2);
	margin: auto;
	padding: 0;
	border-radius: 12px;
	width: 50%;
    height: 320px;
	box-shadow: 12px 10px 76px -17px rgba(182,193,196,0.35);
	-webkit-box-shadow: 12px 10px 76px -17px rgba(182,193,196,0.35);
	-moz-box-shadow: 12px 10px 76px -17px rgba(182,193,196,0.35);
	animation-name: animatetop;
	animation-duration: 0.8s
}
@media screen and (max-width: 991px) {
    .dnasoundden-popup .popup-content {
        width: 75%;
    }
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}
@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.dnasoundden-popup .popup-bg-video {
	height: 100%;
	width: 560px;
	overflow: hidden;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.dnasoundden-popup .popup-bg-video video {
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover; 
}

.dnasoundden-popup .popup-body {padding: 2px 16px;}
.dnasoundden-popup .btn-row {margin-top: 16px;}

@media screen and (max-width: 576px) {
    .dnasoundden-popup {
        padding-top: 54px;
    }
    .dnasoundden-popup .popup-content {
        flex-direction: column;
        height: 440px;
        width: 88%;
    }
    .dnasoundden-popup .popup-bg-video {
        width: 100%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 0px;
        border-top-right-radius: 12px;
    }
    .dnasoundden-popup .popup-body {padding: 0 12px;}
    .dnasoundden-popup h3 {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 4px;
    }
    .dnasoundden-popup p {font-size: 13px;}
    .dnasoundden-popup .btn-row {margin-top: 4px;}
    .dnasoundden-popup .btn--2 {font-size: 14px;}
}


/* OTHER PAGES STYLE */
.page-heading {
	background-color: var(--col5);
	color: var(--col2);
}


/* SONG-CUSTOMIZED PAGE */
.song .lt h1 {
	color: var(--col1);
	font-size: 2.8rem;
}

.song .rt {
	padding-top: 40px;
}

.song .song-cover {
	border-radius: 8px;
	box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
	width: 96px;
	height: auto;
	padding: 0;
	margin: auto;
}

.song .preview-audio {
	font-family: "Satoshi-Regular", sans-serif;
	background-color: #282828;
	color: var(--col1);
	border-radius: 10px;
	max-width: 350px;
}

.song .btn-group-vertical {
	width: 328px;
}

.song .song-stream-link {
	padding: 8px;
}

.song .song-stream-link:nth-child(odd) {
	background-color: #1d1e1e;
}

.song .song-stream-link:nth-child(even) {
	background-color: #282828;
}

.song .song-stream-link .sslink-img {
	width: 40px;
	text-align: center;
}

.song .song-stream-link img {
	width: 28px;
}

.song .song-stream-link .sslink-rt {
	width: 288px;
	font-family: 'Satoshi-Regular', sans-serif;
}

.song .song-stream-link .bi-arrow-right {
    transform: translateX(-8px);
    transition: transform 0.35s ease;
}
.song .song-stream-link:hover .bi-arrow-right {
    transform: translateX(0);
}

@media screen and (max-width: 420px) {
	.song .song-cover {
		width: 84px;
	}
	.song .btn-group-vertical {
		width: 90%;
	}
}

.small-icon {
	width: 32px;
	padding-left: 1px;
	padding-right: 1px;
}


/* PLAYLIST PAGE */
.playlist .btn-group-vertical {
	width: 68%;
}

.playlist .playlist-song {
	padding: 12px;
	width: 100%;
	font-size: 18px;
	border: none;
}

.playlist .playlist-song .playlist-song-cover {
	width: 10%;
}

.playlist .playlist-song .playlist-song-cover img {
	width: 40px;
	border-radius: 4px;
}

.playlist .playlist-song .playlist-song-rt {
	width: 90%;
	font-family: 'Satoshi-Regular', sans-serif;
	opacity: 0.7;
}

.playlist .playlist-song .playlist-song-rt a {
	color: var(--col2);
}

.playlist .playlist-song .bi-arrow-right {
    transform: translateX(-8px);
    transition: transform 0.35s ease;
}
.playlist .playlist-song:hover .bi-arrow-right {
    transform: translateX(0);
}

@media screen and (max-width: 767px) {
	.playlist .btn-group-vertical {
		width: 88%;
	}
}

@media screen and (max-width: 476px) {
	.playlist .btn-group-vertical {
		width: 96%;
	}

	.playlist .playlist-song .playlist-song-cover {
		width: 15%;
	}
	
	.playlist .playlist-song .playlist-song-rt {
		width: 85%;
	}
}

  
  