/*
Theme Name: i-connect
Description: i-connect landing page theme for WordPress
Version: 3.0.1
Author: i-connect
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'M PLUS 2', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    background-image: url('/wp-content/themes/i-connect/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* News Section */
.news-section {
    padding: 80px 0;
}

.news-item {
    border-bottom: 1px solid #d7d7d7;
    padding: 30px 0;
    transition: opacity 0.3s ease;
}

.news-item:hover {
    opacity: 0.8;
}

.news-date {
    font-family: 'Questa', serif;
    font-size: 20px;
    color: #333;
}

.news-title {
    font-size: 25px;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
}

.news-summary {
    font-size: 16px;
    color: #666;
    font-weight: 300;
    line-height: 2;
}

/* Problem & Solution Sections */
.solution-section {
    padding: 80px 0;
    text-align: center;
}

.subtitle {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}

/* Setup Section */
.setup-section {
    background-image: url('/wp-content/themes/i-connect/assets/images/setup_background.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: black;
}

.setup-text {
    background-color: white;
    padding: 10px 20px;
    display: inline-block;
    font-size: 49px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Adapter Section */
.adapter-section {
    position: relative;
    padding: 80px 0;
}

.adapter-image {
    width: 100%;
    height: 440px;
    object-fit: contain;
}

.adapter-content {
    background-color: black;
    color: white;
    padding: 55px 35px;
    font-size: 25px;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .features-section {
        padding-top: 10px;
    }
}

/* Comparison patterns */
.pattern-before,
.pattern-after {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

@media (min-width: 769px) {
    .pattern-before,
    .pattern-after {
        height: 800px;
    }
}

.pattern-info {
    background-color: white;
    padding: 27px 43px;
    text-align: center;
}

.pattern-title {
    background-color: rgba(29, 105, 211, 0.25);
    padding: 5px 30px;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background-image: url('/wp-content/themes/i-connect/assets/images/news_section.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-size: 21px;
    font-weight: 300;
    color: #b8b8b8;
    margin-bottom: 50px;
}

.contact-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.contact-item {
    flex: 1;
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 2;
}

.btn {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 45px;
    padding: 15px 30px;
    font-size: 16px;
    font-family: 'M PLUS 2', sans-serif;
    font-weight: 300;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .subtitle {
        font-size: 28px;
    }
    
    .setup-text {
        font-size: 20px;
        padding: 5px 10px;
    }
    
    .adapter-content {
        padding: 40px 20px;
        font-size: 16px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 30px;
    }
    
    .pattern-info {
        padding: 20px;
    }
    
    .pattern-title {
        font-size: 20px;
    }
    
    .news-date {
        font-size: 14px;
    }
    
    .news-title {
        font-size: 15px;
    }
    
    .news-summary {
        font-size: 13px;
        color: #666;
    }
}

/* WordPress specific */
.aligncenter {
    text-align: center;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 5px;
}
