/*
Theme Name: ETZME One Page
Description: Modern one-page WordPress theme for ETZME with Business and Professional sections
Author: ETZME
Version: 1.0.0
License: GPL v2 or later
Text Domain: etzme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

/* Brand Colors */
:root {
    --etzme-dark: #0C2728;
    --etzme-sage: #5E7B6D;
    --etzme-brown: #8C6647;
    --etzme-tan: #AE8F6B;
    --etzme-light: #E9E5DF;
    --etzme-green: #10B981;
    --etzme-purple: #8B5CF6;
    --etzme-white: #ffffff;
}

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

.section {
    padding: 80px 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--etzme-dark);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--etzme-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--etzme-sage);
}

.cta-button {
    background: var(--etzme-sage);
    color: var(--etzme-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--etzme-dark);
    transform: translateY(-2px);
}

/* Page-Specific Header Styles */
.business-header {
    background: var(--etzme-green);
}

.business-header .nav-menu a {
    color: white;
}

.business-header .logo {
    color: white;
}

.business-header .cta-button {
    background: white;
    color: var(--etzme-green);
}

.professional-header {
    background: var(--etzme-dark);
}

.professional-header .nav-menu a {
    color: var(--etzme-light);
}

.professional-header .logo {
    color: var(--etzme-light);
}

.professional-header .cta-button {
    background: var(--etzme-brown);
    color: var(--etzme-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--etzme-light) 0%, rgba(94, 123, 109, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--etzme-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--etzme-sage);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--etzme-sage);
    color: var(--etzme-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--etzme-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--etzme-dark);
    padding: 1rem 2rem;
    border: 2px solid var(--etzme-sage);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--etzme-sage);
    color: var(--etzme-white);
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--etzme-sage);
    display: block;
}

.stat-label {
    color: var(--etzme-dark);
    font-weight: 500;
}

/* Page Styles */
.business-page {
    background: linear-gradient(135deg, var(--etzme-green) 0%, rgba(16, 185, 129, 0.8) 100%);
    color: white;
}

.business-page .hero-text h1,
.business-page .hero-text p {
    color: white;
}

.business-page .btn-primary {
    background: white;
    color: var(--etzme-green);
}

.business-page .btn-secondary {
    border-color: white;
    color: white;
}

.professional-page {
    background: var(--etzme-dark);
    color: var(--etzme-light);
}

.professional-page .hero-text h1,
.professional-page .hero-text p {
    color: var(--etzme-light);
}

.professional-page .btn-primary {
    background: var(--etzme-brown);
    color: var(--etzme-light);
}

.professional-page .btn-secondary {
    border-color: var(--etzme-brown);
    color: var(--etzme-brown);
}

/* Features Section */
.features {
    background: var(--etzme-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--etzme-dark);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--etzme-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--etzme-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--etzme-white);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--etzme-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--etzme-sage);
}

/* Business Section */
.business-section {
    background: linear-gradient(135deg, var(--etzme-green) 0%, rgba(16, 185, 129, 0.8) 100%);
    color: var(--etzme-white);
}

.business-section .section-title {
    color: var(--etzme-white);
}

/* Professional Section */
.professional-section {
    background: linear-gradient(135deg, var(--etzme-purple) 0%, rgba(139, 92, 246, 0.8) 100%);
    color: var(--etzme-white);
}

.professional-section .section-title {
    color: var(--etzme-white);
}

/* Contact Section */
.contact {
    background: var(--etzme-dark);
    color: var(--etzme-white);
}

.contact .section-title {
    color: var(--etzme-white);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--etzme-white);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: var(--etzme-dark);
    color: var(--etzme-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--etzme-light);
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--etzme-sage);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}