/* Fear City Cycles - Page-Specific Styles */

/* Culture/Blog Section Styles */
.culture-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/nyc-streets.jpg') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.culture-hero .hero-title {
    font-size: 4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.culture-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.culture-main {
    padding: 80px 0;
    background-color: #000000;
}

.featured-post {
    margin-bottom: 80px;
}

.featured-post .post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border: 1px solid #333333;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border: 1px solid #333333;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.post-card.animate-in,
.post-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.2);
    border-color: #8B0000;
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8B0000;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}

.post-content {
    padding: 30px;
}

.post-title {
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured .post-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888888;
}

.post-date {
    color: #8B0000;
}

.post-author {
    color: #cccccc;
}

.post-excerpt {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-block;
    background: transparent;
    color: #8B0000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid #8B0000;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.read-more-btn:hover {
    background: #8B0000;
    color: #ffffff;
    transform: translateX(5px);
}

.blog-sidebar {
    background: #111111;
    border: 1px solid #333333;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    padding: 30px;
    border-bottom: 1px solid #333333;
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.widget-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.category-list a:hover,
.category-list a.active {
    color: #8B0000;
}

.recent-posts {
    space-y: 20px;
}

.recent-post {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recent-post h4 {
    margin-bottom: 8px;
}

.recent-post a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.recent-post a:hover {
    color: #8B0000;
}

.recent-post .post-date {
    font-size: 0.8rem;
    color: #888888;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input[type="email"] {
    background: #000000;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 12px;
    font-family: inherit;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #8B0000;
}

.newsletter-form .btn {
    padding: 12px;
    text-align: center;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #111111;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid #4CAF50;
}

.toast-error {
    border-left: 4px solid #f44336;
}

.toast-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333333;
    z-index: 1000;
}

.reading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B0000, #ff4444);
    width: 0%;
    transition: width 0.1s ease;
}

/* Individual Blog Post Styles */
.post-full {
    background-color: #000000;
    color: #ffffff;
}

.post-header {
    margin-top: 70px;
}

.post-header .container {
    padding: 40px 20px 0;
}

.post-header .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-link {
    color: #8B0000;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ffffff;
}

.post-categories {
    display: flex;
    gap: 10px;
}

.post-header .post-title {
    font-size: 3rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.post-author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.author-details h3 {
    color: #8B0000;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-details p {
    color: #cccccc;
    font-size: 0.9rem;
}

.post-header .post-date {
    color: #8B0000;
    font-weight: 700;
    font-size: 1.1rem;
}

.post-hero-image {
    height: 400px;
    overflow: hidden;
    margin-bottom: 60px;
}

.post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-full {
    padding: 0 0 80px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.post-content-full .post-content {
    background: #111111;
    padding: 40px;
    border: 1px solid #333333;
}

.post-content .lead {
    font-size: 1.3rem;
    color: #cccccc;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    border-left: 3px solid #8B0000;
    padding-left: 20px;
}

.post-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ffffff;
    margin: 40px 0 20px;
    border-bottom: 1px solid #333333;
    padding-bottom: 10px;
}

.post-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #8B0000;
    margin: 30px 0 15px;
}

.post-content p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-content blockquote {
    background: #0a0a0a;
    border-left: 4px solid #8B0000;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.post-content blockquote p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.post-content blockquote cite {
    color: #8B0000;
    font-size: 0.9rem;
    font-weight: 700;
}

.post-signature {
    background: #0a0a0a;
    border: 1px solid #333333;
    padding: 20px;
    margin-top: 40px;
    text-align: center;
}

.post-signature p {
    color: #8B0000;
    margin: 0;
    font-weight: 700;
}

.post-sidebar {
    background: #111111;
    border: 1px solid #333333;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.post-sidebar > div {
    padding: 30px;
    border-bottom: 1px solid #333333;
}

.post-sidebar > div:last-child {
    border-bottom: none;
}

