/* Simple, clean CSS for Cartabianca */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FFFFFF;
    color: #111111;
    line-height: 1.6;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure all containers are visible */
#Wrapper,
#Content,
.content_wrapper,
.sections_group,
.entry-content,
.section,
.mcb-section,
.section_wrapper,
.mcb-section-inner,
.wrap,
.mcb-wrap,
.mcb-wrap-inner,
.column,
.mcb-column {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background-color: #F5F5F5;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 4em;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
}

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

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

/* Hero boxes placeholder */
.hero-boxes-placeholder {
    display: flex;
    gap: 30px;
    align-items: flex-end;
    justify-content: center;
    perspective: 1000px;
}

.hero-box {
    background: linear-gradient(145deg, #3a3a3a, #2a2a2a);
    border-radius: 8px;
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
}

.hero-box.box-1 {
    width: 220px;
    height: 240px;
    transform: rotate(-8deg);
}

.hero-box.box-2 {
    width: 200px;
    height: 220px;
    transform: rotate(5deg);
}

.box-lid {
    position: absolute;
    top: -30px;
    left: -10px;
    right: -10px;
    height: 50px;
    background: linear-gradient(145deg, #d4a855, #b8903d);
    border-radius: 4px;
    transform: rotateX(-20deg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.box-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    justify-content: center;
}

.box-logo {
    color: #FF6600;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    font-family: Arial, sans-serif;
}

.box-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 120px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background-color: #E74C3C; }
.dot-blue { background-color: #3498DB; }
.dot-green { background-color: #2ECC71; }
.dot-yellow { background-color: #F39C12; }
.dot-orange { background-color: #FF6600; }

/* Hero responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
}

/* Section spacing */
.section {
    padding: 60px 0;
    clear: both;
}

/* Remove bottom margin/padding before footer */
.section:last-of-type,
.custom-bag-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Why Cartabianca Section */
.why-cartabianca-section {
    background-color: #070b29;
    padding: 80px 0;
    color: #FFFFFF;
    clear: both;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-title {
    text-align: center;
    margin-bottom: 60px;
}

.why-title h2 {
    font-size: 2.5em;
    font-weight: 400;
    margin: 0;
}

.title-light {
    color: #FFFFFF;
    display: block;
    margin-bottom: 10px;
}

.title-brand {
    color: #FF6600;
    font-weight: 700;
    display: block;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 40px;
}

.why-feature {
    text-align: center;
}

.feature-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 80px;
    height: 80px;
}

.feature-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #FFFFFF;
}

.feature-description {
    font-size: 1em;
    line-height: 1.8;
    color: #CCCCCC;
}

/* Why Cartabianca responsive */
@media (max-width: 992px) {
    .why-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-title h2 {
        font-size: 2em;
    }
}

.section_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.main-h3 {
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
}

.main-h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.main-text-alt {
    font-size: 1em;
    line-height: 1.8;
}

/* Client logos section */
.clients-container {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin: 40px 0;
    align-items: center;
    justify-items: center;
}

.clients-wrapper.column {
    display: block !important;
    text-align: center;
    width: 100%;
}

.clients-wrapper {
    text-align: center;
    width: 100%;
}

.clients-image {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.clients-image img {
    max-width: 100%;
    height: auto;
    display: block !important;
}

/* Product grid */
.one-third {
    width: 33.33%;
    float: left;
    padding: 20px;
    box-sizing: border-box;
}

.column_image {
    margin-bottom: 30px;
}

.column_image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.image_frame,
.image_item {
    display: block;
    width: 100%;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FF6600;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #FF8800;
}

.button_align {
    text-align: center;
    margin: 20px 0;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Features section with background */
.home-section-5 {
    background-color: #333333;
    padding: 80px 0;
    background-image: url('https://www.cartabianca.gr/wp-content/uploads/2020/05/PaperBag.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
}

.details-box {
    width: 33.33%;
    float: left;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}

.details-box .column_image {
    text-align: center;
}

.details-box img {
    max-width: 120px;
    margin: 0 auto 20px;
    display: block;
}

.details-box .main-h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.details-box .main-text-alt {
    color: #FFFFFF;
}

/* Custom paper bag section */
.home-section-6 {
    display: flex;
    flex-wrap: wrap;
    clear: both;
}

.two-third {
    width: 66.66%;
    float: left;
    padding: 50px;
    background-color: #F5F5F5;
    box-sizing: border-box;
    background-image: url('https://www.cartabianca.gr/wp-content/uploads/2020/05/PaperBag.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}

.two-third .column_visual {
    margin-bottom: 20px;
}

.two-third .main-text-alt p {
    margin-bottom: 15px;
}

.home-section-6 .one-third {
    width: 33.33%;
    float: left;
    background-image: url('https://www.cartabianca.gr/wp-content/uploads/2020/06/PHOTO_girls-small.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

/* Colors */
.white {
    color: #FFFFFF;
}

.black {
    color: #111111;
}

.orange-button {
    background-color: #FF6600;
}

/* Footer Styles */
.main-footer {
    background-color: #070b29;
    color: #FFFFFF;
    padding: 60px 0 40px;
    position: relative;
    margin-top: 0;
}

.footer-orange-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #FF6600;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-brand {
    margin-bottom: 50px;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    color: #FFFFFF;
}

.footer-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #FF6600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-text {
    color: #CCCCCC;
    line-height: 1.8;
}

.footer-text p {
    margin: 5px 0;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6600;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 12px 15px;
    border: 1px solid #444444;
    background-color: transparent;
    color: #FFFFFF;
    border-radius: 3px;
    font-size: 1em;
}

.newsletter-input::placeholder {
    color: #888888;
}

.newsletter-button {
    padding: 12px 30px;
    background-color: #070b29;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background-color: #FF6600;
    border-color: #FF6600;
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85em;
    color: #AAAAAA;
    line-height: 1.5;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #2a3542;
}

.social-icon {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FF6600;
}

/* Custom Bag Section */
.custom-bag-section {
    clear: both;
    margin: 0;
    padding: 0;
}

.custom-bag-container {
    display: flex;
    min-height: 500px;
}

.custom-bag-content {
    flex: 2;
    background-color: #F5F5F5;
    padding: 60px 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.orange-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #FF6600;
}

.custom-bag-text {
    max-width: 600px;
}

.custom-bag-text .small-title {
    font-size: 1.1em;
    color: #666666;
    margin-bottom: 15px;
}

.custom-bag-text .main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 30px;
    line-height: 1.3;
}

.custom-bag-text .description {
    font-size: 1em;
    line-height: 1.8;
    color: #444444;
}

.custom-bag-text .description p {
    margin-bottom: 15px;
}

.custom-bag-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.custom-bag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom Bag responsive */
@media (max-width: 992px) {
    .custom-bag-container {
        flex-direction: column;
    }
    
    .custom-bag-content {
        padding: 40px;
    }
    
    .custom-bag-text .main-title {
        font-size: 2em;
    }
    
    .custom-bag-image {
        min-height: 400px;
    }
}

/* Footer responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        font-size: 2.5em;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .one-third,
    .two-third,
    .details-box {
        width: 100%;
        float: none;
    }
    
    .clients-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .home-section-6 .one-third {
        min-height: 300px;
    }
}

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

/* Image frames */
.image_frame,
.image_wrapper {
    display: block;
    width: 100%;
}

.image_wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ensure visibility of all images */
img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* About Page Styles */
.about-hero-section {
    background-color: #070b29;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.about-hero-content {
    color: #FFFFFF;
}

.about-hero-subtitle {
    color: #FF6600;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.about-hero-title {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 20px 0;
    background-color: #F5F5F5;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.breadcrumb a {
    color: #111111;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb .separator {
    color: #FF6600;
}

.breadcrumb .current {
    color: #FF6600;
    font-weight: 600;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    position: relative;
}

.about-content-section .orange-accent-bar {
    position: absolute;
    left: 0;
    top: 80px;
    width: 6px;
    height: 200px;
    background-color: #FF6600;
}

.about-intro {
    margin-bottom: 40px;
}

.section-subtitle {
    color: #FF6600;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 30px;
}

.about-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.text-column p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444444;
}

/* About Company Section */
.about-company-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.company-text h3 {
    font-size: 2em;
    font-weight: 700;
    color: #111111;
    margin-bottom: 25px;
}

.company-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444444;
}

.company-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quality Materials Section */
.quality-materials-section {
    padding: 80px 0;
    background-color: #070b29;
    color: #FFFFFF;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quality-text .section-subtitle {
    color: #FF6600;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.quality-text .section-title {
    color: #FFFFFF;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 25px;
}

.quality-text p {
    line-height: 1.8;
    color: #CCCCCC;
}

/* Responsive */
@media (max-width: 992px) {
    .about-hero-section,
    .about-text-columns,
    .about-company-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 2em;
    }
}
