/**
******************************************************************
*	CUSTOM STYLES FOR AFRICA STAIN GROUP
******************************************************************
*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* General responsive image rules */
img {
	max-width: 100%;
	height: auto;
}

/* Apply Dalek Pinpoint font to main heading */
.intro-text .main-text {
	font-family: 'Dalek Pinpoint', sans-serif !important;
	letter-spacing: 3px;
}

/* Logo responsive base styles */
.logo-responsive {
	width: auto;
	height: 100px;
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

/* Apply Dalek Pinpoint font to services list */
.services-list {
	font-family: 'Dalek Pinpoint', sans-serif !important;
	letter-spacing: 2px;
	font-size: 18px;
	margin-top: 25px;
	text-align: center;
}

/* Fun hover effects for services */
.service-item {
	display: inline-block;
	position: relative;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
}

.service-item.service-events {
	color: #ff6b35;
}

.service-item.service-tourism {
	color: #4ecdc4;
}

.service-item.service-creative {
	color: #95a5a6;
}

.service-item.service-foundation {
	color: #3498db;
}

.service-item:hover {
	transform: scale(1.2) rotate(2deg);
	text-shadow: 0 0 20px currentColor, 0 0 30px currentColor, 0 0 40px currentColor;
	filter: brightness(1.3);
	animation: pulse-glow 0.6s ease-in-out;
}

.service-events:hover {
	transform: scale(1.2) rotate(-2deg);
	text-shadow: 0 0 20px #ff6b35, 0 0 30px #ff6b35, 0 0 40px #ff6b35;
}

.service-tourism:hover {
	transform: scale(1.2) rotate(2deg);
	text-shadow: 0 0 20px #4ecdc4, 0 0 30px #4ecdc4, 0 0 40px #4ecdc4;
}

.service-creative:hover {
	transform: scale(1.2) rotate(-2deg);
	text-shadow: 0 0 20px #95a5a6, 0 0 30px #95a5a6, 0 0 40px #95a5a6;
}

.service-foundation:hover {
	transform: scale(1.2) rotate(2deg);
	text-shadow: 0 0 20px #3498db, 0 0 30px #3498db, 0 0 40px #3498db;
}

@keyframes pulse-glow {
	0% {
		transform: scale(1.1);
	}
	50% {
		transform: scale(1.25);
	}
	100% {
		transform: scale(1.2);
	}
}

/* Apply Dalek Pinpoint font to navigation buttons */
.dalek-font {
	font-family: 'Dalek Pinpoint', sans-serif !important;
	letter-spacing: 2px;
}

/* Apply Dalek Pinpoint font to countdown timer */
.clock.clock-1 .countdown-widget,
.clock.clock-1 .countdown-widget .inner-dash,
.clock.clock-1 .countdown-widget .digit,
.clock.clock-1 .countdown-widget .dash_title {
	font-family: 'Dalek Pinpoint', sans-serif !important;
}

/* Keep default font for description */
.intro-text .sub-text {
	font-family: inherit;
	color: #ffffff !important;
	opacity: 1 !important;
}

/* Apply Dalek Pinpoint font to footer */
.site-footer,
.site-footer p,
.site-footer a {
	font-family: 'Dalek Pinpoint', sans-serif !important;
	letter-spacing: 1px;
}

/* Add padding to home wrapper to prevent footer from overlapping buttons */
#home-wrapper {
	padding: 10px;
}

/* Ensure navigation buttons are above footer */
.navigation-wrp-1 {
	position: relative;
	z-index: 1001;
	/* margin-bottom: 10px; */
}

/* Make construction text visible */
.construction-text {
	position: relative !important;
	z-index: 1000 !important;
	visibility: visible !important;
	opacity: 1 !important;
	display: block !important;
	margin-bottom: 20px !important;
	text-align: center;
	color: #fff;
}

.construction-text h2 {
	color: #fff !important;
	opacity: 1 !important;
	visibility: visible !important;
	font-size: 20px;
	letter-spacing: 3px;
}

/* Footer spacing and styling */
.site-footer {
	/* position: relative; */
	/* display: block; */
	text-align: center;
	/* padding: 10px 15px; */
	background-color: #000;
	font-size: 11px;
	z-index: 999;
	color: #fff;
	border: none !important;
	border-top: none !important;
	border-bottom: none !important;
	border-left: none !important;
	border-right: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.site-footer a {
	margin: 0;
	color: rgba(255,255,255,0.9);
	text-decoration: none;
	margin: 5px;
}

/* Ensure social menu is always functional - don't interfere with visibility animations */
#ss_menu {
	z-index: 10001 !important;
	pointer-events: auto !important;
}

