/*
Theme Name: Animatorpark Theme
Theme URI: https://www.animatorpark.com/
Author: Animatorpark
Author URI: https://www.animatorpark.com/
Description: Custom premium dark WordPress theme for Animatorpark.
Version: 1.0
Text Domain: animatorpark-theme
*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0b0f17;
    color: #f5f7fb;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-main {
    min-height: 60vh;
}

.section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4a73a, #f0c14b);
    color: #111;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(11, 15, 23, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu li a {
    color: #d8deea;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-menu li a:hover {
    color: #f0c14b;
}

.hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at top right, rgba(240,193,75,0.12), transparent 30%),
        linear-gradient(180deg, #0b0f17 0%, #111827 100%);
}

.hero-content {
    max-width: 760px;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 18px;
    color: #b8c0cc;
    max-width: 680px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.site-footer {
    background: #090d14;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.footer-brand p {
    color: #aab3c2;
    max-width: 420px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-menu li a {
    color: #dbe2ee;
}

.footer-menu li a:hover {
    color: #f0c14b;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #9ca6b8;
}

.post-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.post-card {
    background: #121826;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 24px;
}

.post-card h2 {
    margin-bottom: 12px;
}

.post-card p {
    color: #b8c0cc;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .hero {
        padding: 90px 0 70px;
    }
}

.hero {
    position: relative;
    padding: 140px 0 110px;
    background:
        radial-gradient(circle at 80% 20%, rgba(240,193,75,0.15), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(80,120,255,0.12), transparent 30%),
        linear-gradient(180deg, #0b0f17 0%, #0e1420 100%);
}

.hero-content h1 {
    font-weight: 900;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: #b0bac8;
}

.video-wrap {
    margin-top: 30px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.section-header p {
    color: #aab3c2;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service Card */
.service-card {
    background: #121826;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 26px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Glow effect */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(240,193,75,0.08), transparent 40%);
    opacity: 0;
    transition: 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* Hover animation */
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,193,75,0.4);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Text */
.service-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #ffffff;
}

.service-card p {
    color: #b8c0cc;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: #121826;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(240,193,75,0.35);
    box-shadow: 0 22px 50px rgba(0,0,0,0.35);
}

.portfolio-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0e1420;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 22px;
}

.portfolio-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.portfolio-content p {
    color: #b8c0cc;
    font-size: 15px;
}

.section-cta {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    min-height: 240px;
    background:
        linear-gradient(135deg, rgba(240,193,75,0.10), rgba(80,120,255,0.10)),
        #0e1420;
}