:root {
	--bg-color: #f2f5f7;
	--bg-color-inv: #0f0f0f;
	--text-color: #0f0f0f;
	--text-color-inv: #f2f5f7;
	--shadow: 0px -3px 19px 0 rgba(0, 0, 0, 0.3);
}

* {
	outline: none;
	box-sizing: border-box;
}

body.dark-theme {
	--bg-color: #0f0f0f;
	--bg-color-inv: #f2f5f7;
	--text-color: #f2f5f7;
	--text-color-inv: #0f0f0f;
	--shadow: 0px -3px 19px 0 rgb(255, 255, 255, 0.3);
}

body {
	scroll-behavior: smooth;
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: var(--body-font);
	transition: background-color 0.3s, color 0.3s;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
	position: relative;
}

::selection {
	background-color: var(--accent-color);
	color: var(--accent-text);
}

::-moz-selection {
	background-color: var(--accent-color);
	color: var(--accent-text);
}

/* ----------------------------------------------------------------
	INPUT STYLE
-------------------------------------------------------------------- */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

/* --------------------------------------------------------------------
    BUTTON STYLE
-------------------------------------------------------------------- */
.btn-gooey-wrapper {
	display: inline-block;
	filter: url('#goo');
	padding: 1rem;
}

.btn {
	position: relative;
	z-index: 1;
	white-space: nowrap;
}

.btn::before,
.btn::after {
	content: "";
	position: absolute;
	display: block;
	width: 24px;
	height: 42px;
	border-radius: 50%;
	transition: transform 0.6s ease;
	transform: scale(0);
	z-index: -1;
	background-color: inherit;
}

.btn::before {
	top: -20%;
	left: 12%;
}

.btn::after {
	bottom: -20%;
	right: 12%;
}

.btn:hover::before,
.btn:hover::after {
	transform: scale(1.2);
}

.btn-primary {
	--bs-btn-bg: var(--accent-color);
	--bs-btn-border-color: var(--accent-color);
	--bs-btn-color: var(--accent-text);
	--bs-btn-hover-bg: var(--accent-darker);
	--bs-btn-hover-border-color: var(--accent-darker);
	--bs-btn-hover-color: var(--accent-text);
	--bs-btn-active-bg: var(--accent-darker);
	--bs-btn-active-border-color: var(--accent-darker);
	--bs-btn-active-color: var(--accent-text);
	--bs-btn-focus-shadow-rgb: transparent;
}

.btn-primary:focus {
	box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
}

.btn-paypal,
.btn-paypal::before,
.btn-paypal::after {
	background-color: #ffc439;
	color: #003087;
}

.btn-paypal:hover,
.btn-paypal:hover::before,
.btn-paypal:hover::after {
	background-color: #f4b400;
	color: #011d50;
}

/* --------------------------------------------------------------------
    HEADER STYLE
-------------------------------------------------------------------- */
.site-header {
	top: 0;
	z-index: 1020;
	backdrop-filter: blur(10px);
	background: var(--bg-color);
	box-shadow: var(--shadow);
}

.site-header .header-logo {
	height: 60px;
}

.site-header .search-wrapper {
	max-width: 300px;
	transition: max-width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
}

.site-header .search-wrapper:focus-within {
	max-width: 100%;
}

.site-header .search-wrapper .input-group {
	background: #ffffff30;
	border-radius: 50px;
	padding: 2px 2px 2px 15px;
	transition: all 0.3s ease;
	border: 1px solid var(--bs-border-color);
	flex-wrap: nowrap;
}

.site-header .search-wrapper:focus-within .input-group {
	border-color: var(--accent-color);
	box-shadow: 0 0 15px var(--accent-color);
}

.site-header .search-input {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 10px 0;
	flex-grow: 1;
}

.site-header .mic-btn {
	border: none !important;
	background-color: var(--accent-color) !important;
	color: var(--accent-text) !important;
	border-radius: 50% !important;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	flex-shrink: 0;
}

