/*
Theme Name: RED HORIZON Portfolio
Theme URI: https://example.com/red-horizon
Author: Your Name
Author URI: https://example.com
Description: A modern portfolio theme with big red letters and horizontal parallax text fusion animations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: red-horizon
Tags: portfolio, red, modern, parallax, animation, responsive, full-width, grid
*/

/* ============================================
   RED HORIZON - WordPress Theme
   Modern Portfolio with Big Red Letters
   and Horizontal Parallax Text Fusion
   ============================================ */

/* CSS Variables - RED THEME */
:root {
    /* Primary Colors - Bold Red Palette */
    --red-primary: #e63946;
    --red-dark: #c1121f;
    --red-light: #ff6b6b;
    --red-pale: #ffe5e5;
    --red-gradient: linear-gradient(135deg, #e63946 0%, #ff6b6b 50%, #c1121f 100%);
    
    /* Neutral Colors */
    --black: #0a0a0a;
    --dark: #111111;
    --gray-dark: #1a1a1a;
    --gray: #2a2a2a;
    --gray-light: #404040;
    --white: #ffffff;
    --off-white: #f5f5f5;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    cursor: none;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--red-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-follower {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 2px solid var(--red-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out;
}

.custom-cursor.hover,
.cursor-follower.hover {
    transform: scale(1.5);
    background: var(--white);
    border-color: var(--red-primary);
}

/* ============================================
   CUSTOM CURSOR - WordPress Admin
   ============================================ */

.admin-bar .custom-cursor,
.admin-bar .cursor-follower {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .custom-cursor,
    .admin-bar .cursor-follower {
        top: 46px;
    }
}

/* ============================================
   CUSTOM CURSOR - Fallback for touch devices
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
    
    html,
    body {
        cursor: auto;
    }
    
    a, button {
        cursor: pointer;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray);
}

.site-branding .site-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-primary);
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.site-branding .site-description {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-navigation a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.main-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
   HERO SECTION - BIG RED LETTERS
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 3rem 4rem;
}

/* Horizontal Scroll Container */
.horizontal-scroll-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.horizontal-scroll-track {
    display: flex;
    gap: 2rem;
    animation: horizontalScroll 30s linear infinite;
}

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

/* Big Red Letters */
.big-red-letter {
    font-size: clamp(8rem, 25vw, 20rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px var(--red-primary);
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    transition: all var(--transition-slow);
    animation: letterGlow 4s ease-in-out infinite;
}

.big-red-letter.filled {
    color: var(--red-primary);
    -webkit-text-stroke: 0;
    animation: letterPulse 2s ease-in-out infinite;
}

@keyframes letterGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
    }
    50% {
        text-shadow: 0 0 60px rgba(230, 57, 70, 0.6);
    }
}

@keyframes letterPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Letter Fusion Effect */
.letter-fusion-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 2rem 0;
    overflow: hidden;
}

.fusion-letter {
    position: absolute;
    font-size: 12rem;
    font-weight: 900;
    color: var(--red-primary);
    opacity: 0;
    mix-blend-mode: overlay;
    animation: fusionMove 8s ease-in-out infinite;
}

.fusion-letter:nth-child(1) { left: 5%; animation-delay: 0s; }
.fusion-letter:nth-child(2) { left: 25%; animation-delay: 1s; }
.fusion-letter:nth-child(3) { left: 45%; animation-delay: 2s; }
.fusion-letter:nth-child(4) { left: 65%; animation-delay: 3s; }
.fusion-letter:nth-child(5) { left: 85%; animation-delay: 4s; }

@keyframes fusionMove {
    0%, 100% {
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
    10% {
        opacity: 0.8;
        transform: translateX(20px) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-20px) scale(1.2);
    }
    90% {
        opacity: 0.8;
        transform: translateX(0) scale(1);
    }
}

/* Parallax Text Lines */
.parallax-text-lines {
    position: relative;
    height: 200vh;
    overflow: hidden;
}

.parallax-line {
    position: absolute;
    left: 0;
    width: 100%;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 2px var(--gray);
    text-transform: uppercase;
    animation: parallaxLine 20s linear infinite;
}

