/*
 * Arcology Website Redesign Styles
 * Warm, human, confident design
 */

/* ==========================================
   Base & Typography
   ========================================== */

body {
    background-color: #faf9f7;
    color: #3d3d3d;
    line-height: 1.8;
}

h1, h2, h3, h4 {
    color: #2d2d2d;
}

/* Override existing white heading colors for non-footer sections */
.hero-section h1,
.products-section h2, .products-section h3,
.about-section h2,
.services-section h2 {
    color: #2d2d2d;
}

/* ==========================================
   Navigation Overrides
   ========================================== */

.site-navbar {
    background-color: #faf9f7;
    position: relative;
}

.site-navbar .site-navigation .site-menu > li > a {
    color: #3d3d3d;
    font-weight: 500;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
    color: #4a7c59;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero-section {
    background-color: #faf9f7;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
}

.hero-content {
    padding: 4rem 2rem;
}

.hero-headline {
    font-family: "Trenda Black", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-subheadline {
    font-family: "Trenda Semibold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.5rem;
    color: #4a7c59;
    margin-bottom: 2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 6rem 0 4rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }
}

/* ==========================================
   Section Headings & Spacing
   ========================================== */

.section-heading {
    font-family: "Trenda Black", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 2.5rem;
    color: #2d2d2d;
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-intro {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ==========================================
   Products Section
   ========================================== */

.products-section {
    background-color: #faf9f7;
    padding: 6rem 0 8rem;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: "Trenda Bold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.75rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-family: "Trenda Semibold", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    color: #4a7c59;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

.product-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Coming Soon Product */
.product-coming-soon {
    background-color: #f5f5f3;
    border: 2px dashed #d0d0d0;
}

.product-coming-soon:hover {
    transform: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.coming-soon-badge {
    display: inline-block;
    background-color: #e8e8e6;
    color: #666;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
}

/* ==========================================
   About Section
   ========================================== */

.about-section {
    background-color: #fff;
    padding: 8rem 0;
}

.about-content {
    margin-top: 2rem;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Services Section
   ========================================== */

.services-section {
    background-color: #f5f4f2;
    padding: 8rem 0;
}

.services-content {
    margin-top: 2rem;
}

.services-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* ==========================================
   Buttons
   ========================================== */

.btn-primary {
    background-color: #4a7c59;
    border-color: #4a7c59;
    color: #fff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3d6649;
    border-color: #3d6649;
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================
   Footer Overrides
   ========================================== */

.site-footer {
    background-color: #333333;
}

.site-footer h1 {
    color: #fff;
}

.site-footer h2 {
    color: #fff;
}

/* Contact form card heading */
.site-footer .card h2 {
    color: #2d4a36;
}

.site-footer .footer-heading {
    color: #4a7c59;
}

/* ==========================================
   Anchor Links
   ========================================== */

a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

/* ==========================================
   Form Styling
   ========================================== */

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: #4a7c59;
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

/* ==========================================
   Responsive Adjustments
   ========================================== */

@media (max-width: 991px) {
    .section-heading {
        font-size: 2rem;
    }

    .products-section,
    .about-section,
    .services-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 1.75rem;
    }

    .product-card {
        padding: 2rem;
    }

    .about-content p,
    .services-content p {
        font-size: 1rem;
    }

    .products-section,
    .about-section,
    .services-section {
        padding: 4rem 0;
    }
}

/* ==========================================
   Utility Overrides
   ========================================== */

/* Remove old hero styles */
.site-blocks-cover {
    display: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #4a7c59;
    color: #fff;
}
