/*
Theme Name: Anhadvibes Landing
Theme URI: https://example.com/
Author: Anhadvibes
Author URI: https://example.com/
Description: Landing page theme for Anhadvibes Studios with hero, services, work status, trust, and contact sections.
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anhadvibes-landing
Tags: one-column, landing-page, responsive-layout
*/

/* Base style placeholder; primary styles live in assets/landing.css. Inlined copy below as fallback when assets aren't served. */

:root {
    --bg: #0b1021;
    --ink: #e7ecf5;
    --muted: #b4bed1;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --accent: #00c6a7;
    --accent-2: #4de2c4;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    --radius: 18px;
    --font-display: "Inter", "Poppins", "DM Sans", system-ui, -apple-system, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
}* {
	box-sizing: border-box;
}

body.anhadvibes-body {
	margin: 0;
	background: radial-gradient(circle at 20% 20%, rgba(77, 226, 196, 0.12), transparent 35%),
		radial-gradient(circle at 80% 0%, rgba(0, 198, 167, 0.14), transparent 30%),
		var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

main.page {
	overflow: hidden;
	padding-bottom: 96px;
}

.shell {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

section {
	padding: 96px 0;
}

.eyebrow {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-2);
    margin: 0 0 20px;
    font-family: "Poppins", var(--font-display);
    display: block;
    line-height: 1.2;
}h1, h2, h3 {
	margin: 0 0 16px;
	font-family: var(--font-display);
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 16px;
	color: var(--muted);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 18px;
	border-radius: 999px;
	border: 1px solid var(--border);
	color: var(--ink);
	font-weight: 600;
	font-size: 15px;
	transition: all 0.2s ease;
	cursor: pointer;
	background: transparent;
}

.btn.primary {
	background: linear-gradient(120deg, var(--accent), var(--accent-2));
	color: #041016;
	box-shadow: 0 12px 30px rgba(0, 198, 167, 0.35);
	border-color: transparent;
}

.btn.ghost {
	background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
	border-color: rgba(255, 255, 255, 0.15);
}

.btn.full {
	width: 100%;
}

.hero {
	padding-top: 120px;
}

.hero .shell {
	position: relative;
}

.hero h1 {
	font-size: clamp(38px, 6vw, 54px);
}

.hero .lede {
	font-size: 18px;
	max-width: 720px;
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin: 28px 0 18px;
	flex-wrap: wrap;
}

.hero-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.pill {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border);
	font-weight: 600;
	font-size: 13px;
}

.section-head {
	display: grid;
	gap: 8px;
	margin-bottom: 28px;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}

.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px;
	backdrop-filter: blur(8px);
	box-shadow: var(--shadow);
}

.card .label {
	color: var(--accent-2);
	font-weight: 700;
	margin-bottom: 10px;
}

.card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
	color: var(--muted);
}

.card ul li::before {
	content: "• ";
	color: var(--accent-2);
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}

.work-card {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 18px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
}

.status {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 12px;
}

.status.in-progress {
	background: rgba(77, 226, 196, 0.12);
	color: var(--accent-2);
	border: 1px solid rgba(77, 226, 196, 0.4);
}

.status.coming-soon {
	background: rgba(255, 193, 94, 0.14);
	color: #ffd996;
	border: 1px solid rgba(255, 193, 94, 0.35);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.why-item {
	padding: 16px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.03);
}

.contact {
	padding: 96px 0 110px;
}

.contact-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	align-items: start;
	border: 1px solid var(--border);
	border-radius: calc(var(--radius) + 6px);
	padding: 28px;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
}

.contact-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.contact-form {
	display: grid;
	gap: 14px;
}

.contact-form label {
	display: grid;
	gap: 6px;
	font-size: 14px;
	color: var(--ink);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: rgba(0, 0, 0, 0.25);
	color: var(--ink);
	font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid rgba(0, 198, 167, 0.4);
	border-color: rgba(0, 198, 167, 0.6);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}

@media (max-width: 720px) {
    section {
        padding: 72px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-inner {
        padding: 22px;
    }
}

/* Portfolio Slider */
.portfolio {
    padding: 96px 0;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 32px auto 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.slider {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
}

.slide.fade {
    animation: fade 0.5s ease-in-out;
}

@keyframes fade {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.slide-content {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.slide-content iframe {
    width: 100% !important;
    height: 500px !important;
}

.slider-nav {
    text-align: center;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: rgba(77, 226, 196, 0.3);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-2);
    border-color: var(--accent-2);
}

.dot:hover {
    background-color: rgba(77, 226, 196, 0.6);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    padding: 12px 16px;
    cursor: pointer;
    background-color: rgba(77, 226, 196, 0.2);
    color: var(--accent-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    user-select: none;
    transition: all 0.2s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: rgba(77, 226, 196, 0.4);
    color: var(--accent);
}

.slider-arrow.prev {
    left: 12px;
}

.slider-arrow.next {
    right: 12px;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #05070f, #0b1021);
    border-top: 1px solid var(--border);
    padding: 48px 0 20px;
    color: var(--muted);
    font-size: 14px;
}

.footer-content {
    width: min(1120px, 92vw);
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.footer-col {
    padding: 0;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
}

.footer-desc {
    color: var(--muted);
    margin: 0;
    font-size: 13px;
}

.footer-label {
    font-weight: 700;
    color: var(--accent-2);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}

.footer-col p {
    margin: 0 0 8px;
    color: var(--muted);
}

.footer-col a {
    color: var(--accent-2);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(77, 226, 196, 0.1);
    border-color: var(--accent-2);
}

.footer-bottom {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}