/*
Theme Name: SaveUGC
Theme URI: https://saveugc.com/
Author: SaveUGC Team
Author URI: https://saveugc.com/
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saveugc
*/
:root {
	--primary-bg: #121212;
	--secondary-bg: #1e1e1e;
	--card-bg: #252525;
	--orange: #ff6400;
	--teal: #157671;
	--text-primary: #f5f5f5;
	--text-secondary: #b3b3b3;
	--border-radius: 8px;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	scroll-behavior: smooth;
}
body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--primary-bg);
	overflow-x: hidden;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.8rem;
}

p {
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

a {
	text-decoration: none;
	color: var(--text-primary);
	transition: var(--transition);
}

ul {
	list-style: none;
}

section {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	display: inline-block;
	position: relative;
}

.section-header span {
	color: var(--orange);
}

.underline {
	width: 80px;
	height: 4px;
	background: var(--teal);
	margin: 0 auto;
	margin-top: 1rem;
}

.btn {
	display: inline-block;
	background: var(--orange);
	color: var(--text-primary);
	padding: 12px 30px;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: var(--transition);
	text-align: center;
}

.btn:hover {
	background: #e05a00;
	transform: translateY(-3px);
}

.btn-small {
	padding: 8px 20px;
	background: var(--orange);
	color: white;
	border-radius: var(--border-radius);
}

.btn-small:hover {
	background: #e05a00;
}

header {
	background-color: var(--secondary-bg);
	position: fixed;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 15px;
}

.logo h1 {
	font-size: 1.8rem;
	margin-bottom: 0;
}

.logo span {
	color: var(--orange);
}

nav ul {
	display: flex;
}

nav ul li {
	margin-left: 1.5rem;
}

nav ul li a {
	font-weight: 500;
	padding: 0.5rem;
}

nav ul li a:hover {
	color: var(--orange);
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
	cursor: pointer;
}

.hero {
	background-color: var(--primary-bg);
	position: relative;
	padding-top: 8rem;
	overflow: hidden;
}

.hero .container {
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-content {
	width: 50%;
}

.hero-content h2 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

.hero-content p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
}

.hero-form {
	display: flex;
	max-width: 500px;
}

.hero-form input,
.multi_links_form textarea {
	flex: 1;
	padding: 12px 20px;
	border: 2px solid var(--teal);
	border-radius: var(--border-radius) 0 0 var(--border-radius);
	background: var(--secondary-bg);
	color: var(--text-primary);
	font-size: 1rem;
}

.hero-form button {
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.hero-image {
	width: 45%;
	position: relative;
}

.hero-shape {
	position: relative;
	width: 100%;
	height: 400px;
	background: linear-gradient(45deg, var(--teal), var(--orange));
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
	0% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}
	50% {
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
	}
	100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}
}

.about {
	background-color: var(--secondary-bg);
}

.about-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.about-text {
	flex: 1;
	min-width: 300px;
	padding-right: 2rem;
}

.about-text h3 {
	color: var(--teal);
	margin-bottom: 1.5rem;
}

.about-stats {
	display: flex;
	flex-wrap: wrap;
	min-width: 300px;
	flex: 1;
}

.stat-item {
	flex: 1;
	min-width: 120px;
	text-align: center;
	padding: 2rem 1rem;
	margin: 0.5rem;
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
	font-size: 2rem;
	color: var(--orange);
	margin-bottom: 0.5rem;
}

.features {
	background-color: var(--primary-bg);
}

.feature-boxes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.feature-box {
	flex: 1;
	min-width: 300px;
	padding: 2.5rem 2rem;
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	margin-bottom: 1.5rem;
}

.feature-icon i {
	font-size: 2.5rem;
	color: var(--orange);
}

.feature-box h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.faq {
	background-color: var(--secondary-bg);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--card-bg);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-item summary {
	padding: 1.5rem 2rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--text-primary);
	position: relative;
	list-style: none;
	outline: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 2rem;
	color: var(--orange);
	font-size: 1.5rem;
}

.faq-item[open] summary::after {
	content: "-";
}

.faq-answer {
	padding: 0 2rem 1.5rem;
}

.faq-answer p {
	color: var(--text-secondary);
}

