/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    background: linear-gradient(135deg, #000012, #001122);
    border: 3px solid #00ffff;
    box-shadow: 0 0 30px #ff00ff;
    border-radius: 10px;
    overflow: hidden;
}

.photo-modal-content {
    max-width: 1200px;
}

.placeholder-modal-content {
    max-width: 800px;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #ff00ff;
    font-size: 35px;
    font-weight: bold;
    cursor: crosshair;
    z-index: 2001;
    text-shadow: 0 0 10px #ff00ff;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    transform: scale(1.2);
}

#modalImage,
#modalPhoto {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
    border-bottom: 2px solid #00ffff;
}

.modal-info {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.modal-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 255, 255, 0.05) 20px,
        rgba(0, 255, 255, 0.05) 40px
    );
    pointer-events: none;
}

.modal-info h3 {
    color: #00ffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.modal-info p {
    color: #00ff00;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 0 5px #00ff00;
    position: relative;
    z-index: 2;
}

/* Placeholder Modal Styles */
.placeholder-modal-display {
    display: flex;
    flex-direction: column;
}

.placeholder-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #000012, #001122);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #00ffff;
}

.photo-placeholder-large {
    background: linear-gradient(-45deg, #000012, #001122);
}

.placeholder-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(255, 0, 255, 0.1) 30px,
        rgba(255, 0, 255, 0.1) 60px
    );
    animation: rotate 20s linear infinite;
}

.placeholder-large-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.placeholder-large-content h4 {
    color: #ff00ff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff00ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: neon-flicker 2s ease-in-out infinite alternate;
}

.placeholder-large-content p {
    color: #00ffff;
    font-size: 1.5rem;
    text-shadow: 0 0 5px #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Click Indicators */
.click-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 255, 0.9);
    color: #000;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #00ffff;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 10px #ff00ff;
}

.portfolio-item:hover .click-indicator,
.photography-item:hover .click-indicator {
    opacity: 1;
    transform: scale(1.05);
}

/* Portfolio Item Cursor */
.portfolio-item {
    cursor: pointer;
}

.portfolio-item:hover {
    cursor: pointer;
}

/* Photography Item Cursor */
.photography-item {
    cursor: pointer;
}

.photography-item:hover {
    cursor: pointer;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Responsive Modal Design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .close {
        font-size: 28px;
        top: 10px;
        right: 20px;
    }
    
    .modal-info {
        padding: 1.5rem;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-info p {
        font-size: 1rem;
    }
    
    .placeholder-large {
        height: 250px;
    }
    
    .placeholder-large-content h4 {
        font-size: 2rem;
    }
    
    .placeholder-large-content p {
        font-size: 1.2rem;
    }
    
    .click-indicator {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

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

body {
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    color: #00ff00;
    background: #000012;
    overflow-x: hidden;
    cursor: crosshair;
}

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

/* 90s Retro Effects */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes scan-lines {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

.scan-line::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    animation: scan-lines 3s linear infinite;
    z-index: 1000;
}

/* Header Styles */
header {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    color: #000;
    position: relative;
    z-index: 100;
    box-shadow: 0 0 20px #ff00ff;
    border-bottom: 3px solid #00ffff;
    padding-top: 2rem;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    gap: 1rem;
}

.nav-left a, .nav-right a {
    color: #000;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #000;
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.nav-left a:hover::before, .nav-right a:hover::before {
    left: 100%;
}

.nav-left a:hover, .nav-right a:hover {
    background: #ff00ff;
    color: #ffff00;
    box-shadow: 0 0 10px #ff00ff;
    transform: scale(1.05);
}

.logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.header-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px #00ffff) saturate(1.5) contrast(1.2);
    animation: neon-flicker 2s ease-in-out infinite alternate;
}

    transform: scale(1.1) rotate(-1deg);
    animation: glitch 0.1s ease-in-out infinite;
}

/* Fog F-15 Section */
.fog-f15-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #000012, #001122);
    position: relative;
}

.fog-f15-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 4px,
        rgba(0, 255, 255, 0.02) 4px,
        rgba(0, 255, 255, 0.02) 8px
    );
    pointer-events: none;
}