#ss_menu > a {
	z-index: 10002 !important;
	pointer-events: auto !important;
	display: table !important;
}

#ss_menu > .menu {
	z-index: 10003 !important;
	pointer-events: auto !important;
	display: block !important;
}

#ss_menu > .menu .share {
	pointer-events: auto !important;
	cursor: pointer !important;
}

/* Social menu mobile - horizontal list */
.social-menu-mobile {
	display: none; /* Hidden by default (desktop) */
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 30px;
	padding: 10px 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.social-menu-mobile a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin: 0 8px;
	color: #fff;
	text-decoration: none;
	border-radius: 50%;
	transition: all 0.3s ease;
	font-size: 18px;
}

.social-menu-mobile a:hover {
	transform: scale(1.2);
	opacity: 0.8;
}

.social-menu-mobile a i {
	display: inline-block;
	vertical-align: middle;
}

/* Apply Dalek font to titles in Services and Contact pages */
/* Page Services (PAGE LEFT) */
#page-left .title-wrp .title.mini,
#page-left .title-wrp .title,
#page-left .title-wrp .sub-title,
#page-left .info-box .info .hd,
#page-left .info-box h3 {
	font-family: 'Dalek Pinpoint', sans-serif !important;
	letter-spacing: 2px;
}

/* Make all text white in Services page */
#page-left p,
#page-left .large-text,
#page-left .content-wrp p,
#page-left .about-section-2 p,
#page-left .about-section-2 .large-text,
#page-left .work-section p,
#page-left .service-section p,
#page-left .info-box p,
#page-left .info-box .sub-txt,
#page-left .list-1 > li,
#page-left .list-1 > li strong,
#page-left strong {
	color: #ffffff !important;
}

/* Page Contact (PAGE RIGHT) */
#page-right .title-wrp .title.mini,
#page-right .title-wrp .title,
#page-right .title-wrp .sub-title {
	font-family: 'Dalek Pinpoint', sans-serif !important;
	letter-spacing: 2px;
}

/**
******************************************************************
*	DESKTOP LAYOUT 
******************************************************************
*/
@media (min-width: 1900px) {
	/* Large desktop styles */
	.intro-text img {
		height: 120px;
	}
}

@media (min-width: 1700px) and (max-width: 1899px) {
	/* Large desktop styles */
	.intro-text img {
		height: 110px;
	}
}

@media (min-width: 1500px) and (max-width: 1699px) {
	/* Desktop styles */
	.intro-text img {
		height: 100px;
	}
}

@media (min-width: 1300px) and (max-width: 1499px) {
	/* Desktop styles */
	.intro-text img {
		height: 95px;
	}
}

@media (min-width: 1200px) and (max-width: 1299px) {
	/* Desktop styles */
	.intro-text img {
		height: 90px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	/* Tablet landscape styles */
	.intro-text img {
		height: 85px;
	}
	
	.services-list {
		font-size: 16px !important;
		letter-spacing: 1.5px !important;
	}
	
	.construction-text h2 {
		font-size: 18px !important;
		letter-spacing: 2px !important;
	}
}

@media (min-width: 992px) {
	/* Desktop and above - keep existing styles */
	/* Hide mobile social menu on desktop */
	.social-menu-mobile {
		display: none !important;
		visibility: hidden !important;
	}
	
	/* Show desktop social menu on desktop */
	#ss_menu {
		display: block !important;
		visibility: visible !important;
	}
}

