/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

a, a:hover, a:focus {
	outline: none !important;
	text-decoration: none !important;
}
a:active {color: #FFA500}

.column-space-top {padding-top: 140px}
.column-space-bottom {padding-bottom: 100px}

.width500-text-column {
	max-width: 500px;
	margin: auto
}
.color-text-white p, .color-text-white h1, .color-text-white h2, .color-text-white h3 {color: white}


/* --- HEADER --- */
#top-bar-wrap, #site-header {
	position: sticky;
	top: 0;
}
#site-header {
	top: 46px;
	box-shadow: 2px 5px 25px 2px rgb(158 158 158 / 12%);
}

#mobile-nav .current-menu-item a {color: #66c6b9;}
#mobile-fullscreen #mobile-search {max-width: 300px}

/* --- HERO SECTION --- */
.hero-section {position: relative;}

.hero-section h1 {font-size: 54px}

.hero-section .wp-block-column {z-index: 1}

.hero-section .hero-form-space {
	margin: 50px 0 50px !important;
    padding: 30px 35px 1px 35px;
	border-radius: 10px;
}
.background-overlay-black::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url(/wp-content/uploads/2025/03/DSAM-WordPress-website.webp);
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
}
.background-overlay-black::after {
	content: '';
	position: absolute;
	background-color: #000000;
    opacity: 0.7;
	height: 100%;
    width: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
}


/* --- TEXT ANIMATION --- */
@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.fadeInUp-animation {
  animation: 2.5s fadeInUp;
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.fadeInRight-animation {
  animation: 2.5s fadeInRight;
}


/* --- OUR WORKS SECTION --- */
.our-works-decor {
	border: solid 10px rgb(255 165 0 / 35%);;
	border-top-width: 20px;
	border-right-width: 4px;
	border-bottom-width: 4px;
	border-left-width: 20px;
	padding: 100px 20px 50px;
    border-radius: 20px 80px 20px 80px;
	font-size: 45px;
}
.wp-block-latest-posts__list li {
	padding: 1em 1em 0.5em 1em;
	border-radius: 5px;
	box-shadow: 2px 5px 25px 2px rgb(158 158 158 / 12%);
}

/* --- DIVIDER COLOR --- */
.divider-white, .divider-black {
	color: white;
	width: 100px;
    margin: 0 auto 30px;
}
.divider-black {color: black}

/* --- BUTTON --- */
.button-custom__page .wp-block-button__link, #nf-field-4 {
	font-size: 18px;
    padding: 25px 30px;
	font-weight: 400;
    border-radius: 20px 10px;
    box-shadow: 0px 1px 5px 0px rgb(255 255 255 / 50%) inset;
}
.button-custom__page .wp-block-button__link:hover, #nf-field-4:hover {
	border-radius: 10px 20px;
	background-color: #FFA500
}
.button-custom__page .wp-block-button__link:active, #nf-field-4:active {border-radius: 20px}

/* --- SINGLE POST || OUR WORKS --- */
.page-header {margin-bottom: 20px}

.site-breadcrumbs {margin-top: -10px;}




/* --- MOBILE --- */
@media (max-width: 1280px) {
	.hero-section h1 {font-size: 38px}
}

@media only screen and (max-width: 959px) {
	.site-breadcrumbs {margin-top: 8px}
}

@media (max-width: 781px) {
	#site-header {top: 69px}
}

@media (max-width: 480px) {
	.hero-section h1 {font-size: 28px}
	
	.hero-section .hero-form-space {
		margin: 0 0 20px 0 !important;
		padding: 20px 25px 1px 25px;
	}
	.hero-section .wp-block-column {margin-top: 20px}
	
	.our-works-decor {
		font-size: 35px;
		padding: 50px 10px 25px
	}
	
	.column-space-top {padding-top: 25px}
	.column-space-bottom {padding-bottom: 5px}
}