.fog-f15-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 3px solid #00ffff;
    box-shadow: 
        0 0 30px #ff00ff,
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    filter: saturate(1.2) contrast(1.1);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.fog-f15-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 40px #00ffff,
        inset 0 0 40px rgba(255, 0, 255, 0.2);
    filter: saturate(1.4) contrast(1.3);
}
/* Hero Section */
.hero {
    background-image: 
        linear-gradient(45deg, rgba(255, 0, 255, 0.1) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(0, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(255, 0, 255, 0.3)), 
        url('Final-18X24_Wbleed.png');
    background-size: 20px 20px, 20px 20px, cover, cover;
    background-position: 0 0, 0 10px, center, center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #00ffff;
    position: relative;
    overflow: hidden;
    margin-top: -5rem;
    padding-top: 7rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.03) 2px,
        rgba(0, 255, 0, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #ff00ff,
        3px 3px 0px #ff00ff;
    font-weight: bold;
    letter-spacing: 3px;
    animation: neon-flicker 1.5s ease-in-out infinite alternate;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border: 2px solid #00ffff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 3px solid #ffff00;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px #ff00ff;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ffff00, #ff00ff);
    transform: scale(1.1) rotate(-1deg);
    animation: glitch 0.1s ease-in-out infinite;
}

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

section:nth-child(odd) {
    background: linear-gradient(135deg, #000012, #001122);
}

section:nth-child(even) {
    background: linear-gradient(135deg, #001122, #000012);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #ff00ff,
        2px 2px 0px #ff00ff;
    animation: neon-flicker 2s ease-in-out infinite alternate;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00);
    animation: gradient-shift 2s ease infinite;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    border: 3px solid #00ffff;
    box-shadow: 
        0 0 20px #ff00ff,
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    filter: saturate(1.2) contrast(1.1);
}

.about-image:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
        0 0 30px #00ffff,
        inset 0 0 30px rgba(255, 0, 255, 0.2);
    animation: glitch 0.2s ease-in-out infinite;
}

.about-text {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 2px solid #ff00ff;
    position: relative;
}

.about-text::before {
    content: '> ABOUT_US.EXE';
    position: absolute;
    top: -10px;
    left: 10px;
    background: #000012;
    color: #00ffff;
    padding: 0 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #00ff00;
    line-height: 1.8;
    text-shadow: 0 0 3px #00ff00;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    background: #000;
    border: 3px solid #00ffff;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 0 15px #ff00ff;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 255, 0.05) 10px,
        rgba(0, 255, 255, 0.05) 20px
    );
    pointer-events: none;
    z-index: 1;
}

.portfolio-item:hover {
    transform: scale(1.05) rotate(-1deg);
    border-color: #ff00ff;
    box-shadow: 0 0 25px #00ffff;
    animation: glitch 0.1s ease-in-out infinite;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: saturate(1.3) contrast(1.2);
    transition: all 0.3s ease;
}

.portfolio-item:hover img {
    filter: saturate(1.5) contrast(1.4) hue-rotate(30deg);
}