/**
******************************************************************
*	MOBILE & TABLET COMMON
******************************************************************
*/
@media (min-width: 200px) and (max-width: 991px) {
	/* Hide desktop social menu on tablet and mobile */
	#ss_menu {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
	
	/* Show mobile social menu on tablet and mobile */
	.social-menu-mobile {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		justify-content: center;
		align-items: center;
	}
	/* Logo responsive */
	.intro-text img {
		max-width: 100%;
		height: auto;
		width: auto;
		max-height: 80px;
	}
	
	/* Construction text responsive */
	.construction-text h2 {
		font-size: 16px !important;
		letter-spacing: 2px !important;
		padding: 0 15px;
	}
	
	/* Services list responsive */
	.services-list {
		font-size: 14px !important;
		letter-spacing: 1.5px !important;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 5px;
	}
	
	.services-list .service-item {
		padding: 8px 12px;
	}
	
	/* Intro text responsive */
	.intro-text .sub-text {
		font-size: 16px !important;
		padding: 0 15px;
		line-height: 1.6;
	}
	
	/* Subscribe form responsive */
	.subscribe-form-1 .field-group {
		flex-direction: column;
		align-items: stretch;
	}
	
	.subscribe-form-1 .form-control {
		width: 100%;
		margin-bottom: 10px;
	}
	
	.subscribe-form-1 .btn {
		width: 100%;
		margin-top: 0;
	}
	
	/* Navigation buttons responsive */
	.navigation-wrp-1 {
		margin-top: 20px;
	}
	
	.navigation-wrp-1 .nav-link {
		display: block;
		margin: 10px auto;
		padding: 12px 20px;
		text-align: center;
		max-width: 250px;
	}
	
	/* About section image responsive */
	.about-section-2 .image-wrapper {
		text-align: center;
	}
	
	.about-section-2 .image-wrapper img {
		max-width: 100%;
		height: auto;
		width: auto;
	}
	
	/* Info boxes in services section */
	.service-section-2 .info-box-1 {
		margin-bottom: 20px;
	}
	
	/* Contact section responsive */
	.contact-section-1 .contact-info-1,
	.contact-section-1 .contact-form-1 {
		margin-bottom: 30px;
	}
	
	.contact-form-1 .input-group .col-md-6 {
		margin-bottom: 15px;
	}
}

/**
******************************************************************
*	TABLET
******************************************************************
*/
@media (min-width: 768px) and (max-width: 991px) {
	/* Logo for tablet */
	.intro-text img {
		max-height: 90px;
	}
	
	/* Services list for tablet */
	.services-list {
		font-size: 15px !important;
		letter-spacing: 2px !important;
	}
	
	/* Construction text for tablet */
	.construction-text h2 {
		font-size: 18px !important;
	}
	
	/* Intro text for tablet */
	.intro-text .sub-text {
		font-size: 17px !important;
	}
	
	/* Navigation buttons for tablet */
	.navigation-wrp-1 .nav-link {
		max-width: 300px;
		padding: 14px 25px;
	}
	
	/* Info boxes spacing for tablet */
	.service-section-2 .info-box-1 {
		padding: 25px;
	}
}

