/* Common Page Title Styles - GAPM 2026 */
/* This file provides consistent page title styling across all pages except home */

/* Base Page Title Styles */
.page-title {
    background: linear-gradient(135deg, #083281 0%, #3785C4 50%, #5ba3d9 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px 0;
    color: white;
}

/* Medical DNA Pattern Overlay */
.page-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><defs><pattern id="dna" patternUnits="userSpaceOnUse" width="200" height="60"><g fill="rgba(255,255,255,0.15)"><circle cx="20" cy="15" r="3"/><circle cx="40" cy="20" r="3"/><circle cx="60" cy="25" r="3"/><circle cx="80" cy="30" r="3"/><circle cx="100" cy="35" r="3"/><circle cx="120" cy="30" r="3"/><circle cx="140" cy="25" r="3"/><circle cx="160" cy="20" r="3"/><circle cx="180" cy="15" r="3"/><circle cx="200" cy="20" r="3"/><circle cx="20" cy="45" r="3"/><circle cx="40" cy="40" r="3"/><circle cx="60" cy="35" r="3"/><circle cx="80" cy="30" r="3"/><circle cx="100" cy="25" r="3"/><circle cx="120" cy="30" r="3"/><circle cx="140" cy="35" r="3"/><circle cx="160" cy="40" r="3"/><circle cx="180" cy="45" r="3"/><circle cx="200" cy="40" r="3"/><path d="M20,15 Q30,10 40,20 Q50,30 60,25 Q70,20 80,30 Q90,40 100,35 Q110,30 120,30 Q130,30 140,25 Q150,20 160,20 Q170,20 180,15" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><path d="M20,45 Q30,50 40,40 Q50,30 60,35 Q65,40 80,30 Q90,20 100,25 Q110,30 120,30 Q130,30 140,35 Q150,40 160,40 Q170,40 180,45" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/><g stroke="rgba(255,255,255,0.08)" stroke-width="1"><line x1="20" y1="15" x2="20" y2="45"/><line x1="40" y1="20" x2="40" y2="40"/><line x1="60" y1="25" x2="60" y2="35"/><line x1="80" y1="30" x2="80" y2="30"/><line x1="100" y1="35" x2="100" y2="25"/><line x1="120" y1="30" x2="120" y2="30"/><line x1="140" y1="25" x2="140" y2="35"/><line x1="160" y1="20" x2="160" y2="40"/><line x1="180" y1="15" x2="180" y2="45"/></g></g></pattern></defs><rect width="200" height="60" fill="url(%23dna)"/></svg>');
    opacity: 0.4;
}

/* Container positioning */
.page-title .auto-container {
    position: relative;
    z-index: 2;
}

/* Page Title Heading */
.page-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Breadcrumb Styling - Hidden */
.page-title .bread-crumb {
    display: none;
}

/* Specific Page Title Classes */
.committee-page-title,
.registration-page-title,
.faculty-page-title,
.abstract-page-title,
.schedule-page-title,
.accommodation-page-title,
.contact-page-title,
.place-to-visit-page-title {
    /* All inherit from base .page-title styles */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        padding: 60px 0 40px 0;
    }
    
    .page-title h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .page-title .bread-crumb li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-title h1 {
        font-size: 28px;
    }
    
    .page-title .bread-crumb li {
        font-size: 13px;
    }
    
    .page-title .bread-crumb li:not(:last-child):after {
        margin: 0 6px;
    }
}

/* Animation for page load */
.page-title h1 {
    animation: fadeInUp 0.8s ease-out;
}

.page-title .bread-crumb {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 