.post-sidebar h3 {
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.author-bio p {
    color: #cccccc;
    line-height: 1.6;
}

.related-posts ul {
    list-style: none;
}

.related-posts li {
    margin-bottom: 10px;
}

.related-posts a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-posts a:hover {
    color: #8B0000;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    text-align: center;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.share-btn:hover {
    background: #8B0000;
}

/* Responsive Design for Culture Section */
@media (max-width: 768px) {
    .culture-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .culture-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .featured-post .post-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .posts-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-sidebar {
        position: static;
        order: -1;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    /* Individual Post Mobile */
    .post-header .post-title {
        font-size: 2rem;
    }
    
    .post-author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-sidebar {
        position: static;
        order: -1;
    }
    
    .post-content-full .post-content {
        padding: 20px;
    }
    
    .post-content .lead {
        font-size: 1.1rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/dark-texture.jpg');
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Sections */
.bike-filters, .gear-filters {
    background-color: #111111;
    padding: 40px 0;
    border-bottom: 1px solid #333333;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #cccccc;
    border: 1px solid #333333;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #8B0000;
    color: #ffffff;
    border-color: #8B0000;
}

/* Product Grids */
.bikes-grid, .gear-grid {
    padding: 80px 0;
    background-color: #000000;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.card-actions .btn {
    flex: 1;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.bike-specs, .gear-specs {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 10px;
}

.size-options {
    margin-bottom: 15px;
}

.size-selector {
    width: 100%;
    padding: 8px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* Custom Build CTA */
.custom-build-cta {
    background-color: #8B0000;
    padding: 80px 0;
    text-align: center;
}

.custom-build-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.custom-build-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
    background-color: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    color: #ffffff;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #8B0000;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #8B0000;
}

.info-item p {
    line-height: 1.6;
    color: #cccccc;
}

.social-links a {
    display: inline-block;
    margin-right: 20px;
    color: #8B0000;
    text-decoration: none;
    font-weight: 700;
}

.social-links a:hover {
    color: #ffffff;
}

/* Contact Forms */
.inquiry-selector {
    margin-bottom: 40px;
}

.inquiry-selector h3 {
    margin-bottom: 20px;
    color: #ffffff;
}

.inquiry-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inquiry-btn {
    background: transparent;
    color: #cccccc;
    border: 1px solid #333333;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
}

.inquiry-btn:hover,
.inquiry-btn.active {
    background-color: #8B0000;
    color: #ffffff;
    border-color: #8B0000;
}

.contact-form {
    display: none;
    background-color: #111111;
    padding: 40px;
    border: 1px solid #333333;
}

.contact-form.active {
    display: block;
}

.contact-form h3 {
    margin-bottom: 30px;
    color: #8B0000;
    font-size: 1.3rem;
}

/* Cart Page Styles */
.cart-section {
    padding: 120px 0 80px;
    background-color: #000000;
    min-height: 80vh;
}

.cart-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.cart-items {
    flex: 2;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background-color: #111111;
    border: 1px solid #333333;
    margin-bottom: 20px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.item-details p {
    color: #999999;
    font-size: 0.9rem;
}

.item-price {
    font-weight: 700;
    color: #8B0000;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-selector button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: 700;
}

.quantity-input {
    width: 50px;
    padding: 5px;
    text-align: center;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    color: #ffffff;
}

.item-total {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.remove-btn {
    background: none;
    border: none;
    color: #8B0000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

.remove-btn:hover {
    color: #cc0000;
}

.cart-summary {
    flex: 1;
    background-color: #111111;
    padding: 30px;
    border: 1px solid #333333;
    height: fit-content;
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: #8B0000;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #cccccc;
}

.summary-line.total {
    border-top: 1px solid #333333;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.cart-actions {
    margin-top: 30px;
}

.cart-actions .btn {
    width: 100%;
    margin-bottom: 15px;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.empty-cart p {
    margin-bottom: 30px;
    color: #cccccc;
}

.empty-cart .btn {
    margin: 0 10px 10px 0;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.checkout-modal .modal-content {
    background: #000000;
    border: 2px solid #8B0000;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #8B0000;
    cursor: pointer;
    background: none;
    border: none;
}

.checkout-section {
    margin-bottom: 30px;
}

.checkout-section h3 {
    margin-bottom: 20px;
    color: #8B0000;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-options {
    margin-bottom: 20px;
}

.payment-option {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    cursor: pointer;
}

.payment-option input {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cart-content {
        flex-direction: column;
        gap: 30px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr auto;
        gap: 15px;
    }

    .item-quantity,
    .item-total {
        grid-column: span 3;
        justify-self: start;
    }

    .inquiry-buttons {
        flex-direction: column;
    }

    .inquiry-btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .filter-options {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }
}