/* RESET & BASICS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #FAFAFA;
    color: #333333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* HEADER STYLE */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu a {
    margin: 0 15px;
    font-weight: 600;
    color: #555;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #9E1B32; /* Deep Red */
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #9E1B32;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #7d1224;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2C2C35;
    transform: translateY(-2px);
}

.btn-phone {
    background-color: #2C2C35;
    color: #ffffff;
}

.btn-phone:hover {
    background-color: #9E1B32;
}

/* HERO SECTION */
.hero-section {
    background-color: #2C2C35; /* Dark Slate Gray */
    color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: #9E1B32;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text p {
    font-size: 18px;
    color: #D1D1D6;
    margin-bottom: 30px;
}

.hero-actions .btn {
    margin-right: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
    /* Απαλό shadow για 3D αίσθηση */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* HIGHLIGHTS SECTION */
.highlights-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #9E1B32;
    margin: 15px auto 0;
    border-radius: 2px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    text-align: center;
    border-top: 4px solid #2C2C35;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-top-color: #9E1B32;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 800;
}

.card p {
    color: #666;
    font-size: 15px;
}

/* FOOTER STYLE */
.main-footer {
    background-color: #2C2C35;
    color: #ffffff;
    padding: 60px 0 20px;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: #D1D1D6;
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 800;
    border-left: 3px solid #9E1B32;
    padding-left: 10px;
}

.footer-links a {
    display: block;
    color: #D1D1D6;
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: #9E1B32;
    padding-left: 5px;
}

.footer-contact p {
    color: #D1D1D6;
    margin-bottom: 12px;
}

.footer-contact a:hover {
    color: #9E1B32;
}

.footer-bottom {
    border-top: 1px solid #3E3E49;
    padding-top: 20px;
    text-align: center;
    color: #8E8E93;
    font-size: 13px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-actions {
        display: flex;
        justify-content: center;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-links h4, .footer-contact h4 {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .hero-actions .btn {
        margin-right: 0;
        width: 100%;
    }
}

/* PAGE HERO */
.page-hero {
    background-color: #2C2C35;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #3E3E49;
}

.page-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-hero p {
    color: #D1D1D6;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 60px 0;
}

.category-block {
    margin-bottom: 70px;
}

.category-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    border-left: 5px solid #9E1B32;
    padding-left: 15px;
    color: #2C2C35;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #EAEAEA;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #9E1B32;
}

.product-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #ffffff; /* Isolated on white background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #2C2C35;
}

.product-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* ONE STOP GRID */
.one-stop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #EAEAEA;
    border-left: 4px solid #2C2C35;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 800;
    color: #9E1B32;
}

.info-box p {
    font-size: 15px;
    color: #555;
}

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

/* --- ΓΕΝΝΑΙΑ ΜΕΓΕΘΥΝΣΗ & ΣΤΟΙΧΙΣΗ ΛΟΓΟΤΥΠΟΥ --- */
.main-header .header-container {
    display: flex;
    align-items: center; /* Κεντράρει όλα τα στοιχεία οριζόντια μεταξύ τους */
    justify-content: space-between;
}

.logo img {
    height: 110px !important; /* Αυξάνουμε το ύψος στα 110px για να γεμίσει το header */
    width: auto !important;   /* Διατηρεί τις σωστές αναλογίες */
    max-height: none !important;
    transition: transform 0.3s ease;
    display: block;
}

/* Ήπιο εφέ στο πέρασμα του ποντικιού */
.logo img:hover {
    transform: scale(1.05);
}

/* --- ΠΡΟΣΑΡΜΟΓΗ ΓΙΑ ΚΙΝΗΤΑ (MOBILE) --- */
@media (max-width: 768px) {
    .logo img {
        height: 90px !important; /* Αρκετά μεγάλο και καθαρό και στις μικρές οθόνες */
    }
    
    /* Διασφαλίζουμε ότι το header στα κινητά αφήνει χώρο για το logo */
    .header-container {
        padding-top: 10px;
        padding-bottom: 10px;
        flex-direction: column; /* Αν χρειάζεται να μπαίνουν σε στοίχιση */
        gap: 10px;
    }
}

/* --- ΜΕΓΕΘΥΝΣΗ ΛΕΥΚΟΥ ΛΟΓΟΤΥΠΟΥ ΣΤΟ FOOTER --- */
.footer-logo {
    height: 90px !important; /* Μεγαλώνει το λευκό λογότυπο για να διαβάζεται καθαρά */
    width: auto !important;
    max-height: none !important;
    margin-bottom: 15px;     /* Δίνει λίγο χώρο από κάτω πριν το κείμενο */
    display: block;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 75px !important; /* Προσαρμογή για κινητά */
    }
}