/**
******************************************************************
*	MOBILE
******************************************************************
*/
@media (min-width: 200px) and (max-width: 767px) {	
	/* Responsive styles for countdown timer on mobile */
	.clock.clock-1 {
		padding: 10px 0 5px 0;
	}
	
	.clock.clock-1 .countdown-widget .inner-dashboard {
		padding: 12px 5px !important;
	}
	
	.clock.clock-1 .countdown-widget .dash {
		padding: 0 8px !important;
	}
	
	.clock.clock-1 .countdown-widget .inner-dash {
		font-size: 24px !important;
		line-height: 1.1 !important;
	}
	
	.clock.clock-1 .countdown-widget .inner-dash > .digit {
		min-width: 16px !important;
	}
	
	.clock.clock-1 .countdown-widget .dash_title {
		font-size: 10px !important;
		letter-spacing: 1px !important;
	}
	
	/* Logo for mobile */
	.intro-text img {
		max-height: 70px;
		margin-bottom: 15px;
	}
	
	/* Construction text for mobile */
	.construction-text {
		margin-bottom: 15px !important;
	}
	
	.construction-text h2 {
		font-size: 14px !important;
		letter-spacing: 1.5px !important;
		padding: 0 10px;
	}
	
	/* Services list for mobile - stack vertically or wrap */
	.services-list {
		font-size: 12px !important;
		letter-spacing: 1px !important;
		line-height: 1.8;
		flex-direction: column;
		gap: 8px;
	}
	
	.services-list .service-item {
		padding: 6px 10px;
		display: inline-block;
	}
	
	/* Intro text for mobile */
	.intro-text {
		padding: 0 15px;
	}
	
	.intro-text .sub-text {
		font-size: 14px !important;
		line-height: 1.6;
		margin-top: 15px;
	}
	
	/* Subscribe form for mobile */
	.subscribe-form-1 {
		padding: 0 15px;
		margin-top: 20px;
	}
	
	.subscribe-form-1 .form-control {
		font-size: 14px;
		padding: 12px 15px;
	}
	
	.subscribe-form-1 .btn {
		font-size: 12px;
		padding: 12px 20px;
	}
	
	/* Navigation buttons for mobile */
	.navigation-wrp-1 {
		margin-top: 25px;
		padding: 0 15px;
	}
	
	.navigation-wrp-1 .inner-wrp {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.navigation-wrp-1 .nav-link {
		width: 100%;
		max-width: 100%;
		padding: 12px 15px;
		font-size: 12px;
		letter-spacing: 1.5px;
	}
	
	/* About section for mobile */
	.about-section-2 .large-text {
		font-size: 16px !important;
		line-height: 1.6;
	}
	
	.about-section-2 p {
		font-size: 14px !important;
		line-height: 1.6;
	}
	
	.about-section-2 p[style*="margin-top"] {
		margin-top: 15px !important;
	}
	
	.about-section-2 .list-wrp {
		margin-top: 20px !important;
	}
	
	.about-section-2 .list-wrp h3 {
		font-size: 16px !important;
		margin-bottom: 15px !important;
		color: #fff !important;
	}
	
	.about-section-2 .list-1 li {
		font-size: 14px !important;
		margin-bottom: 10px;
	}
	
	/* Mission section for mobile */
	.work-section-1 .info-box {
		padding: 20px 15px !important;
		margin-bottom: 20px;
	}
	
	.work-section-1 .info-box .img {
		margin-bottom: 15px !important;
	}
	
	.work-section-1 .info-box .img span {
		font-size: 48px !important;
	}
	
	.work-section-1 .info-box h3 {
		font-size: 18px !important;
		margin-bottom: 10px !important;
		color: #fff !important;
	}
	
	.work-section-1 .info-box p {
		font-size: 13px !important;
		color: #ccc !important;
	}
	
	/* Services section for mobile */
	.service-section-2 .info-box-1 {
		padding: 20px 15px !important;
		margin-bottom: 20px;
	}
	
	.service-section-2 .info-box-1 .img span {
		font-size: 36px !important;
	}
	
	.service-section-2 .info-box-1 .info .hd {
		font-size: 18px !important;
		margin-bottom: 8px;
	}
	
	.service-section-2 .info-box-1 .info p {
		font-size: 13px !important;
		line-height: 1.5;
	}
	
	.service-section-2 .info-box-1 .info p[style*="font-style: italic"] {
		font-size: 12px !important;
		margin-bottom: 8px !important;
	}
	
	/* Contact section for mobile */
	.contact-section-1 .title-wrp {
		margin-bottom: 30px;
	}
	
	.contact-section-1 .title-wrp .title {
		font-size: 24px !important;
	}
	
	.contact-section-1 .title-wrp .sub-title {
		font-size: 14px !important;
	}
	
	.contact-section-1 .contact-box-1 {
		margin-bottom: 20px;
		padding: 15px;
	}
	
	.contact-section-1 .contact-box-1 .icon {
		font-size: 20px;
		margin-right: 15px;
	}
	
	.contact-section-1 .contact-box-1 .info {
		font-size: 13px;
	}
	
	.contact-section-1 .contact-box-1 .info p[style*="margin-top"] {
		margin-top: 12px !important;
	}
	
	.contact-section-1 .contact-box-1 .info a[style*="font-size"] i {
		font-size: 20px !important;
	}
	
	.contact-section-1 .contact-box-1 .info a[style*="margin-right"] {
		margin-right: 12px !important;
	}
	
	/* Footer for mobile */
	.site-footer {
		font-size: 10px;
		padding: 8px 10px;
		bottom: 0 !important;
		margin-bottom: 70px; /* Space for mobile social menu */
	}
	
	/* Mobile social menu adjustments */
	.social-menu-mobile {
		bottom: 15px;
		padding: 8px 15px;
	}
	
	.social-menu-mobile a {
		width: 36px;
		height: 36px;
		line-height: 36px;
		margin: 0 6px;
		font-size: 16px;
	}
	
	.contact-form-1 .form-control {
		font-size: 14px;
		padding: 12px 15px;
	}
	
	.contact-form-1 textarea.form-control {
		min-height: 120px;
	}
	
	.contact-form-1 .btn {
		font-size: 12px;
		padding: 12px 25px;
		width: 100%;
	}

}
@media (min-width: 600px) and (max-width: 767px) {
	/* Medium mobile styles */
	.intro-text img {
		max-height: 75px;
	}
	
	.construction-text h2 {
		font-size: 15px !important;
	}
	
	.services-list {
		font-size: 13px !important;
		letter-spacing: 1.2px !important;
	}
	
	.intro-text .sub-text {
		font-size: 15px !important;
	}
	
	.navigation-wrp-1 .nav-link {
		font-size: 13px;
		padding: 13px 18px;
	}
}
@media (min-width: 480px) and (max-width: 599px) {
	/* Small tablet / large mobile styles */
	.intro-text img {
		max-height: 80px;
	}
	
	.construction-text h2 {
		font-size: 16px !important;
		letter-spacing: 2px !important;
	}
	
	.services-list {
		font-size: 13px !important;
		letter-spacing: 1.5px !important;
	}
	
	.intro-text .sub-text {
		font-size: 15px !important;
	}
	
	.navigation-wrp-1 .nav-link {
		font-size: 13px;
		max-width: 280px;
	}
}
@media (min-width: 200px) and (max-width: 479px) {
	/* Make countdown more compact on very small screens */
	.clock.clock-1 .countdown-widget .inner-dashboard {
		padding: 10px 3px !important;
	}
	
	.clock.clock-1 .countdown-widget .dash {
		padding: 0 5px !important;
	}
	
	.clock.clock-1 .countdown-widget .inner-dash {
		font-size: 20px !important;
	}
	
	.clock.clock-1 .countdown-widget .inner-dash > .digit {
		min-width: 14px !important;
	}
	
	.clock.clock-1 .countdown-widget .dash_title {
		font-size: 9px !important;
	}
	
	/* Very small mobile - extra compact styles */
	.intro-text img {
		max-height: 60px;
		margin-bottom: 10px;
	}
	
	.construction-text {
		margin-bottom: 10px !important;
	}
	
	.construction-text h2 {
		font-size: 4px !important;
		letter-spacing: 1px !important;
		padding: 0 8px;
	}
	
	.services-list {
		font-size: 11px !important;
		letter-spacing: 0.8px !important;
		gap: 5px;
	}
	
	.services-list .service-item {
		padding: 5px 8px;
	}
	
	.intro-text .sub-text {
		font-size: 13px !important;
		line-height: 1.5;
		padding: 0 10px;
	}
	
	.subscribe-form-1 {
		padding: 0 10px;
	}
	
	.subscribe-form-1 .form-control {
		font-size: 13px;
		padding: 10px 12px;
	}
	
	.subscribe-form-1 .btn {
		font-size: 11px;
		padding: 10px 18px;
	}
	
	.navigation-wrp-1 {
		padding: 0 10px;
		margin-top: 20px;
	}
	
	.navigation-wrp-1 .nav-link {
		font-size: 11px;
		letter-spacing: 1px;
		padding: 10px 12px;
	}
	
	/* About section for very small screens */
	.about-section-2 .large-text {
		font-size: 15px !important;
	}
	
	.about-section-2 p {
		font-size: 13px !important;
	}
	
	.about-section-2 .list-wrp h3 {
		font-size: 15px !important;
	}
	
	.about-section-2 .list-1 li {
		font-size: 13px !important;
	}
	
	/* Mission section for very small screens */
	.work-section-1 .info-box {
		padding: 15px 10px !important;
	}
	
	.work-section-1 .info-box .img {
		margin-bottom: 12px !important;
	}
	
	.work-section-1 .info-box .img span {
		font-size: 40px !important;
	}
	
	.work-section-1 .info-box h3 {
		font-size: 16px !important;
		margin-bottom: 8px !important;
	}
	
	.work-section-1 .info-box p {
		font-size: 12px !important;
	}
	
	/* Services section for very small screens */
	.service-section-2 .info-box-1 {
		padding: 15px 10px !important;
	}
	
	.service-section-2 .info-box-1 .img span {
		font-size: 32px !important;
	}
	
	.service-section-2 .info-box-1 .info .hd {
		font-size: 16px !important;
	}
	
	.service-section-2 .info-box-1 .info p {
		font-size: 12px !important;
	}
	
	/* Contact section for very small screens */
	.contact-section-1 .title-wrp .title {
		font-size: 22px !important;
	}
	
	.contact-section-1 .title-wrp .sub-title {
		font-size: 13px !important;
	}
	
	.contact-section-1 .contact-box-1 {
		padding: 12px;
	}
	
	.contact-section-1 .contact-box-1 .icon {
		font-size: 18px;
		margin-right: 12px;
	}
	
	.contact-section-1 .contact-box-1 .info {
		font-size: 12px;
	}
	
	.contact-form-1 .form-control {
		font-size: 13px;
		padding: 10px 12px;
	}
	
	.contact-form-1 textarea.form-control {
		min-height: 100px;
	}
	
	.contact-form-1 .btn {
		font-size: 11px;
		padding: 10px 20px;
	}
	
	/* Footer for very small screens */
	.site-footer {
		font-size: 9px;
		padding: 6px 8px;
		line-height: 1.4;
		margin-bottom: 65px; /* Space for mobile social menu */
	}
	
	/* Mobile social menu for very small screens */
	.social-menu-mobile {
		bottom: 10px;
		padding: 6px 12px;
	}
	
	.social-menu-mobile a {
		width: 32px;
		height: 32px;
		line-height: 32px;
		margin: 0 4px;
		font-size: 14px;
	}

}