/*
Theme Name: All Things Gaming Theme
Theme URI: https://gamenews.games
Author: Your Name
Author URI: https://gamenews.games
Description: A colorful and fun gaming landing page theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gaming-theme
*/

/* ========================================
   All Things Gaming - Landing Page Styles
   ======================================== */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow-x: hidden;
}

.gaming-landing-page {
    font-family: 'Arial', 'Helvetica', sans-serif;
    overflow-x: hidden;
}

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

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.site-title {
    font-size: 4rem;
    color: #ffffff;
    margin: 0 0 30px 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.announcement-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.bold-description {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   Image Gallery Section
   ======================================== */

.image-gallery {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 50px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.image-placeholder {
    aspect-ratio: 1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.image-placeholder:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.placeholder-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.placeholder-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.placeholder-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.placeholder-4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.placeholder-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.placeholder-content .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

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

.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Image Captions - Top Position
   ======================================== */

.image-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px 15px 20px 15px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-placeholder:hover .image-caption {
    opacity: 1;
}

.image-caption p {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Always show captions on mobile */
@media (max-width: 768px) {
    .image-caption {
        opacity: 1;
    }
}

/* ========================================
   Info Section
   ======================================== */

.info-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-box:hover {
    transform: scale(1.05);
}

.info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.info-box p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.box-1 {
    border-top: 5px solid #f093fb;
}

.box-2 {
    border-top: 5px solid #4facfe;
}

.box-3 {
    border-top: 5px solid #43e97b;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to right, #f093fb 0%, #f5576c 50%, #4facfe 100%);
}

.cta-section h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 30px;
}

.social-placeholder {
    font-size: 2rem;
    margin-top: 30px;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .site-title {
        font-size: 2.5rem;
    }
    
    .bold-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .announcement-box {
        padding: 25px;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 50px 20px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
}