.site-header .mic-btn {
	position: relative;
	overflow: hidden;
	z-index: 5;
	background-color: var(--accent-color) !important;
	border: none !important;
	top: 3px;
}

.site-header .mic-btn i {
	position: relative;
	z-index: 10;
	transition: transform 0.3s ease;
}

.site-header .mic-btn .ocean {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 8;
	overflow: hidden;
}

.site-header .mic-btn.recording .ocean,
.site-header .mic-btn:active .ocean {
	top: 0;
}

.site-header .mic-btn .ocean::before,
.site-header .mic-btn .ocean::after {
	content: "";
	position: absolute;
	width: 200%;
	height: 200%;
	top: -150%;
	left: -50%;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 40%;
	animation: wave-rotate 2s linear infinite;
}

.site-header .mic-btn .ocean::after {
	border-radius: 35%;
	background: rgba(255, 255, 255, 0.4);
	animation: wave-rotate 3s linear infinite;
}

@keyframes wave-rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.site-header .mic-btn:active i {
	transform: scale(1.2);
}

.site-header .theme-switch-container {
	position: relative;
}

.site-header .theme-checkbox {
	display: none;
}

.site-header .theme-label {
	background-color: #333;
	width: 50px;
	height: 24px;
	border-radius: 50px;
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 6px;
}

.site-header .theme-label i {
	font-size: 11px;
	z-index: 1;
}

.site-header .fa-sun,
.site-header .fa-moon {
	color: var(--bg-color);
}

body.dark-theme .site-header .fa-sun,
body.dark-theme .site-header .fa-moon {
	color: var(--accent-color);
}

.site-header .theme-label .ball {
	background-color: var(--bg-color);
	width: 20px;
	height: 20px;
	position: absolute;
	left: 2px;
	top: 2px;
	border-radius: 50%;
	transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	z-index: 1;
}

.site-header .theme-checkbox:checked+.theme-label .ball {
	transform: translateX(26px);
}

.site-header .theme-checkbox:checked+.theme-label {
	background-color: var(--bg-color-inv);
}

.site-header .nav-icon-link {
	font-size: 1.4rem;
	color: var(--bs-body-color);
	transition: transform 0.2s;
}

.site-header .nav-icon-link:hover {
	color: var(--accent-color);
	transform: scale(1.1);
}

/* --------------------------------------------------------------------
    RESPECT NOTICE STYLE
-------------------------------------------------------------------- */
.notice-card {
	position: relative;
	padding: 20px;
	margin: 30px auto;
	/* overflow-x: clip; */
	width: 100%;
	max-width: 800px;
}

.notice-card .notice-card-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 25px;
	border-radius: 25px;
	background: var(--bg-color);
	overflow: visible;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	z-index: 3;
	flex-direction: row-reverse;
}

.notice-card .notice-card-blob {
	position: absolute;
	border-radius: 50%;
	filter: url(#goo);
	z-index: -1;
	animation: blobFloat 6s ease-in-out infinite;
}

.notice-card .blob-1 {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-darker) 100%);
	top: -40px;
	left: -30px;
	animation-delay: 0s;
}

.notice-card .blob-2 {
	width: 80px;
	height: 80px;
	background: var(--bg-color-inv);
	top: -20px;
	right: 50px;
	animation-delay: -2s;
}

.notice-card .blob-3 {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-darker) 100%);
	bottom: -35px;
	right: -25px;
	animation-delay: -4s;
}

.notice-card .blob-4 {
	width: 60px;
	height: 60px;
	background: var(--bg-color-inv);
	bottom: -20px;
	left: 80px;
	animation-delay: -1s;
}

.notice-card .blob-5 {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-darker) 100%);
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	animation-delay: -3s;
}

@keyframes blobFloat {

	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	33% {
		transform: translateY(-15px) scale(1.05);
	}

	66% {
		transform: translateY(10px) scale(0.95);
	}
}

.notice-card .notice-card-card-image {
	flex-shrink: 0;
	width: 200px;
	height: 200px;
	position: relative;
}

