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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f5;
}

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

/* Header */
.header {
    background-color: #5a0d38;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 1.5rem;  /* Same as h1 font-size */
    width: auto;
    flex-shrink: 0;  /* Prevents logo from shrinking */
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ec912e;
}

.login-btn {
    background-color: #ec912e;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.login-btn:hover {
    background-color: #d67b1a;
    color: white !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #5a0d38 0%, #0d385a 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: #ec912e;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 145, 46, 0.3);
}

.cta-button:hover {
    background-color: #d67b1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 145, 46, 0.4);
}

/* Value Props Section */
.value-props {
    padding: 5rem 0;
    background-color: white;
}

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

.prop-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.prop-item:hover {
    transform: translateY(-5px);
}

.prop-item:nth-child(1) { border-top: 4px solid #5a0d38; }
.prop-item:nth-child(2) { border-top: 4px solid #385a0d; }
.prop-item:nth-child(3) { border-top: 4px solid #0d385a; }
.prop-item:nth-child(4) { border-top: 4px solid #ec912e; }

.prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.prop-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #5a0d38;
    font-weight: 600;
}

.prop-item p {
    color: #666;
    line-height: 1.6;
}

/* Product Catalogs Section */
.product-catalogs {
    padding: 5rem 0;
    background-color: #f7f7f5;
}

.product-catalogs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #5a0d38;
    font-weight: 700;
}

.catalog-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.catalog-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.catalog-image {
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #5a0d38;
    font-weight: 600;
}

.catalog-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background-color: white;
}

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

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #5a0d38;
    font-weight: 600;
}

.trust-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #1f2034;
    color: 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: #ec912e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #a97aa3;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ec912e;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        fontSize: 1.1rem;
    }
    
    .props-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}