/*
Theme Name: Aashi-1
Theme URI: https://shortcutsurf.com
Author: ShortcutSurf
Author URI: https://shortcutsurf.com
Description: Custom theme exported from ShortcutSurf for "Aashi-1". This theme preserves the original design and layout.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aashi-1
Tags: custom-design, exported, one-column, custom-logo, custom-menu, custom-background, featured-images, threaded-comments
*/

/* ==========================================================================
   WordPress Core Utility Styles
   ========================================================================== */

/* Accessibility: screen-reader-text (skip links, ARIA labels) */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* WordPress alignment classes (for images and blocks) */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1.5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1.5em; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; margin-bottom: 1.5em; }

/* WordPress gallery */
.gallery { margin-bottom: 1.5em; }
.gallery-item { display: inline-block; text-align: center; vertical-align: top; width: 100%; }

/* WordPress captions */
.wp-caption { margin-bottom: 1.5em; max-width: 100%; }
.wp-caption img[class*="wp-image-"] { display: block; margin-left: auto; margin-right: auto; }
.wp-caption .wp-caption-text { margin: 0.8075em 0; }

/* Widget styles */
.widget { margin: 0 0 1.5em; }
.widget select { max-width: 100%; }
.widget-title { font-size: 1.1em; margin-bottom: 0.5em; }

/* Sticky post indicator */
.sticky { display: block; }

/* Page links (paginated posts) */
.page-links { clear: both; margin: 0 0 1.5em; }

/* Post navigation */
.posts-navigation, .post-navigation { margin: 0 0 1.5em; overflow: hidden; }

/* Comment list */
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; margin-left: 1.5em; }

/* Bypostauthor — WordPress theme check requirement */
.bypostauthor { display: block; }

/* ==========================================================================
   Original Project Styles
   ========================================================================== */