.parallax-line:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.parallax-line:nth-child(2) {
    top: 40%;
    -webkit-text-stroke: 2px var(--red-primary);
    color: var(--red-primary);
    opacity: 0.3;
    animation: parallaxLineReverse 25s linear infinite;
    animation-delay: -10s;
}

.parallax-line:nth-child(3) {
    top: 70%;
    animation: parallaxLine 30s linear infinite;
    animation-delay: -5s;
}

@keyframes parallaxLine {
    0% { transform: translateX(10%); }
    100% { transform: translateX(-10%); }
}

@keyframes parallaxLineReverse {
    0% { transform: translateX(-10%); }
    100% { transform: translateX(10%); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-top: auto;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-title .red {
    color: var(--red-primary);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-red {
    padding: 1.25rem 2.5rem;
    background: var(--red-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-red:hover::before {
    left: 100%;
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    padding: 1.25rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--gray);
    border-radius: 4px;
    transition: all var(--transition-normal);
}

.btn-outline:hover {
    border-color: var(--red-primary);
    color: var(--red-primary);
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-light);
}

.scroll-line {
    width: 60px;
    height: 2px;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--red-primary);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 6rem 3rem;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
}

.section-title .red {
    color: var(--red-primary);
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.portfolio-item {
    grid-column: span 4;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark);
    transition: all var(--transition-normal);
}

.portfolio-item.large {
    grid-column: span 8;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(230, 57, 70, 0.2);
}

.portfolio-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    background: var(--red-primary);
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-excerpt {
    font-size: 0.875rem;
    color: var(--gray-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--dark);
    padding: 3rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-normal);
}

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

.service-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-5px);
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color var(--transition-normal);
}

.service-card:hover .service-number {
    color: var(--red-primary);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    font-size: 0.875rem;
    border-top: 1px solid var(--gray);
}

.service-features li::before {
    content: '→ ';
    color: var(--red-primary);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: testimonialScroll 40s linear infinite;
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--dark);
    padding: 3rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
}

.testimonial-content {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--off-white);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--red-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.author-info .name {
    font-weight: 700;
    display: block;
}

.author-info .company {
    font-size: 0.875rem;
    color: var(--gray-light);
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.contact-info h2 .red {
    color: var(--red-primary);
}

.contact-description {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray);
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-item a,
.contact-item span {
    color: var(--off-white);
}

.contact-item a:hover {
    color: var(--red-primary);
}

.contact-form {
    background: var(--black);
    padding: 3rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--gray-dark);
    border: 1px solid var(--gray);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-submit .submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--red-gradient);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.form-submit .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.4);
}

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

.site-footer {
    background: var(--black);
    padding: 4rem 3rem 2rem;
    border-top: 1px solid var(--gray);
}

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

.footer-brand .site-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-light);
    max-width: 300px;
}

.footer-column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--red-primary);
}

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

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

.footer-column a {
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.875rem;
}

/* ============================================
   WORDPRESS POST CONTENT
   ============================================ */

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.entry-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.entry-content a {
    color: var(--red-primary);
    text-decoration: underline;
}

.entry-content a:hover {
    color: var(--red-light);
}

.entry-content blockquote {
    border-left: 4px solid var(--red-primary);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
}

.entry-content ul,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* ============================================
   WORDPRESS POSTS LIST
   ============================================ */

.posts-list {
    display: grid;
    gap: 3rem;
}

.post-card {
    background: var(--dark);
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.post-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
}

.post-thumbnail {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-light);
}

