/*
Theme Name: Global E-Com Holdings
Description: Elegant and timeless corporate theme for Global E-Com Holdings
Version: 1.0
Author: Global E-Com Holdings
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 400;
    color: #2c3e50;
    letter-spacing: 1px;
    text-decoration: none;
}

.logo span {
    font-weight: 300;
    color: #7f8c8d;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    color: #34495e;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #34495e;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-elegant {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-elegant:hover {
    background: transparent;
    color: #2c3e50;
}

/* About Section */
.about {
    padding: 8rem 3rem;
    background: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid #ecf0f1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brands Section */
.brands {
    padding: 8rem 3rem;
    background: #f8f9fa;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.brand-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ecf0f1;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(44, 62, 80, 0.1);
}

.brand-image {
    height: 250px;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #7f8c8d;
}

.brand-content {
    padding: 2.5rem;
}

.brand-content h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.brand-content p {
    color: #7f8c8d;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.brand-platforms {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-tag {
    padding: 0.3rem 0.8rem;
    background: #ecf0f1;
    color: #7f8c8d;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Platforms Section */
.platforms {
    padding: 8rem 3rem;
    background: white;
}

.platforms-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.platform-item {
    padding: 2rem 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-3px);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.platform-name {
    font-size: 1.1rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.platform-desc {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 8rem 3rem;
    background: #2c3e50;
    color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact p {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

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

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background: #1a252f;
    color: white;
    padding: 3rem;
    text-align: center;
}

.site-footer p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .main-navigation ul {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .about,
    .brands,
    .platforms,
    .contact {
        padding: 4rem 2rem;
    }
}