﻿/* Reel-to-Reel Page Styles - Mobile Friendly */

/* Base Styles */
.jumbotron {
    background: linear-gradient(135deg, #0074D9 0%, #001f3f 100%);
    color: #FFFFFF;
    padding: 60px 20px;
    margin-bottom: 30px;
    border-radius: 0;
    text-align: center;
}

.jumbotron h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.jumbotron .lead {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Breadcrumb */
.breadcrumb {
    display: block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Intro Section */
.intro-section {
    margin-bottom: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.intro-section h2 {
    font-size: 1.875rem;
    color: #333;
    margin-bottom: 15px;
}

.intro-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
}

/* Card Styles */
.card-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.card-2 {
    background-image: url('../../Reel-To-Reel/Images/Vintage_Audio_Repair.png');
}

.box {
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    margin-bottom: 30px;
}

.box h2 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 3px solid #0074D9;
    padding-bottom: 10px;
}

.box h3 {
    font-size: 1.375rem;
    color: #0074D9;
    margin: 25px 0 15px;
}

/* Services Description */
.services-description ul {
    list-style-type: none;
    margin: 15px 0;
    padding: 0;
}

.services-description ul li {
    padding: 10px 0;
    font-size: 1.0625rem;
    color: #555;
    border-bottom: 1px solid #eee;
}

.services-description ul li:last-child {
    border-bottom: none;
}

/* Brand Navigation Grid */
.row1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.row1 .box {
    padding: 15px;
    text-align: center;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.row1 .box:hover {
    background: #0074D9;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.row1 .box a,
.row1 .box span {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    display: block;
}

.row1 .box:hover a,
.row1 .box:hover span {
    color: #fff;
}

/* Card Button */
.card-button {
    margin: 20px 0;
    text-align: center;
    font-size: 1.125rem;
}

.card-button a {
    color: #17ABE4;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.card-button a:hover {
    color: #0074D9;
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 40px auto;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 1.875rem;
    color: #333;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.125rem;
    margin: 20px 0;
}

.cta-section .btn-primary {
    padding: 15px 30px;
    font-size: 1.125rem;
    margin-top: 15px;
    display: inline-block;
    background: #0074D9;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: #005bb5;
}

/* Horizontal Rule */
hr {
    border: 0;
    height: 1px;
    background: #ddd;
    margin: 30px 0;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2rem;
    }

    .jumbotron .lead {
        font-size: 1.125rem;
    }

    .jumbotron {
        padding: 40px 15px;
    }

    .intro-section h2 {
        font-size: 1.5rem;
    }

    .intro-section p {
        font-size: 1rem;
    }

    .box {
        padding: 20px;
    }

    .box h2 {
        font-size: 1.5rem;
    }

    .box h3 {
        font-size: 1.25rem;
    }

    .row1 {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .row1 .box {
        padding: 12px;
    }

    .card-image {
        height: 250px;
    }

    .cta-section {
        padding: 25px 15px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .jumbotron h1 {
        font-size: 1.5rem;
    }

    .jumbotron .lead {
        font-size: 1rem;
    }

    .jumbotron {
        padding: 30px 10px;
    }

    .container {
        padding: 0 10px;
    }

    .intro-section {
        padding: 15px;
    }

    .intro-section h2 {
        font-size: 1.25rem;
    }

    .intro-section p {
        font-size: 0.9375rem;
    }

    .box {
        padding: 15px;
    }

    .box h2 {
        font-size: 1.25rem;
    }

    .box h3 {
        font-size: 1.125rem;
    }

    .services-description ul li {
        font-size: 0.9375rem;
        padding: 8px 0;
    }

    .row1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .row1 .box {
        padding: 10px 5px;
        font-size: 0.875rem;
    }

    .row1 .box a,
    .row1 .box span {
        font-size: 0.875rem;
    }

    .card-image {
        height: 200px;
        border-radius: 8px;
    }

    .card-button {
        font-size: 1rem;
    }

    .cta-section {
        padding: 20px 10px;
        margin: 30px auto;
    }

    .cta-section h2 {
        font-size: 1.25rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section .btn-primary {
        padding: 10px 20px;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .jumbotron h1 {
        font-size: 1.375rem;
    }

    .jumbotron .lead {
        font-size: 0.9375rem;
    }

    .row1 {
        grid-template-columns: 1fr;
    }

    .box h2 {
        font-size: 1.125rem;
    }

    .box h3 {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .jumbotron {
        background: none;
        color: #000;
    }

    .card-button,
    .cta-section {
        display: none;
    }

    .box {
        border: 1px solid #000;
    }
}