.post-meta .category {
    color: var(--red-primary);
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.post-title a {
    transition: color var(--transition-fast);
}

.post-title a:hover {
    color: var(--red-primary);
}

.post-excerpt {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    color: var(--red-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.read-more:hover {
    color: var(--red-light);
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.pagination .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--red-primary);
    border-color: var(--red-primary);
}

/* ============================================
   WORDPRESS COMMENTS
   ============================================ */

.comments-area {
    max-width: 800px;
    margin: 4rem auto;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    margin-bottom: 3rem;
}

.comment {
    padding: 1.5rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 700;
}

.comment-author .says {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.comment-meta {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.comment-body p {
    margin-bottom: 1rem;
}

.reply a {
    color: var(--red-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.comment-respond {
    background: var(--dark);
    padding: 2rem;
    border-radius: 8px;
}

/* ============================================
   WIDGETS
   ============================================ */

.widget {
    background: var(--dark);
    padding: 1.5rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--off-white);
    transition: color var(--transition-fast);
}

.widget a:hover {
    color: var(--red-primary);
}

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

@media (max-width: 1200px) {
    .portfolio-item {
        grid-column: span 6;
    }
    
    .portfolio-item.large {
        grid-column: span 12;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    section {
        padding: 4rem 2rem;
    }
    
    .main-navigation {
        padding: 1rem 2rem;
    }
    
    .hero-section {
        padding: 6rem 2rem 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
    }
    
    .portfolio-item,
    .portfolio-item.large {
        grid-column: span 12;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .big-red-letter {
        font-size: clamp(4rem, 15vw, 8rem);
    }
    
    .fusion-letter {
        font-size: 6rem;
    }
    
    .parallax-text-lines {
        height: 100vh;
    }
    
    .parallax-line {
        font-size: clamp(2rem, 5vw, 4rem);
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }
    
    .hero-section {
        padding: 5rem 1rem 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-red,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .scroll-indicator {
        left: 1rem;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
}

/* ============================================
   WORDPRESS REQUIRED
   ============================================ */

/* WordPress Gallery */
.gallery {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    margin: 0;
}

.gallery-columns-2 .gallery-item {
    grid-column: span 6;
}

.gallery-columns-3 .gallery-item {
    grid-column: span 4;
}

.gallery-columns-4 .gallery-item {
    grid-column: span 3;
}

.gallery-columns-5 .gallery-item {
    grid-column: span 2;
}

.gallery img {
    border: 1px solid var(--gray) !important;
    border-radius: 4px;
}

/* WordPress Caption */
.wp-caption {
    max-width: 100%;
    margin-bottom: 2rem;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-light);
    padding: 0.5rem;
}

/* WordPress Embeds */
embed,
iframe,
object {
    max-width: 100%;
}

/* WordPress Image Alignment */
.alignnone {
    margin: 0;
}

.aligncenter {
    display: block;
    margin: 0 auto 2rem;
}

.alignleft {
    float: left;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.alignright {
    float: right;
    margin-left: 2rem;
    margin-bottom: 2rem;
}

/* WordPress Sticky Post */
.sticky {
    border: 2px solid var(--red-primary);
}

/* WordPress Password Protected */
.post-password-form {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--dark);
    border-radius: 8px;
}

.post-password-form label {
    display: block;
    margin-bottom: 1rem;
}

.post-password-form input[type="password"] {
    width: 100%;
    padding: 1rem;
    background: var(--gray-dark);
    border: 1px solid var(--gray);
    border-radius: 4px;
    color: var(--white);
}

.post-password-form input[type="submit"] {
    padding: 1rem 2rem;
    background: var(--red-primary);
    border: none;
    border-radius: 4px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
}

/* WordPress Error 404 */
.error-404 {
    text-align: center;
    padding: 6rem 2rem;
}

.error-404 .page-title {
    font-size: clamp(4rem, 15vw, 10rem);
    color: var(--red-primary);
    margin-bottom: 2rem;
}

.error-404 .page-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-form {
    max-width: 400px;
    margin: 2rem auto;
    display: flex;
}

.error-404 .search-form input[type="search"] {
    flex: 1;
    padding: 1rem;
    background: var(--dark);
    border: 1px solid var(--gray);
    border-radius: 4px 0 0 4px;
    color: var(--white);
}

.error-404 .search-form button {
    padding: 1rem 1.5rem;
    background: var(--red-primary);
    border: none;
    border-radius: 0 4px 4px 0;
    color: var(--white);
    font-weight: 700;
}

/* WordPress Custom Logo */
.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    max-width: 200px;
    height: auto;
}
