/* styles.css */

/* Reset & Base */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	color: #e0e0e0;
	background: #000;
}

/* Container */
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 0;
}

/* NAVBAR */
.navbar {
	position: sticky;
	top: 0;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
	z-index: 1000;
}

.navbar .container {
	padding: 0.75rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0ff;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	color: #e0e0e0;
	text-decoration: none;
	font-weight: 500;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: #0ff;
	bottom: -4px;
	left: 0;
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger span {
	display: block;
	height: 3px;
	background: #e0e0e0;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* COMMON WRAPPER FOR HERO + SERVICES WITH BG IMAGE + OVERLAY */
.hero-services-wrapper {
	background: url('back1.jpg') no-repeat center center / cover;
	position: relative;
	z-index: 0;
}

/* Overlay layer */
.hero-services-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10, 10, 20, 0.6);
	z-index: 1;
	pointer-events: none;
}

/* HERO */
.hero {
	position: relative;
	z-index: 2;
	color: #fff;
	padding: 120px 20px;
	text-align: center;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	color: #ccc;
}

.hero-cta .btn {
	margin: 0 0.5rem;
}

/* SERVICES */
.services {
	position: relative;
	z-index: 2;
	padding: 100px 30px;
	background: transparent !important;
	/* remove previous gradients */
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.services h2 {
	font-size: 3rem;
	margin-bottom: 60px;
	color: #38bdf8;
	letter-spacing: 1px;
	position: relative;
	z-index: 2;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.service-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 40px 30px;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.service-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 60%);
	animation: pulse 5s linear infinite;
	z-index: 0;
}

@keyframes pulse {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.service-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
}

.icon-wrapper {
	font-size: 2.5rem;
	color: #38bdf8;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
	z-index: 2;
	position: relative;
}

.service-card:hover .icon-wrapper {
	transform: scale(1.2);
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
	z-index: 2;
	position: relative;
}

.service-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #cbd5e1;
	z-index: 2;
	position: relative;
}

/* BUTTONS */
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
	background: #0ff;
	color: #000;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
	background: transparent;
	border: 2px solid #0ff;
	color: #0ff;
}

.btn-secondary:hover {
	background: #0ff;
	color: #000;
}

/* PRICING */
.pricing h2 {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2rem;
}

.carousel {
	position: relative;
	overflow: hidden;
}

.pricing-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.card {
	background: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 2rem;
	max-width: 320px;
	flex: 1 1 300px;
	transition: all 0.3s ease;
	text-align: left;
}

.card h3 {
	font-size: 1rem;
	text-transform: uppercase;
	color: #888;
	margin-bottom: 0.5rem;
}

.card .price {
	font-size: 2.25rem;
	font-weight: bold;
	color: #0ff;
	margin: 1rem 0;
}

.card ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1rem;
}

.card ul li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 0.5rem;
	color: #ccc;
}

.card ul li::before {
	content: '✔';
	position: absolute;
	left: 0;
	color: #0f0;
	/* green check */
}

.card .btn {
	width: 100%;
	text-align: center;
}

.card.recommended {
	border: 1px solid #0ff;
	background: #111;
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.6);
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	border-radius: 50%;
}

.carousel-btn i {
	font-size: 1rem;
	color: #e0e0e0;
}

.carousel-btn.prev {
	left: 1rem;
}

.carousel-btn.next {
	right: 1rem;
}

.card ul li.unavailable::before {
	content: '✖';
	color: #f44336;
	/* red */
}

/* Pricing Section Discount Styling */

.price-wrapper {
	position: relative;
	display: inline-block;
}

.original-price {
	font-size: 1rem;
	color: #999;
	text-decoration: line-through;
	margin: 0 0.5rem 0 0;
	display: inline-block;
	vertical-align: middle;
}

.price-wrapper .price {
	font-size: 2.25rem;
	font-weight: bold;
	color: #0ff;
	display: inline-block;
	vertical-align: middle;
}

.discount-badge {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #f44336;
	/* bright red */
	color: white;
	font-weight: 700;
	font-size: 0.75rem;
	padding: 4px 8px;
	border-radius: 4px;
	transform: rotate(15deg);
	box-shadow: 0 0 8px rgba(244, 67, 54, 0.7);
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
	z-index: 10;
}


/* === GALLERY SECTION === */
.gallery-section {
	background: #111;
	padding: 100px 0;
	text-align: center;
	overflow: hidden;
}

/* === GALLERY SECTION === */
.gallery-section {
	background: #111;
	padding: 100px 0;
	text-align: center;
	overflow: hidden;
}

/* === CARD SLIDER === */
.card-slider {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	max-width: 100%;
	padding: 0 40px;
}

.card-slider input[type="radio"] {
	display: none;
}

.card-slider label {
	position: relative;
	margin: 0 -35px;
	display: inline-block;
	width: 370px;
	/* Wider */
	height: 225px;
	/* Taller */
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	transform: skew(-20deg) rotate(-20deg);
	transition: 0.4s ease-in-out;
	cursor: pointer;

	/* Flex to position text lower inside the image */
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 20px;

	/* Label text styles */
	color: white;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
	text-shadow:
		1px 1px 2px black,
		-1px -1px 2px black;
	/* Only soft internal border, no glow */
	overflow: hidden;
	box-shadow: none;
	/* Remove extra outer shadow/glow */
}


