/* Larson Painting External Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
    --light-blue: #E6F2FF;  /* Soft, light blue */
    --navy: #073763;        /* Deep navy blue */
    --white: #FFFFFF;       /* Pure white */
    --red: #DC143C;         /* Bright red */
    --primary: #2A3F99;
    --accent: #E81D25;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: var(--white);
    max-width: 100vw;
    line-height: 1.6;
    width: 100vw;
}

.hamburger {
    display: block;
    }

/* Mobile first approach */

/* Extra Small Devices (Phones) */
@media (max-width: 576px) {
    .container {
        width: 100%;
    }
    h1 {
        font-size: 1.5rem;
    }
    nav ul {
        flex-direction: column;
    }
    
    header {
        background-color: var(--navy);
        color: var(--white);
        padding: 1rem;
        text-align: center;
        font-size: 1.3rem;
    }
    
    header h1 {
        font-size: 1.3rem;
    }
    
    header p {
        display: none;
    }
}

/* Small devices (Tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    nav ul {
        justify-content: space-around;
    }
    header p {
        display: none;
    }
}

/* Medium Devices (Laptops) */
@media (min-width: 993px) {
    .container {
        width: 100%;
    }
}

/* Larger Devices (Desktops) */
@media (min-width: 993px) {
    .container {
        width: 100%;
    }
}

/* Additional Responsive Elements */
img {
    max-width: 100%;
    height: auto;
}

.brand img {
    border-radius: 8px;
}

button {
    padding: 12px 20px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}


/* Header Styles */
header {
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-size: 1.3rem;
}

header h1 {
    font-size: 1.3rem;
}

/* Our core values styling */
.values {
    margin: 2rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background-color: var(--light-blue);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}


.tagline {
    margin-bottom: 1rem;
}

/* Navigation Styles */
nav {
    background-color: var(--red);
    padding: 0.5rem;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Hero Section */



.hero-text {
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Main Container */
.container {
    position: relative;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--navy);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: relative;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background-color: var(--navy);
}

/* Section Intros */
.gallery-intro, .services-intro {
    text-align: center;
    margin-bottom: 2rem;
}

/* Gallery Styles */
.gallery-categories {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-bottom: 2rem;
    max-width: 80vw;
}

.category-btn {
    background-color: var(--light-blue);
    border: none;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    color: var(--navy);
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--red);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 250px;
    background-color: var(--light-blue);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.8rem;
    background-color: rgba(0, 31, 91, 0.8);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Services Styles */


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--light-blue);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px 25px;
}

.service-content h3 {
    color: var(--navy);
    margin-top: 0;
    font-size: 1.5rem;
    position: relative;
}

.expand-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin: 10px 0;
    transition: background-color 0.3s ease;
}

.expanded-content {
    background-color: var(--light-blue);
}

.service-card.active .expanded-content {
    display: block;
    animation: fadeIn 0.5s ease;
}

.service-content p {
    margin-bottom: 1rem;
    color: #333;
}

.service-features h4 {
    color: var(--navy);
    margin-bottom: 10px;
}



.service-features {
    margin: 1rem 0;
}

.service-features ul {
    list-style-position: inside;
    color: #333;
}

.service-features ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-features ul li::before {
    content: '•';
    color: var(--red);
    position: absolute;
    left: 0;
}

.learn-more {
    display: inline-block;
    color: var(--red);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--navy);
    transform: translateX(5px);
}

/* Process Section */
.service-process {
    background-color: var(--light-blue);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1rem;
    margin: 0.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--red);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    color: var(--navy);
    font-size: 1.5rem;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    margin: 1px 0;
}

.faq-item {
    border-bottom: 1px solid #FFFFFF;
    padding: 1rem 0;
}

/*
.faq-question {
    font-weight: bold;
    color: var(--red);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
*/
/*.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--red);
} 
*/

/*.faq-question.active::after {
    content: '-';
}

*/
.faq-answer {
    margin-top: 1rem;
    display: none;
}

/* Call to Action */
.cta {
    background-color: var(--red);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 50px;
}

.cta h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--navy);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    footer p {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        color: #AAAAAA;
        text-decoration: none;
        
    }
    
}



.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}


.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--red);
}


.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-links {
    color: #AAAAAA;
    font: 20px Arial, sans-serif;
    margin: 0px 10px;

}
.social-icon:hover {
    background-color: var(--red);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Page Specific Styles */

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Info Section */
.contact-info {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 5px;
}

.contact-method {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin: 0.5rem 0;
}

.hours {
    color: #666;
    font-size: 0.9rem;
}

/*.social-connect {
    margin-top: 1.5rem;
}*/

/*.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}*/

/*.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}*/

/*.social-icon:hover {
    /*background-color: #0056b3;*/
}*/

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkbox-label input {
    margin-right: 10px;
}

button.btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #003d7a;
}

/* FAQ Section */
.faq {
    margin: 3rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}
/*
.faq-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
} 

*/

/* Testimonials */
.testimonials {
    margin-bottom: 3rem;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-text p::before {
    content: '"';
    font-size: 2rem;
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    color: #cccccc;
}

.testimonial-author {
    text-align: right;
    font-weight: 500;
    margin-top: 1rem;
}

/* Service card grid */
.gallery-item {
    transition: opacity 0.3s ease-in-out;
}

.category-btn.active {
    background-color: #333;
    color: white;
}


/* Active Nav Link */
nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--red);
    transition: var(--transition);
}

/* Contact Intro */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}