/*
Theme Name: GIFs Copy Paste
Theme URI: https://gifscopypaste.com
Description: A beautiful, modern theme for gifscopypaste.com - Your #1 destination for copy-paste content, emojis, and text messages. Features clean design, mobile-responsive layout, and optimized for SEO.
Version: 1.0
Author: GIFs Copy Paste
Author URI: https://gifscopypaste.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gifscopypaste
Tags: copy-paste, emoji, gifs, messages, text-generator, modern, clean, responsive, seo-optimized
*/

/* ===========================
   GLOBAL STYLES
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    font-size: 16px;
}

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

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

/* ===========================
   HEADER STYLES
=========================== */

.site-header {
    background: linear-gradient(135deg, #ff6b9d 0%, #c06c84 50%, #6c5b7b 100%);
    color: var(--white);
    padding: 0;
    box-shadow: 0 4px 20px rgba(255,107,157,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '😀 🎉 ❤️ 🔥 ✨ 💯 🚀 🎨 💕 🌟 😎 🎵 🎮 📱 💻 🍕 ☕ 🌈 ⭐ 🎯 🎊 💫 🦄 🎪 🎭 😀 🎉 ❤️ 🔥 ✨ 💯 🚀 🎨 💕 🌟 😎 🎵 🎮 📱 💻 🍕 ☕ 🌈 ⭐ 🎯 🎊 💫 🦄 🎪 🎭';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 2.5em;
    opacity: 0.4;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    animation: scrollEmojis 30s linear infinite;
}

@keyframes scrollEmojis {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.header-top {
    background: rgba(0,0,0,0.1);
    padding: 10px 0;
    font-size: 14px;
}

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

.header-contact a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.header-contact a:hover {
    text-decoration: underline;
}

.header-main {
    padding: 20px 0;
}

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

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s;
}

.site-logo:hover {
    transform: scale(1.05);
}

.site-logo h1 {
    font-size: 2em;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.site-logo span {
    font-size: 2.5em;
    margin-right: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.site-tagline {
    font-size: 0.9em;
    opacity: 0.9;
    margin-top: 5px;
}

/* Navigation */
.main-navigation {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-navigation a:hover,
.main-navigation a.active {
    background: rgba(255,255,255,0.2);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5em;
    cursor: pointer;
}

/* ===========================
   HERO SECTION
=========================== */

.hero-section {
    background: linear-gradient(135deg, #ffc3e1 0%, #ffb3d9 100%);
    color: var(--text-dark);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ===========================
   MAIN CONTENT
=========================== */

.site-main {
    padding: 60px 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-description {
    font-size: 1.2em;
    color: var(--text-light);
}

/* ===========================
   FOOTER STYLES
=========================== */

.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #ff6b9d;
}

.site-footer::before {
    content: '🎬 📋 💬 ✂️ 📝 💾 🎯 🌟 💡 🎨 🔮 🎪 🎭 🎸 🎹 🎺 🎻 🥁 🎤 🎧 🎮 🕹️ 🎲 🧩 🎰 🎬 📋 💬 ✂️ 📝 💾 🎯 🌟 💡 🎨 🔮 🎪 🎭 🎸 🎹 🎺 🎻 🥁 🎤 🎧 🎮 🕹️ 🎲 🧩 🎰';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 3em;
    opacity: 0.35;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    animation: scrollEmojisReverse 35s linear infinite;
}

@keyframes scrollEmojisReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    margin-bottom: 20px;
    font-size: 1.3em;
}

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

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .main-navigation.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2em;
    }
    
    .hero-content p {
        font-size: 1.1em;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}
