/*
Theme Name: Signal Marketing
Theme URI: https://signal.marketing
Author: Signal Marketing
Author URI: https://signal.marketing
Description: A modern, dark-themed WordPress theme for Signal Marketing digital agency
Version: 1.0
License: GPL v2 or later
Text Domain: signal-marketing
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #202020;
    --secondary-bg: #2a2a2a;
    --accent-pink: #fd5ef4;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --text-muted: #666666;
    --gradient-pink: radial-gradient(circle, #fd5ef4 0%, rgba(253, 94, 244, 0.3) 50%, transparent 70%);
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--accent-pink);
    color: white;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
    color: white;
}

.announcement-bar a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.5rem;
}

.announcement-bar a:hover {
    opacity: 0.9;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(32, 32, 32, 0);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    top: 0;
}

.site-header.scrolled ~ .announcement-bar {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

.main-navigation a:hover {
    color: var(--accent-pink);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 4rem 4rem 4rem;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, #fd5ef4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    font-size: clamp(3rem, 6vw, 5rem);
}

.hero-tagline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-pink);
    color: white;
    border: 2px solid var(--accent-pink);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-pink);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-bg);
}

/* Gradient Backgrounds */
.gradient-bg {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.gradient-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-pink);
    top: -300px;
    right: -200px;
    animation: float 20s infinite ease-in-out;
}

.gradient-circle-2 {
    width: 700px;
    height: 700px;
    background: var(--gradient-pink);
    bottom: -350px;
    left: -300px;
    animation: float 20s infinite ease-in-out reverse;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), #ff00ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(253, 94, 244, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-pink);
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--secondary-bg);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(253, 94, 244, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.portfolio-services {
    color: var(--accent-pink);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-results {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.portfolio-results i {
    color: var(--accent-pink);
    margin-right: 0.5rem;
}

.btn-text {
    color: var(--accent-pink);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-text:hover {
    transform: translateX(5px);
}

/* Section Spacing */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    background: linear-gradient(135deg, #ffffff 0%, #fd5ef4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-pink);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-bg);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: var(--text-muted);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-bg);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--secondary-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(253, 94, 244, 0.2);
}

.blog-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Add this CSS to your style.css file */

/* Services Archive Adjustments */
.services-section .service-card {
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.services-section .service-card p {
    flex-grow: 1;
}

.services-section .btn-text {
    margin-top: auto;
}

/* Single Service Page Styles */
.service-hero {
    padding: 10rem 0 5rem;
    position: relative;
    text-align: center;
    background: var(--primary-bg);
    min-height: auto;
}

.service-icon-large {
    font-size: 5rem;
    color: var(--accent-pink);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.service-hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, #fd5ef4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-main {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-main h2 {
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.content-main h3 {
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
}

.content-main ul {
    margin: 1rem 0 1rem 2rem;
}

.content-main li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Features Section */
.features-section {
    margin-top: 3rem;
    padding: 3rem;
    background: var(--secondary-bg);
    border-radius: 20px;
}

.features-section h2 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-list i {
    color: var(--accent-pink);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
}

.sidebar-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1.5rem 0;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--accent-pink);
}

.guarantee i {
    font-size: 1.5rem;
}

.guarantee p {
    margin: 0;
    font-weight: 600;
    color: var(--accent-pink);
}

.benefits-list {
    list-style: none;
    text-align: left;
}

.benefits-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.benefits-list i {
    color: var(--accent-pink);
}

/* Process & Results */
.process-content,
.results-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        margin-top: 10% !important;
        position: static;
        max-width: 500px;
        margin: 3rem auto 0;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 8rem 0 4rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--accent-pink);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding: 5rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transform-origin: top left;
        transform: scale(0);
        opacity: 0;
    }
    
    .main-navigation.active {
        left: 0;
        transform: scale(1);
        opacity: 1;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .main-navigation a {
        font-size: 1.5rem;
        color: white !important;
        font-weight: 600;
    }
    
    .main-navigation a::after {
        background: white;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column:nth-child(3) {
        order: -1;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 0;
    }
}