/* Photography Page Specific Styles */

/* Hero Section */
.photography-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.photography-hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

.photography-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/photography/photography_banner.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.photography-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.photography-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.photography-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.photography-hero-subtitle {
    
    color: #ffffff;
}

.photography-hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Services Section */
.photography-services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.photography-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.photography-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.photography-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.photography-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.photography-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.photography-service-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.photography-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photography-service-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.photography-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photography-service-item:hover .photography-service-image img {
    transform: scale(1.1);
}

.photography-service-content {
    padding: 2rem;
}

.photography-service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.photography-service-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.photography-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photography-service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.photography-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Content Section */
.photography-content-section {
    padding: 6rem 0;
    background: #19365f;
    color: var(--white);
}

.photography-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.photography-content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.photography-content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.photography-content-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.photography-content-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Portfolio Section */
.photography-portfolio-section {
    padding: 6rem 0;
    background: var(--white);
}

.photography-portfolio-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.photography-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.photography-portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.photography-portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.photography-portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photography-portfolio-item:hover img {
    transform: scale(1.1);
}

.photography-portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photography-portfolio-item:hover .photography-portfolio-overlay {
    opacity: 1;
}

.photography-portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* Process Section */
.photography-process-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.photography-process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.photography-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.photography-process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.photography-process-step:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.photography-step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.photography-process-step:hover .photography-step-number {
    background: var(--white);
    color: var(--primary-color);
}

.photography-process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.photography-process-step:hover h3 {
    color: var(--white);
}

.photography-process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.photography-process-step:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.photography-cta-section {
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.photography-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.photography-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photography-cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.photography-cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.photography-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.photography-btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.photography-btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.photography-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1.1rem;
}

.photography-btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .photography-hero-title {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }
    
    .photography-content-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .photography-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .photography-hero {
        height: 80vh;
    }
    
    .photography-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .photography-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .photography-section-title {
        font-size: 2rem;
    }
    
    .photography-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .photography-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .photography-process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .photography-cta-section {
        padding: 4rem 0;
    }
    
    .photography-cta-title {
        font-size: 2.2rem;
    }
    
    .photography-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .photography-btn-primary,
    .photography-btn-outline {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .photography-hero {
        height: 80vh;
    }
    
    .photography-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .photography-hero-subtitle {
        font-size: 1rem;
    }
    
    .photography-section-title {
        font-size: 1.8rem;
    }
    
    .photography-services-section {
        padding: 4rem 0;
    }
    
    .photography-content-section {
        padding: 4rem 0;
    }
    
    .photography-portfolio-section {
        padding: 4rem 0;
    }
    
    .photography-process-section {
        padding: 4rem 0;
    }
    
    .photography-cta-title {
        font-size: 1.8rem;
    }
    
    .photography-cta-subtitle {
        font-size: 1rem;
    }
}


/* ========================================
   FOOTER SIZE REDUCTION
   ======================================== */

/* Footer Logo Size Reduction */
.footer-brand .logo {
    height: 100px !important;
    width: 140px !important;
}

/* Footer Paragraph Spacing Reduction */
.footer-brand p {
    margin-bottom: 1rem !important;
}