.notice-card .notice-card-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
	transition: transform 0.4s ease;
}

.notice-card .notice-card-card-content {
	padding: 10px 20px;
}

.notice-card .notice-card-card-content strong {
	color: var(--accent-color);
}


.notice-card .notice-card-card:hover {
	transform: translateY(-5px);
}

@media (max-width: 768px) {
	.notice-card {
		overflow-x: clip;
	}

	.notice-card .notice-card-card {
		flex-direction: column !important;
		text-align: center;
		padding: 10px;
	}

	.notice-card .notice-card-card-image {
		width: 150px;
		height: 150px;
	}

	.notice-card .blob-1,
	.notice-card .blob-2,
	.notice-card .blob-3 {
		transform: scale(0.7);
	}
}

/* --------------------------------------------------------------------
    FOOTER STYLE
-------------------------------------------------------------------- */
.site-footer {
	background-color: var(--bg-color-inv);
	color: var(--text-color-inv);
	padding: 60px 10% 20px;
	font-family: 'Arial', sans-serif;
	position: relative;
	z-index: 1;
	overflow: visible;
	margin-top: 60px;
	overflow-x: clip;
}

.site-footer .bubbles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1rem;
	background: var(--bg-color-inv);
	filter: url("#blob");
	z-index: -1;
}

.site-footer .bubble {
	position: absolute;
	left: var(--position, 50%);
	background: var(--bg-color-inv);
	border-radius: 100%;
	animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s),
		bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
	transform: translate(-50%, 100%);
}

.site-footer .footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.site-footer .footer-links,
.site-footer .footer-branding {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-footer .footer-links {
	align-items: flex-start;
}

.site-footer .footer-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer .footer-column a {
	color: var(--text-color-inv);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: opacity 0.3s;
}

.site-footer .footer-column a:hover {
	opacity: 0.7;
}

.site-footer .footer-branding {
	border-bottom: 1px solid var(--accent-color);
	margin-bottom: 5px;
}

.site-footer .footer-logo img {
	height: 40px;
}

.site-footer .footer-bottom {
	font-size: 0.75rem;
	color: var(--accent-color);
}

.site-footer .back-to-top {
	position: fixed;
	bottom: 80px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: var(--bg-color-inv);
	color: var(--text-color-inv);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	transition: all 0.4s ease-in-out;
	transform: scale(0);
}

.site-footer .back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.site-footer .back-to-top:hover {
	transform: scale(1.2);
	background-color: var(--accent-color);
}

.site-footer .footer-socials-container {
	height: 120px;
	overflow-y: clip;
}

.site-footer .footer-socials-gooey {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 8px;
	filter: url('#goo');
	position: relative;
	height: 120px;
	margin-bottom: -48px;
	bottom: -8px;
}

.site-footer .social-item-link {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: var(--accent-text);
}

.site-footer .social-bubble-anchor {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	bottom: -15px;
	z-index: 1;
}

.site-footer .social-bubble-float {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--accent-color);
	border-radius: 50%;
	bottom: -15px;
	z-index: 2;
	transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.site-footer .social-item-link i {
	position: relative;
	z-index: 3;
	font-size: 1.5rem;
	transition: transform 0.5s ease;
	transform: translateY(12px);
}

.site-footer .social-item-link:hover .social-bubble-float {
	transform: translateY(-50px) scale(1.1);
}

.site-footer .social-item-link:hover i {
	transform: translateY(-38px);
}

.site-footer .social-item-link:hover {
	z-index: 10;
}

@media (max-width: 768px) {

	.site-footer .footer-links,
	.site-footer .footer-branding {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}
}

@keyframes bubble-size {

	0%,
	75% {
		width: var(--size, 4rem);
		height: var(--size, 4rem);
	}

	100% {
		width: 0rem;
		height: 0rem;
	}
}

@keyframes bubble-move {
	0% {
		bottom: -4rem;
	}

	100% {
		bottom: var(--distance, 10rem);
	}
}