/*
Theme Name: Ads Video Studio
Theme URI: https://adsvideostudio.com
Author: Ads Video Studio Team
Description: Custom high-converting WordPress Theme for Ads Video Studio (Austin, Texas, USA) featuring complete SEO, Schema.org markup, service pages, and built-in blogs.
Version: 2.0.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0d0f12;
    color: #e2e8f0;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Utility */
h1, h2, h3, h4 {
    color: #ffffff;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #FF3366, #FF6B00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #FF3366, #FF6B00);
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.5);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.section-title p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Nav */
header {
    background: rgba(13, 15, 18, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo span { color: #FF3366; }

.main-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-menu a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.3s;
}

.main-menu a:hover,
.main-menu .current-menu-item > a {
    color: #FF3366;
}

.page-header {
    padding: 90px 0 50px;
    text-align: center;
    background: #131722;
    border-bottom: 1px solid #1e293b;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-header p {
    color: #94a3b8;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text { flex: 1; }

.hero-text h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 51, 102, 0.15);
    color: #FF3366;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

.hero-video-preview {
    flex: 1;
    background: #1e293b;
    height: 380px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 20px;
}

.play-icon {
    width: 70px;
    height: 70px;
    background: #FF3366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.6);
}

/* Services Grid */
.services-section { padding: 80px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #181d28;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #283044;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #FF3366;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 15px;
    border-top: 1px solid #283044;
    padding-top: 15px;
}

.service-card ul li {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: "✓";
    color: #FF3366;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* About & Blog Section */
.about-section { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #283044;
}

.about-text h2 { font-size: 36px; margin-bottom: 20px; }
.about-text p { color: #94a3b8; margin-bottom: 18px; font-size: 16px; }

/* Blog Posts Grid */
.blog-section { padding: 80px 0; background: #131722; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #181d28;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #283044;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 13px;
    color: #FF3366;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
    flex: 1;
}

.blog-author {
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid #283044;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}

/* Contact Grid */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-box {
    background: #181d28;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #283044;
}

.contact-info-box h3 { font-size: 28px; margin-bottom: 20px; }
.contact-info-box p { color: #94a3b8; margin-bottom: 30px; }

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item .icon {
    font-size: 22px;
    color: #FF3366;
}

.info-item strong { display: block; color: #fff; }
.info-item span, .info-item a { color: #94a3b8; text-decoration: none; }
.info-item a:hover { color: #FF3366; }

.contact-form {
    background: #181d28;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #283044;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: #ffffff; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px;
    background: #0d0f12;
    border: 1px solid #283044;
    border-radius: 6px;
    color: #ffffff;
    font-size: 15px;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #FF3366;
}

/* Footer */
footer {
    padding: 50px 0 25px;
    background: #0a0c0e;
    color: #64748b;
    font-size: 14px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

footer p { margin-bottom: 10px; }

@media (max-width: 768px) {
    .hero, .about-grid, .contact-grid { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 38px; }
    .main-menu { display: none; }
}
