/* --- Global Styles & Luxury Theme Variables --- */
:root {
    --bg-color: #FDFBF5;       /* A warm, soft cream background */
    --text-color: #252525;     /* Dark charcoal for readable text */
    --primary-accent: #B89A7A; /* Muted gold for accents */
    --light-gray: #F5F5F5;     /* For subtle backgrounds and borders */
    --white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
.header {
    background: rgba(253, 251, 245, 0.85); /* Slightly transparent for a modern feel */
    backdrop-filter: blur(8px);
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 180px;
}

.logo img{
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-accent);
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--white);
    color: var(--text-color);
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--primary-accent);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #A3866A; /* Darker gold */
    transform: translateY(-3px);
}

/* --- General Section Styling --- */
.services, .networks, .features, .contact {
    padding: 60px 20px;
}

.networks, .features {
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    border-color: transparent;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: #666;
}

/* --- Networks Section --- */
.network-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.network-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%; 
    border: 3px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
    padding: 15px;
}

.network-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.network-badge:hover {
    transform: scale(1.1);
    border-color: var(--primary-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.feature-item p {
    color: #666;
}

/* --- Contact Section --- */
.contact-info {
    max-width: 700px;
    margin: 3rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
}

.contact-item {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-accent);
}

.contact-item strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item p {
    color: #555;
    margin: 0;
}

/* --- Footer --- */
.footer {
    background: var(--white);
    color: #888;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--light-gray);
}

.footer p {
    margin: 0.2rem 0;
}

.footer p:first-child {
    color: #555;
    font-weight: 600;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for mobile, consider a hamburger menu for full projects */
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .logo {
        height: 50px;
    }
}