/* Custom Page Banner Styles */

/* Default page header style (inherited from main CSS) */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/hero/page-header.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

/* Auction Guide Page Header */
.auction-guide-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero_banners/auction_guide_hero.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 30s infinite alternate;
}

/* Sell Now Page Header */
.sell-now-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero_banners/sell_now_hero.jpg');
    background-size: cover;
    background-position: center 30%;
    animation: slowZoom 30s infinite alternate;
}

/* Valuations Page Header */
.valuations-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/hero_banners/valuations_hero.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}

/* Enhanced Styling for Page Headers */
.enhanced-header {
    padding: 120px 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.enhanced-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.enhanced-header .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enhanced-header h2 {
    font-size: 46px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.enhanced-header p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .enhanced-header {
        padding: 80px 0;
    }
    
    .enhanced-header h2 {
        font-size: 32px;
    }
    
    .enhanced-header p {
        font-size: 18px;
    }
}

/* Page-specific content styling */

/* Auction Guide Page Styling */
.auction-guide-content .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guide-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.guide-section h4 {
    color: var(--dark-color);
    font-size: 20px;
    margin: 20px 0 15px;
}

.guide-section ul, 
.guide-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.guide-section ul li, 
.guide-section ol li {
    margin-bottom: 10px;
}

.auction-types {
    margin-bottom: 40px;
}

.auction-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.auction-type-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.auction-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.auction-type-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Sell Now Page Styling */
.sell-now-content .sell-now-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.sell-now-intro ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-left: 20px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    width: 220px;
    margin-bottom: 30px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.sell-now-form-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Valuations Page Styling */
.valuations-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.valuation-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.valuation-type-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-color);
}

.valuation-type-card:hover {
    transform: translateY(-5px);
}

.valuation-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    height: 60px;
    width: 60px;
    background-color: rgba(30, 58, 95, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
}

.feature-icon {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    color: rgba(30, 58, 95, 0.1);
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    text-align: right;
}

@media (max-width: 768px) {
    .process-steps::before {
        display: none;
    }
    
    .process-step {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .valuation-types-grid,
    .benefits-grid,
    .features-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Banner Styles - Updated with Black Overlays */
.page-banner {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Specific page banners */
.about-banner {
    background-image: url('/images/hero/about-banner.jpg');
}

.team-banner {
    background-image: url('/images/hero/team-banner.jpg');
}

.contact-banner {
    background-image: url('/images/hero/contact-banner.jpg');
}

.properties-banner {
    background-image: url('/images/hero/properties-banner.jpg');
}

.auctions-banner {
    background-image: url('/images/hero/auctions-banner.jpg');
}

.buying-banner {
    background-image: url('/images/hero/buying-banner.jpg');
}

.selling-banner {
    background-image: url('/images/hero/selling-banner.jpg');
}

.valuations-banner {
    background-image: url('/images/hero/valuations-banner.jpg');
}

.legal-packs-banner {
    background-image: url('/images/hero/legal-packs-banner.jpg');
}

.locations-banner {
    background-image: url('/images/hero/locations-banner.jpg');
}

.auction-guide-banner {
    background-image: url('/images/hero/auction-guide-banner.jpg');
}

.consultancy-banner {
    background-image: url('/images/hero/consultancy-banner.jpg');
}

/* Breadcrumb styling */
.breadcrumb {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Banner with stats overlay */
.banner-stats {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: rgba(1, 38, 96, 0.9);
    padding: 20px 40px;
    border-radius: 12px;
    z-index: 2;
}

.banner-stat {
    text-align: center;
    color: white;
}

.banner-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
}

.banner-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Icon integration for pages */
.page-banner .icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: block;
}

/* Call to action in banner */
.banner-cta {
    margin-top: 2rem;
}

.banner-cta .btn {
    background: #d4af37;
    color: #012660;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
}

.banner-cta .btn:hover {
    background: white;
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 40px;
        min-height: 300px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .banner-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 15px 20px;
        bottom: 20px;
    }
    
    .banner-stat-number {
        font-size: 1.5rem;
    }
    
    .page-banner .icon {
        font-size: 3rem;
    }
} 