/* Gestify - Custom Stylesheet to match the design in screenshot */

:root {
    /* Updated color palette */
    --primary: #2c3e50;    /* Dark blue/navy */
    --secondary: #3498db;  /* Bright blue */
    --accent: #e67e22;     /* Orange accent for CTA buttons */
    --light: #ecf0f1;      /* Light gray */
    --dark: #2c3e50;       /* Dark blue/gray */
    --success: #2ecc71;    /* Green */
    --warning: #f39c12;    /* Orange */
    --text: #333333;       /* Main text color */
    --text-light: #7f8c8d; /* Light text color */
    --border: #ddd;        /* Border color */
}

/* Header Adjustments */
header {
    background-color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

/* Navigation Adjustments */
nav ul li a {
    font-weight: 500;
    padding: 0 1.2rem;
    transition: all 0.3s ease;
}

nav ul li a.active {
    color: white;
    background-color: var(--secondary);
}

/* Button Styles */
.btn-primary {
    background-color: #2ecc71; /* Green color for the Espace Client button */
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Client Area Button */
.client-area-btn {
    margin-left: 1rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero, .page-hero {
    background-color: white;
    padding: 120px 0 80px;
}

.hero-content h1, .page-hero h1 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p, .page-hero p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Service Cards */
.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

/* Features and Benefits */
.why-us, .benefits {
    background-color: var(--light);
    padding: 80px 0;
}

.feature, .benefit {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature i, .benefit i {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Adjustments */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
    text-decoration: none;
}

/* Section Titles */
.section-title {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero, .page-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1, .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-card, .feature, .benefit {
        margin-bottom: 2rem;
    }
}