/* CSS Variables & Theme Setup */
        :root {
            --bg-dark: #121212;
            --text-light: #FFFFFF;
            --brand-pink: #E1306C;
            --brand-purple: #833AB4;
            --brand-orange: #FCAF45;
            --gradient-insta: linear-gradient(135deg, var(--brand-orange), var(--brand-pink), var(--brand-purple));
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-blur: blur(24px);
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        /* Reset & Base */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: var(--font-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        /* Typography */
        h1, h2, h3 { font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
        .text-gradient {
            background: var(--gradient-insta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        /* Extreme Animations (Hollywood Style) */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideInLeft { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
        @keyframes pulseGlow { 0% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(225, 48, 108, 0); } 100% { box-shadow: 0 0 0 0 rgba(225, 48, 108, 0); } }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

        .anim-up { animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards; opacity: 0; }
        .anim-left { animation: slideInLeft 1s cubic-bezier(0.19, 1, 0.22, 1) forwards; opacity: 0; }
        .anim-right { animation: slideInRight 1s cubic-bezier(0.19, 1, 0.22, 1) forwards; opacity: 0; }
        .anim-scale { animation: scaleIn 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards; opacity: 0; }
        
        .delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; } .delay-4 { animation-delay: 0.8s; }

        /* Liquid Glass / iPhone Aesthetic Utilities */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: 32px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
        }
        
        /* Layout Containers */
        .container { width: 90%; max-width: 1400px; margin: 0 auto; }
        .section-pad { padding: 120px 0; }

        /* Header & Navigation */
        header {
            position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
            width: 95%; max-width: 1200px; z-index: 1000;
            padding: 15px 30px; display: flex; justify-content: space-between; align-items: center;
            border-radius: 50px;
        }
        .logo { font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
        nav ul { display: flex; gap: 30px; align-items: center; }
        nav a { font-weight: 500; font-size: 0.95rem; transition: all 0.3s ease; position: relative; }
        nav a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
            background: var(--gradient-insta); transition: width 0.3s ease;
        }
        nav a:hover::after { width: 100%; }
        nav a:hover { color: var(--brand-pink); transform: scale(1.05); display: inline-block; }
        
        /* Sub-menu */
        .has-dropdown { position: relative; }
        .dropdown {
            position: absolute; top: 150%; left: 50%; transform: translateX(-50%) translateY(20px);
            opacity: 0; visibility: hidden; min-width: 200px; padding: 15px;
            display: flex; flex-direction: column; gap: 10px; transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

        /* Buttons */
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem;
            text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1); border: none; outline: none;
        }
        .btn-primary {
            background: var(--gradient-insta); color: #fff;
            box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
            animation: pulseGlow 3s infinite;
        }
        .btn-primary:hover { transform: scale(1.08) translateY(-5px); box-shadow: 0 20px 40px rgba(225, 48, 108, 0.5); }
        .btn-outline {
            background: transparent; border: 1px solid var(--text-light); color: var(--text-light);
        }
        .btn-outline:hover { background: var(--text-light); color: var(--bg-dark); transform: scale(1.05); }

        /* Hero Section */
        .hero {
            height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
        }
        .hero-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1920&h=1080&fit=crop') center/cover no-repeat;
            opacity: 0.4; filter: saturate(120%) contrast(110%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
            animation: scaleIn 20s ease-out infinite alternate;
        }
        .hero-content {
            position: relative; z-index: 10; width: 100%; text-align: center;
        }
        .hero h1 { font-size: clamp(4rem, 10vw, 10rem); margin-bottom: 10px; text-transform: uppercase; }
        .hero p { font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 300; margin-bottom: 40px; color: #ccc; }
        
        /* Stats / Social Proof */
        .stats-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px;
            margin-top: -80px; position: relative; z-index: 20;
        }
        .stat-card {
            padding: 40px 20px; text-align: center; transition: transform 0.5s ease;
        }
        .stat-card:hover { transform: translateY(-15px) scale(1.02); border-color: var(--brand-pink); }
        .stat-num { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; display: block; }
        .stat-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; color: #aaa; }

        /* About Section */
        .about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .img-wrapper {
            border-radius: 40px; overflow: hidden; position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }
        .img-wrapper::after {
            content: ''; position: absolute; inset: 0; border-radius: 40px;
            border: 2px solid rgba(255,255,255,0.1); pointer-events: none;
        }
        .img-wrapper img { transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); width: 100%; height: 100%; object-fit: cover; }
        .img-wrapper:hover img { transform: scale(1.1); }
        .about-text h2 { font-size: 4rem; margin-bottom: 30px; }
        .about-text p { font-size: 1.2rem; color: #bbb; margin-bottom: 20px; }

        /* Media Kit / Brands */
        .brands-section { text-align: center; }
        .brands-section h2 { font-size: 3.5rem; margin-bottom: 60px; }
        .gallery-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
        }
        .gallery-item {
            position: relative; border-radius: 24px; overflow: hidden; height: 400px;
        }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; filter: grayscale(20%); }
        .gallery-item:hover img { transform: scale(1.15); filter: grayscale(0%); }
        .gallery-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,18,18,0.9), transparent);
            display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
            opacity: 0; transition: opacity 0.4s ease;
        }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay h3 { font-size: 1.8rem; margin-bottom: 10px; transform: translateY(20px); transition: transform 0.4s ease; }
        .gallery-item:hover .gallery-overlay h3 { transform: translateY(0); }

        /* Lead Gen / Exclusive Content */
        .lead-gen {
            position: relative; padding: 100px 40px; text-align: center; overflow: hidden;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
        }
        .lead-gen::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle at center, rgba(131, 58, 180, 0.15) 0%, transparent 50%);
            animation: float 10s ease-in-out infinite; pointer-events: none;
        }
        .lead-gen h2 { font-size: 4rem; margin-bottom: 20px; z-index: 1; position: relative; }
        .lead-gen p { font-size: 1.3rem; color: #ccc; margin-bottom: 40px; max-width: 600px; z-index: 1; position: relative; }
        .form-group {
            display: flex; width: 100%; max-width: 500px; position: relative; z-index: 1;
            background: rgba(0,0,0,0.4); border-radius: 50px; padding: 8px;
            border: 1px solid var(--glass-border);
        }
        .form-group input {
            flex: 1; background: transparent; border: none; padding: 15px 25px;
            color: #fff; font-size: 1.1rem; outline: none; font-family: var(--font-main);
        }
        .form-group input::placeholder { color: #888; }
        .form-group button {
            padding: 15px 30px; border-radius: 40px; margin: 0;
        }

        /* Footer */
        footer {
            padding: 60px 0 30px; border-top: 1px solid var(--glass-border); text-align: center;
        }
        .social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
        .social-links a {
            width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border);
            font-weight: bold; transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--gradient-insta); transform: translateY(-5px) rotate(10deg); border-color: transparent;
        }
        .footer-text { color: #666; font-size: 0.9rem; }

        /* Responsive */
        @media (max-width: 992px) {
            .about-section { grid-template-columns: 1fr; text-align: center; }
            .about-text h2 { font-size: 3rem; }
            .hero h1 { font-size: 4rem; }
        }
        @media (max-width: 768px) {
            header { padding: 15px; width: 90%; }
            nav ul { display: none; /* Simplified for mobile strictness, would normally use a hamburger */ }
            .stats-grid { grid-template-columns: 1fr; margin-top: 40px; }
            .form-group { flex-direction: column; border-radius: 24px; background: transparent; border: none; gap: 15px; }
            .form-group input { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 24px; padding: 20px; }
            .form-group button { width: 100%; }
            .lead-gen h2 { font-size: 2.5rem; }
        }