/* FADE AND TRANSFORM UNSELECTED */
.card-slider input[type="radio"]:checked~label {
	transform: skew(12deg) rotate(8deg);
	opacity: 0.4;
	filter: blur(1.5px);
	z-index: 0;
}

.card-slider input[type="radio"]:checked+label {
	transform: scale(1.08);
	margin: 0 80px;
	opacity: 1;
	filter: none;
	z-index: 2;
}

/* HOVER EFFECT */
.card-slider label:hover {
	transform: scale(1.04) skew(-8deg) rotate(-6deg);
	z-index: 3;
}

#gallery h2 {
	font-size: 2rem;
	/* Default is usually ~2rem */
	color: #fff;
	margin-bottom: 0.5rem;
}

#gallery .subheading {
	font-size: 1.5rem;
	/* Default is usually ~1rem or 1.2rem */
	color: #aaa;
	margin-top: 0;
}


/* ========= CONTACT SECTION ========= */
.contact-section {
	background-color: #000;
	/* Solid black */
	padding: 100px 20px;
	color: #f0f0f0;
	text-align: center;
}

.contact-section h2 {
	font-size: 3rem;
	margin-bottom: 40px;
	color: #ffffff;
	letter-spacing: 1px;
}

.contact-card {
	background: #1a1a1a;
	padding: 50px 30px;
	border-radius: 20px;
	max-width: 500px;
	margin: 0 auto;
	box-shadow: 0 0 40px rgba(56, 189, 248, 0.15);
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 0 60px rgba(88, 101, 242, 0.25);
}

.contact-card p {
	margin: 15px 0 25px;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #ccc;
}

/* Logo Container */
.logo-container {
	margin-bottom: 25px;
	padding: 14px;
	border: 1px solid #444;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.03);
	display: inline-block;
}

.contact-logo {
	width: 80px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* Discord Button */
.btn-contact {
	display: inline-block;
	background: #5865F2;
	color: white;
	padding: 14px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 0 12px rgba(88, 101, 242, 0.6);
}

.btn-contact:hover {
	background: #4752c4;
	box-shadow: 0 0 24px rgba(88, 101, 242, 0.9);
	transform: scale(1.05);
}

.discord-id {
	margin-top: 18px;
	font-size: 0.9rem;
	color: #aaa;
}


/* Footer */
.footer {
	background: #1a1a1a;
	color: #ccc;
	font-size: 14px;
	padding: 1.5rem 1rem 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
	gap: 1rem;
}

/* Left nav vertical column */
.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 0 0 150px;
	border-right: 1px solid #444;
	padding-right: 1rem;
	min-width: 130px;
}

.footer-nav a {
	color: #ccc;
	text-decoration: none;
	padding: 0.15rem 0;
}

.footer-nav a:hover,
.footer-nav a:focus {
	color: #64b5f6;
	text-decoration: underline;
}

/* Middle text column */
.footer-text {
	flex: 1 1 500px;
	color: #aaa;
	line-height: 1.4;
	font-size: 0.85rem;
	padding-left: 1rem;
}

.footer-text p {
	margin: 0.25rem 0;
}

.footer-text a {
	color: #64b5f6;
	text-decoration: none;
}

.footer-text a:hover,
.footer-text a:focus {
	text-decoration: underline;
}

.disclaimer {
	font-size: 0.75rem;
	color: #666;
	margin-top: 0.7rem;
}

/* Right social icons */
.footer-social {
	flex: 0 0 auto;
	display: flex;
	gap: 1rem;
	font-size: 1.6rem;
	align-self: flex-start;
}

.footer-social a {
	color: #e0e0e0;
	transition: color 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus {
	color: #64b5f6;
}

/* Footer bottom bar */
.footer-bottom {
	text-align: center;
	border-top: 1px solid #333;
	padding: 0.75rem 1rem 0;
	font-size: 0.75rem;
	color: #555;
	margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-nav {
		border-right: none;
		padding-right: 0;
		margin-bottom: 1rem;
		flex: unset;
		min-width: auto;
		flex-direction: row;
		gap: 1rem;
	}

	.footer-text {
		padding-left: 0;
	}

	.footer-social {
		order: 3;
		margin-top: 1rem;
	}
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: 70%;
		background: #111;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2rem;
		transition: right 0.3s ease;
	}

	.nav-links.active {
		right: 0;
	}

	.hamburger {
		display: flex;
	}
}

/* services hover effects */
.service-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 0 40px rgba(56, 189, 248, 0.5);
}

/* Pricing cards hover */
.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

/*====FAQ====*/
.faq-section {
	max-width: 700px;
	margin: 4rem auto;
	padding: 0 1rem;
	color: #e0e0e0;
	font-family: inherit;
}

.accordion {
	list-style: none;
	padding: 0;
	margin: 0;
}

.accordion li {
	padding: 0.6rem 0;
	border-bottom: 1px solid #2a2a2a;
}

.accordion input[type="radio"] {
	display: none;
}

.accordion label {
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	display: block;
	padding: 0.4rem 0;
	color: #ffffff;
	transition: color 0.4s ease-in-out;
}

.accordion label:hover {
	color: #bbbbbb;
}

.accordion .content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	padding: 0 0 0 0.2rem;
	transition:
		max-height 0.8s ease-in-out,
		opacity 0.8s ease-in-out,
		padding 0.8s ease-in-out;
	color: #aaaaaa;
	font-size: 0.95rem;
}

.accordion input:checked ~ .content {
	max-height: 300px;
	opacity: 1;
	padding-top: 0.6rem;
}

