/* Newport Appliance Service Theme - Clean, Professional, Trust-Building */

body {
    color: #333333;
    background-color: #ffffff;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 0;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-section h1 {
    font-size: 3rem;
    color: #990000; /* Deep red/burgundy */
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-section h2 {
    font-size: 1.4rem;
    color: #666666;
    font-weight: normal;
}

.discount-highlight {
    color: #990000;
    font-weight: bold;
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* Navigation */
.main-nav ul {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #dddddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-nav a {
    color: #990000;
    border: 1px solid transparent;
    background: transparent;
    font-weight: 600;
}

.main-nav a:hover {
    background: #990000;
    border-color: #990000;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(153, 0, 0, 0.3);
}

/* Content */
.main-content {
    margin: 30px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.appliance-image img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444444;
    text-align: justify;
}

/* Brand Showcase */
.brand-showcase {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand-showcase img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
footer {
    background: rgba(153, 0, 0, 0.05);
    border-top: 2px solid #990000;
    color: #666666;
}

footer address {
    color: #990000;
    font-weight: 500;
}

.server-info {
    color: #999999;
    font-family: monospace;
    font-size: 0.8rem;
}

.designed-by {
    color: #666666;
}

.designed-by a {
    color: #990000;
    font-weight: 600;
}

.designed-by a:hover {
    text-decoration: underline;
}

/* Content Cards */
.content-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Links */
a {
    color: #990000;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #cc0000;
    text-decoration: underline;
}

/* Professional styling enhancements */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
}

.years-experience {
    color: #990000;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section h2 {
        font-size: 1.2rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .appliance-image img {
        max-width: 150px;
    }

    .service-description p {
        text-align: left;
        font-size: 1rem;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section h2 {
        font-size: 1rem;
    }

    .discount-highlight {
        font-size: 0.9rem;
        padding: 3px 8px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .appliance-image img {
        max-width: 120px;
    }
}

/* Hover effects for enhanced user experience */
.content-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.brand-showcase:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}