/* ============================================
   SEEQ UNDER CONSTRUCTION PAGE STYLES
   Hero Image Layout with Loops Form
   ============================================ */

/* Color Variables */
:root {
    --primary-green: #1ac7a7;
    --primary-dark: #152528;
    --secondary-blue: #c7ecff;
    --text-grey: #686868;
    --neutral-white: #ffffff;
    --neutral-black: #000000;
    --neutral-grey-medium: #eeeeee;
    --border-light: #E5E7EB;
    --shadow-soft: 0px 2.933px 17.6px 0px rgba(0,0,0,0.1);
    --shadow-card: 0px 13.56px 27.12px -4px rgba(12,12,13,0.1);
}

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

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--primary-dark);
    background: var(--neutral-white);
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    min-height: 70vh;
    background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=3135&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Dark Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(21, 37, 40, 0.4) 0%,
        rgba(21, 37, 40, 0.6) 50%,
        rgba(21, 37, 40, 0.8) 100%
    );
    z-index: 1;
}

/* Navigation */
.navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    padding: 40px 0 20px;
}

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

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.logo-text {
    height: 27px;
    width: auto;
    max-width: 81px;
    object-fit: contain;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--neutral-white);
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-green);
    display: block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--neutral-white);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
    max-width: 1152px;
    width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Signup Section */
.signup-section {
    background: var(--neutral-white);
    padding: 40px 0 80px;
}

.signup-content {
    text-align: center;
    margin-bottom: 80px;
}

.signup-content h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.signup-content p {
    font-size: 20px;
    color: var(--text-grey);
    margin-bottom: 40px;
}

/* Newsletter Form Container */
.newsletter-form-container {
    margin: 40px auto;
    max-width: 500px;
}

/* Custom Loops Form Styling */
.newsletter-form-input:focus {
    outline: none !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 3px rgba(26, 199, 167, 0.1) !important;
}

.newsletter-form-button:hover {
    background: #15b396 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 199, 167, 0.3) !important;
}

.privacy-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-grey);
    margin-top: 20px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--neutral-white);
    border: 1px solid var(--neutral-grey-medium);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-green);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.5;
}

/* Action Cards Specific Styles */
.action-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-card-link * {
    text-decoration: none !important;
}

.action-card-link::after {
    content: '→';
    position: absolute;
    bottom: 20px;
    right: 24px;
    color: var(--primary-green);
    font-size: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.action-card-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.action-card-link:hover {
    text-decoration: none !important;
}

.action-card-link:hover * {
    text-decoration: none !important;
}

.action-card-link:hover .feature-icon {
    transform: scale(1.1);
}

/* Primary card styling - removed to make all cards equal */
/* .primary-card styles removed for consistency */

/* Footer */
.footer {
    text-align: center;
    padding: 60px 0 40px;
    background: #f9fafb;
    border-top: 1px solid var(--neutral-grey-medium);
}

.footer-content .tagline {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.footer-content .copyright {
    font-size: 14px;
    color: var(--text-grey);
}

/* Responsive Design */
@media (max-width: 768px) {
    .action-card-link::after {
        opacity: 1;
        transform: translateX(0);
        bottom: 15px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-title .highlight {
        display: inline;
        margin-top: 0;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .signup-content h2 {
        font-size: 32px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column !important;
        gap: 16px;
    }
    
    .newsletter-form-input {
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .newsletter-form-button {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .signup-content h2 {
        font-size: 28px;
    }
    
    .signup-content p {
        font-size: 16px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
}

/* Animation for subtle entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .signup-content, .features {
    animation: fadeInUp 0.8s ease-out;
}