.portfolio-item h3 {
    padding: 1rem;
    font-size: 1.3rem;
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-item p {
    padding: 0 1rem 1.5rem;
    color: #00ff00;
    text-shadow: 0 0 3px #00ff00;
}

.portfolio-link {
    text-align: center;
}

.view-more {
    display: inline-block;
    color: #ff00ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border: 3px solid #ff00ff;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

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

.view-more:hover::before {
    left: 100%;
}

.view-more:hover {
    background: #ff00ff;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff00ff;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: rgba(0, 0, 0, 0.9);
    padding: 2.5rem 2rem;
    border: 2px solid #00ffff;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 0, 255, 0.1) 90deg,
        transparent 180deg
    );
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-item:hover {
    transform: scale(1.05);
    border-color: #ff00ff;
    box-shadow: 
        0 0 20px #00ffff,
        inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item p {
    color: #00ff00;
    line-height: 1.7;
    text-shadow: 0 0 3px #00ff00;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 2px solid #00ffff;
    position: relative;
}

.contact-form::before {
    content: '> CONTACT.EXE';
    position: absolute;
    top: -10px;
    left: 10px;
    background: #000012;
    color: #00ffff;
    padding: 0 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 2px solid #ff00ff;
    background: rgba(0, 0, 0, 0.9);
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #00ffff;
    opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000;
    padding: 1rem 2rem;
    border: 3px solid #ffff00;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: crosshair;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #ffff00, #ff00ff);
    transform: scale(1.05);
    box-shadow: 0 0 20px #ff00ff;
    animation: glitch 0.1s ease-in-out infinite;
}

.contact-info {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border: 2px solid #ff00ff;
    position: relative;
}

.contact-info::before {
    content: '> INFO.TXT';
    position: absolute;
    top: -10px;
    left: 10px;
    background: #000012;
    color: #ff00ff;
    padding: 0 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #00ff00;
    line-height: 1.8;
    text-shadow: 0 0 3px #00ff00;
}

/* Footer */
footer {
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    color: #000;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #00ffff;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

footer p {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links a {
    color: #000;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #000;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #00ffff;
    transform: scale(1.1);
    box-shadow: 0 0 10px #ff00ff;
}

/* Portfolio Page Hero */
.hero-portfolio {
    background-image: 
        linear-gradient(45deg, rgba(255, 0, 255, 0.2) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(0, 255, 255, 0.2) 25%, transparent 25%),
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(255, 0, 255, 0.4)),
        radial-gradient(circle at center, #ff00ff 0%, #00ffff 50%, #ffff00 100%);
    min-height: 50vh;
}

/* Photography Page Hero */
.hero-photography {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 0, 0.1) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(0, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 255, 255, 0.4)),
        radial-gradient(circle at center, #00ffff 0%, #ff00ff 50%, #000012 100%);
    min-height: 50vh;
}

/* Portfolio Page Specific */
.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    position: relative;
}

.portfolio-cta::before {
    content: '> READY_TO_START.EXE';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #000012;
    color: #00ffff;
    padding: 0 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.portfolio-cta h3 {
    color: #ffff00;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #ffff00;
    text-transform: uppercase;
}

.portfolio-cta p {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 3px #00ff00;
}

/* Placeholder Items */
.placeholder-item {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #000012, #001122);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff00ff;
    position: relative;
    overflow: hidden;
}

.placeholder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(0, 255, 255, 0.1) 15px,
        rgba(0, 255, 255, 0.1) 30px
    );
}

.placeholder-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.placeholder-content h4 {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #00ffff;
    text-transform: uppercase;
}

.placeholder-content p {
    color: #ff00ff;
    text-shadow: 0 0 3px #ff00ff;
}

/* Photography Page Specific */
.photography-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000012, #001122);
}

.photography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.photography-item {
    position: relative;
    overflow: hidden;
    border: 3px solid #00ffff;
    background: #000;
    transition: all 0.3s ease;
}

.photography-item.large-item {
    grid-column: span 2;
}

.photography-item:hover {
    transform: scale(1.02);
    border-color: #ff00ff;
    box-shadow: 0 0 30px #00ffff;
}

.photography-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.photography-item:hover img {
    filter: saturate(1.4) contrast(1.3) brightness(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(70%);
    transition: all 0.3s ease;
}

.photography-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    color: #00ffff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px #00ffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photo-overlay p {
    color: #00ff00;
    line-height: 1.6;
    text-shadow: 0 0 3px #00ff00;
    font-size: 0.9rem;
}

.placeholder-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #000012, #001122);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 0, 255, 0.1) 20px,
        rgba(255, 0, 255, 0.1) 40px
    );
}

.photography-services {
    margin-top: 5rem;
}

.photography-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff00ff;
    position: relative;
}

.photography-cta::before {
    content: '> BOOK_SESSION.EXE';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #000012;
    color: #ff00ff;
    padding: 0 10px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.photography-cta h3 {
    color: #ffff00;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #ffff00;
    text-transform: uppercase;
}

.photography-cta p {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 3px #00ff00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .photography-item.large-item {
        grid-column: span 1;
    }
    
    .photo-overlay {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.9);
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .placeholder-item,
    .placeholder-photo {
        height: 200px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-left, .nav-right {
        justify-content: center;
    }
    
    .logo-container {
        position: static;
        transform: none;
    }
    
    .header-logo {
        width: 100px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-left a, .nav-right a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
} 