﻿/* ============================================================================
   WEDDING PHOTOGRAPHY PAGE STYLES
   ============================================================================ */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Global Styles */
* {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: #0d1117;
    color: #e2e8f0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

main {
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 4em;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 1.5em;
    color: #e2e8f0;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 1em;
    color: #cbd5e1;
}

p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #94a3b8;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.28) 0%, rgba(236, 72, 153, 0.08) 100%);
    color: #e2e8f0;
    padding: 3em 2em;
    border-radius: 1.5em;
    border-left: 6px solid rgba(236, 72, 153, 0.8);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.hero-text {
    flex: 1 1 400px;
    padding: 1em;
}

.hero-text h1 {
    font-size: 3.5em;
    margin-bottom: 0.3em;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.4em;
    color: #94a3b8;
    margin-bottom: 0.5em;
    font-weight: 500;
}

.hero-text .tagline {
    font-size: 1.1em;
    color: #8894a7;
    font-style: italic;
    margin-bottom: 1em;
}

.hero-text .role {
    font-size: 1.2em;
    color: #ec4899;
    font-weight: 600;
    padding: 0.5em 1em;
    background: rgba(236, 72, 153, 0.25);
    border-radius: 0.5em;
    display: inline-block;
    margin-bottom: 0.5em;
}

.hero-text .stats {
    font-size: 1em;
    color: #8894a7;
    font-weight: 500;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
    padding: 1em;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 1.5em;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
}

/* ============================================================================
   PHILOSOPHY SECTION
   ============================================================================ */
.philosophy {
    background: #161b22;
    padding: 3em 2em;
    border-radius: 1.5em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    align-items: center;
}

.philosophy-text {
    flex: 1 1 500px;
}

.philosophy-text p {
    margin-bottom: 1.5em;
}

.philosophy-text strong {
    color: #ec4899;
    font-weight: 600;
}

.philosophy-image {
    flex: 1 1 350px;
    text-align: center;
}

.philosophy-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 1em;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================================================
   EXPERTISE SECTION
   ============================================================================ */
.expertise {
    background: linear-gradient(135deg, #161b22 0%, #1a2332 100%);
    padding: 3em 2em;
    border-radius: 1.5em;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
}

.expertise-card {
    background: #161b22;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #ec4899;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(236, 72, 153, 0.4);
}

.card-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.expertise-card h3 {
    margin-top: 0;
    color: #e2e8f0;
    font-size: 1.5em;
}

.expertise-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1em;
}

.expertise-card p:last-child {
    margin-bottom: 0;
}

.expertise-card strong {
    color: #ec4899;
}

/* ============================================================================
   PROCESS TIMELINE SECTION
   ============================================================================ */
.process {
    background: #161b22;
    padding: 3em 2em;
    border-radius: 1.5em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2em;
    margin-bottom: 3em;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.3) 0%, rgba(236, 72, 153, 0.05) 100%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.28) 0%, rgba(236, 72, 153, 0.08) 100%);
    border: 3px solid #ec4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.marker-number {
    font-size: 2em;
    font-weight: 700;
    color: #ec4899;
}

.timeline-content {
    flex: 1;
    background: #0d1117;
    padding: 1.5em;
    border-radius: 1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.timeline-content h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #e2e8f0;
}

.timeline-content p {
    margin-bottom: 1em;
}

.process-features {
    list-style: none;
    padding: 0;
    margin: 1em 0 0;
}

.process-features li {
    padding: 0.6em 0 0.6em 2em;
    color: #94a3b8;
    position: relative;
}