footer {
	background-color: var(--card-bg);
	padding: 4rem 0 1rem;
}
.footer-content {
	display: block;
	text-align: center;
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-social {
	width: 100%;
	margin-bottom: 2rem;
	padding-right: 0;
}

.footer-logo h2 {
	font-size: 1.8rem;
}

.footer-logo span {
	color: var(--orange);
}

.footer-logo p {
	color: var(--text-secondary);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
	font-size: 1.2rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	position: relative;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
	content: "";
    position: absolute;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--teal);
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-links ul li {
	margin-bottom: 0.8rem;
}

.footer-links ul li a {
	color: var(--text-secondary);
	transition: var(--transition);
}

.footer-links ul li a:hover {
	color: var(--orange);
	padding-left: 5px;
}

.footer-contact p {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.footer-contact p i {
	margin-right: 10px;
	color: var(--teal);
}

.social-icons {
    display: flex;
    justify-self: center;
}

.social-icons ul li {
	display: inline-block;
}

.social-icons a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background-color: var(--secondary-bg);
	border-radius: 50%;
	margin-right: 5px;
	transition: var(--transition);
}

.social-icons a:hover {
	background-color: var(--orange);
	transform: translateY(-5px);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin-bottom: 0;
}
#showResult {
	margin-top: 30px;
}
#completedURLs {
	display: none;
	margin-top: 30px;
}
#completedURLs h3 {
	font-size: 18px;
	font-weight: bold;
}
.multi_links_form {
	display: block;
	width: 100%;
	max-width: 100%;
}
.multi_links_form textarea {
	resize: none;
	width: 100%;
	padding: 10px;
	min-height: 150px;
	outline: none;
	margin-bottom: 20px;
}
.multi_links_form button {
	border-radius: 5px;
}
.multi_links_form button.btn[disabled] {
	background: gray;
	cursor: no-drop;
}
@media screen and (max-width: 992px) {
	.hero .container {
		flex-direction: column;
		text-align: center;
	}

	.hero-content,
	.hero-image {
		width: 100%;
	}

	.hero-content {
		margin-bottom: 3rem;
	}

	.hero-form {
		margin: 0 auto;
	}

	.about-content {
		flex-direction: column;
	}

	.about-text {
		padding-right: 0;
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 768px) {
	header .container {
		flex-wrap: wrap;
	}

	.nav-toggle-label {
		display: block;
		padding: 1rem;
		position: absolute;
		top: 0;
		right: 0;
	}

	.nav-toggle-label span,
	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		display: block;
		background: var(--text-primary);
		height: 2px;
		width: 2rem;
		border-radius: 2px;
		position: relative;
	}

	.nav-toggle-label span::before,
	.nav-toggle-label span::after {
		content: "";
		position: absolute;
	}

	.nav-toggle-label span::before {
		bottom: 7px;
	}

	.nav-toggle-label span::after {
		top: 7px;
	}

	nav {
		position: absolute;
		text-align: left;
		top: 100%;
		left: 0;
		background: var(--secondary-bg);
		width: 100%;
		transform: scale(1, 0);
		transform-origin: top;
		transition: transform 0.3s ease-in-out;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

	nav ul {
		flex-direction: column;
		padding: 0 1rem;
	}

	nav ul li {
		margin-left: 0;
		margin-bottom: 1.5rem;
	}

	nav ul li:first-child {
		margin-top: 1.5rem;
	}

	.nav-toggle:checked ~ nav {
		transform: scale(1, 1);
	}

	nav ul li a {
		opacity: 0;
		transition: opacity 0.15s ease-in-out;
	}

	.nav-toggle:checked ~ nav ul li a {
		opacity: 1;
		transition: opacity 0.25s ease-in-out 0.15s;
	}

	.feature-box {
		flex: 100%;
	}

	.footer-content {
		flex-direction: column;
	}

	.footer-logo,
	.footer-links,
	.footer-contact,
	.footer-social {
		width: 100%;
		margin-bottom: 2rem;
	}
}

@media screen and (max-width: 576px) {
	h2 {
		font-size: 2rem;
	}

	.hero-content h2 {
		font-size: 2.2rem;
	}

	.hero-form {
		flex-direction: column;
	}

	.hero-form input {
		border-radius: var(--border-radius);
		margin-bottom: 1rem;
	}

	.hero-form button {
		border-radius: var(--border-radius);
	}

	.stat-item {
		flex: 100%;
	}
}
