/* ===============================
   PAINT PAGE CSS - FULL
================================= */

/* ========== HERO SECTION ========== */
.hero-small {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
}

/* ========== PAGE TITLE ========== */
.page-title-section {
    text-align: center;
    padding: 50px 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111;
}

.page-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* ========== PRODUCT GRID ========== */
.product-grid-section {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.paint-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paint-info-card img {
    width: 70%;
    max-width: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.paint-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
}

.paint-info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.paint-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* FOOTER */
/*
footer { background-color:#2c2c2c; color:#fff; padding:40px 20px 20px; }
.footer-container { display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; max-width:1200px; margin:0 auto; }
.footer-column { flex:1 1 250px; min-width:250px; }
.footer-column h3 { margin-bottom:15px; color:#f5f5f5; }
.footer-column p, .footer-column a { color:#ccc; text-decoration:none; font-size:0.95rem; }
.footer-column a:hover { color:#fff; }
.footer-column ul { list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, auto));
    column-gap: 18px;
    row-gap: 6px; }
.footer-column ul li { margin-bottom:8px; }
.footer-social-icons { display:flex; gap:15px; margin-top:10px; }
.footer-social-icons img { width:28px; height:28px; transition:0.3s; }
.footer-social-icons img:hover { transform:scale(1.1); }
.map-container { margin-top:15px; }
.footer-bottom { text-align:center; padding-top:15px; border-top:1px solid rgba(255,255,255,0.2); font-size:0.9rem; color:#aaa; }
.footer-social-icons a img {
  width: 28px;
  height: 28px;
  
  transition: 0.3s;
}

.footer-social-icons a img:hover {
  transform: scale(1.1);
} */

/* ========== GOOGLE TRANSLATE BUTTON ========== */
.language-switcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: 20px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .paint-info-card img {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }

    /*.footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-social-icons {
        justify-content: center;
    }*/
}
