body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #5A5A5A;
    background-color: #FFF6F8;
}

header {
    background-color: #FFF6F8;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.branding h1 {
    font-size: 2.5em;
    color: #D90429;
    margin: 0;
}

.branding .branding-paragraph {
    color: #020202;
    margin: 10px 0 20px;
    font-size: 1.2em;
}

header .cta-button {
    padding: 10px 20px;
    background-color: #D90429;
    color: #FFF;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

header .cta-button:hover {
    background-color: #5A5A5A;
    transform: scale(1.1);
}

nav {
    position: relative;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    padding-right: 80px;
}

.nav-list li {
    display: inline;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #D90429;
    color: #FFF;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

.nav-button:hover {
    background-color: #5A5A5A;
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 2em;
    color: #D90429;
}

section {
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    background-color: #FFF;
    border-radius: 8px;
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    animation: fadeIn 1s ease-in-out;
}

#hero {
    background-color: #FFF6F8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin-top: -16%;
}

.hero-content {
    max-width: 50%;
    text-align: left;
}

.hero-content h1 {
    font-size: 3em;
    color: #020202;
}

.hero-content span {
    color: #D90429;
}

.hero-content p {
    font-size: 1.2em;
    margin: 20px 0;
    color: #5A5A5A;
}

.hero-content .cta-button {
    padding: 10px 20px;
    background-color: #D90429;
    color: #FFF;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2em;
    transition: background-color 0.3s, transform 0.3s;
}

.hero-content .cta-button:hover {
    background-color: #5A5A5A;
    transform: scale(1.1);
}

.hero-image img {
    max-width: 100%;
}

#carcarelogo {
    padding-top: 60px;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-item {
    background-color: #FFF;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-item h3 {
    margin: 10px 0;
    color: #D90429;
}

#contact .contact-details {
    margin: 20px 0;
}

#contact .contact-details p {
    margin: 10px 0;
}

#contact .location-link {
    margin: 20px 0;
}

#contact .social-media a {
    margin: 0 10px;
    font-size: 1.5em;
    color: #D90429;
    transition: color 0.3s;
}

#contact .social-media a:hover {
    color: #5A5A5A;
}

footer {
    background-color: #020202;
    color: #FFF;
    padding: 20px;
    text-align: center;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-content .footer-branding {
    flex: 1;
    text-align: left;
}

footer .footer-branding h2 {
    margin: 0 0 10px;
}

footer .footer-content p {
    margin: 0 0 10px;
    font-size: 0.9em;
}

footer .footer-links {
    flex: 1;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-links .footer-section {
    flex: 1;
    text-align: left;
}

footer .footer-links ul {
    list-style-type: none;
    padding: 0;
}

footer .footer-links ul li {
    margin: 5px 0;
}

footer .footer-links ul li a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-links ul li a:hover {
    color: #D90429;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background-color: #fcdfdf;
        position: absolute;
        top: 60px;
        width: 100px;
        right: 15px;
        border-radius: 8px;
        padding-left: 100px;
        padding-right: 100px;
        padding-top: 40px;
        padding-bottom: 40px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        transition: ease-in-out 1s; 
    }
    .nav-list.nav-active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    #hero {
        flex-direction: column;
    }

    .hero-content, .hero-image {
        max-width: 100%;
        text-align: center;
    }

    .hero-content .cta-button {
        margin-top: 20px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .product-list {
        flex-direction: column;
    }

    .product-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-links .footer-section {
        text-align: center;
    }
}

.footer-content h3 {
    color: #D90429;
}

.footer-branding p {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    padding-right: 20%;
}

/* Fixed Icons */
.fixed-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fixed-icon {
    text-decoration: none;
    background-color: #00FF00;
    color: #222222;
    font-size: 2em;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.fixed-icon:hover {
    background-color: #5A5A5A;
    transform: scale(1.1);
    color: white;
}

.about img{
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
#inside2{
    max-width: 60%;
    height: auto;
    
}
#outside2{
    max-width: 60%;
    height: auto;
}
.gallerylink {
    background-color: #D90429; 
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.3s;
    
}
.gallerylink a{
    text-decoration: none;
}

.location-link a{
    color:#ffffff;
    border-radius: 25px;
    background-color:#D90429;
    padding: 10px;
    text-decoration: none;
    padding-left:17px;
    padding-right:17px;
    transition: background-color 0.5s;
}

.location-link a:hover {
    background-color: #5A5A5A;
    transform: scale(1.1);
}