.process-features li::before {
    content: "✓";
    color: #ec4899;
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* ============================================================================
   PORTFOLIO SHOWCASE SECTION
   ============================================================================ */
.portfolio {
    background: linear-gradient(135deg, #161b22 0%, #1a2332 100%);
    padding: 3em 2em;
    border-radius: 1.5em;
}

.portfolio-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3em;
}

.portfolio-intro p {
    font-size: 1.15em;
    color: #94a3b8;
}

.portfolio-categories {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.category h3 {
    text-align: center;
    color: #ec4899;
    margin-bottom: 1.5em;
    font-size: 2em;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
}

.portfolio-item {
    position: relative;
    background: #161b22;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.portfolio-item.featured {
    grid-column: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.portfolio-item.featured img {
    height: 450px;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2em 1.5em 1.5em;
    color: #ffffff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(-5px);
}

.portfolio-overlay h4 {
    margin: 0 0 0.3em;
    font-size: 1.4em;
    color: #ffffff;
}

.portfolio-overlay p {
    margin: 0;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   CLIENT EXPERIENCE SECTION
   ============================================================================ */
.client-experience {
    background: #161b22;
    padding: 3em 2em;
    border-radius: 1.5em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
}

.experience-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0.06) 100%);
    padding: 2em;
    border-radius: 1em;
    text-align: center;
    border: 2px solid rgba(236, 72, 153, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.15);
}

.experience-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.experience-card h3 {
    font-size: 1.4em;
    margin-bottom: 0.8em;
    color: #e2e8f0;
}

.experience-card p {
    font-size: 1em;
    color: #94a3b8;
    margin: 0;
}

.experience-card strong {
    color: #ec4899;
}

/* ============================================================================
   TECHNICAL SKILLS SECTION
   ============================================================================ */
.technical-skills {
    background: linear-gradient(135deg, #161b22 0%, #1a2332 100%);
    padding: 3em 2em;
    border-radius: 1.5em;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2em;
}

.skill-category {
    background: #161b22;
    padding: 1.5em;
    border-radius: 1em;
    border-left: 4px solid #ec4899;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.skill-category h3 {
    font-size: 1.4em;
    margin-top: 0;
    color: #e2e8f0;
    margin-bottom: 1em;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    padding: 0.6em 0;
    border-bottom: 1px solid rgba(236, 72, 153, 0.25);
    color: #94a3b8;
}

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

.skill-category strong {
    color: #e2e8f0;
    font-weight: 600;
}

/* ============================================================================
   IMPACT SECTION
   ============================================================================ */
.impact {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0.06) 100%);
    padding: 3em 2em;
    border-radius: 1.5em;
}

.impact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin-bottom: 3em;
}

.impact-card {
    background: #161b22;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border-left: 4px solid #ec4899;
}

.impact-card h3 {
    margin-top: 0;
    color: #e2e8f0;
}

.impact-card strong {
    color: #ec4899;
}

.skills-gained {
    background: #161b22;
    padding: 2em;
    border-radius: 1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.skills-gained h3 {
    text-align: center;
    margin-bottom: 1.5em;
    color: #e2e8f0;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.28) 0%, rgba(236, 72, 153, 0.08) 100%);
    color: #e2e8f0;
    padding: 0.6em 1.2em;
    border-radius: 2em;
    font-size: 0.95em;
    font-weight: 500;
    border: 2px solid rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(236, 72, 153, 0.4);
    border-color: #ec4899;
    transform: scale(1.05);
}

/* ============================================================================
   CALL TO ACTION SECTION
   ============================================================================ */
.cta {
    background: #161b22;
    padding: 3em 2em;
    border-radius: 1.5em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.cta-content h2 {
    color: #ec4899;
    margin-bottom: 1em;
}

.cta-content > p {
    max-width: 800px;
    margin: 0 auto 2em;
    font-size: 1.15em;
    color: #94a3b8;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.cta-stat {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0.06) 100%);
    padding: 2em 1.5em;
    border-radius: 1em;
    border: 2px solid rgba(236, 72, 153, 0.4);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 0.3em;
    line-height: 1;
}

.cta-stat p {
    font-size: 1em;
    color: #94a3b8;
    margin: 0;
    font-weight: 600;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 768px) {
    main {
        padding: 1em;
    }

    section {
        margin-bottom: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .hero-text .subtitle {
        font-size: 1.1em;
    }

    .hero,
    .philosophy-content,
    .expertise-cards,
    .experience-grid,
    .skills-grid,
    .impact-content {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1em;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-marker {
        margin: 0 auto;
    }

    .portfolio-item.featured {
        grid-column: span 1;
    }

    .portfolio-item img,
    .portfolio-item.featured img {
        height: 250px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5em;
    }
}

/* Accessibility & Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
