:root {
    --background-color: #fdf3dd;    /* Cream background */
    --text-color: #1c1b18;         /* Primary text black */
    --primary-color: #d98843;      /* Accent orange */
    --ui-background: #f1f0ee;      /* Light gray UI */
    --shadow-color: #b5b2ab;       /* Soft shadow gray */
    --secondary-color: #34495e;    /* Keeping secondary color for now as it's used for contrast */
    --btn-hover-color: #c77736;    /* Darker version of accent orange for hover states */
    --feature-card-bg: #0F172A;    /* Dark blue for feature cards */
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    padding: 20px 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 240px;
    margin-right: 15px;
}

h1 {
    font-size: 60px;
    font-weight: bold;
}

.tagline {
    margin-left: 30px;
    font-size: 35px;
}

.main-nav {
    margin: 0 20px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(217, 136, 67, 0.1);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 80%;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    font-size: 18px;
}

.btn-primary:hover, .btn-cta:hover {
    background-color: var(--btn-hover-color);
}

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

/* Hero section */
.hero {
    padding: 80px 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
}

.hero h2 {
    font-size: 46px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.screenshot {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features section */
.features {
    padding: 80px 0;
    background-color: var(--background-color);
    margin-top: 40px;
}

.features h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

.features h3 {
    font-size: 32px;
    text-align: center;
    margin: 40px 0 40px;
    color: var(--text-color);
}

.features-intro {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--feature-card-bg);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.feature-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.8;
    color: white;
}

.features-cta {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.features-cta .btn-cta {
    font-size: 24px;
    padding: 20px 40px;
    min-width: 300px;
}

/* Footer styles */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    list-style: none;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        margin: 20px 0;
    }
    
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .tagline {
        margin-left: 0;
        margin-top: 15px;
        font-size: 22px;
    }

    .logo {
        height: 70px;
    }
    
    h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features h2 {
        font-size: 32px;
    }
    
    .features h3 {
        font-size: 28px;
    }
    
    .features-intro {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 20px;
    }

    .features-cta {
        margin-top: 60px;
        padding: 0 20px 30px;
    }
    
    .features-cta .btn-cta {
        font-size: 20px;
        padding: 15px 30px;
        min-width: 250px;
    }
}

