/* Custom CSS for AugmentedIris */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --primary-color: #00897B; /* Teal Green */
    --background-color: #0D1117; /* Dark */
    --text-color: #ffffff;
    --accent-color: #fcd34d; /* Yellowish for highlights */
    --light-gray: #f0f0f0; /* For light background sections */
    --dark-gray: #2d3748;
    --reddish: #ef4444;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    word-break: break-word;
}

/* General button and link styles */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 15px 30px;
    border-radius: 25px; /* Rounded button */
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.btn:hover {
    background-color: #006b5e; /* Darker teal */
    transform: translateY(-3px);
    opacity: 0.85;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #00b3a1; /* Lighter teal */
    opacity: 0.85;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh; /* Reduced height to 50% */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--background-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_background.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3); /* Darker overlay */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(252, 211, 77, 0.7);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 17, 23, 0.8); /* Semi-transparent dark background */
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.8em;
    color: var(--accent-color);
    text-decoration: none;
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--primary-color);
    opacity: 0.85;
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

section h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Technology Section */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.tech-item h3 {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.tech-item p {
    font-size: 1em;
    color: var(--text-color);
}

.tech-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(175deg); /* Teal color filter */
}

/* Potential Use Cases Section */
.use-cases-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--background-color);
    padding: 80px 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.use-cases-section h2 {
    color: var(--background-color);
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 137, 123, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 137, 123, 0.2);
    border-color: var(--primary-color);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), #00b3a1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
}

.use-case-icon img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.use-case-title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--background-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.use-case-description {
    font-size: 0.95em;
    color: #64748b;
    line-height: 1.6;
}

/* Ecosystem Section */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
    gap: 30px;
    margin-top: 50px;
}

.ecosystem-item {
    background-color: var(--dark-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.ecosystem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.ecosystem-item h3 {
    font-size: 1.8em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.ecosystem-item p {
    font-size: 1em;
    color: var(--text-color);
}

/* Valuation Section */
.valuation-section {
    background-color: var(--dark-gray);
    padding: 60px 20px;
    margin-top: 80px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.valuation-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.valuation-estimate {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(252, 211, 77, 0.5);
}

.valuation-description {
    font-size: 1.2em;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Contact Form Section */
.contact-form-container {
    background-color: var(--dark-gray);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--dark-gray);
    border-radius: 5px;
    background-color: var(--background-color);
    color: var(--text-color);
}

.contact-form-container input[type="submit"] {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 15px;
    border: none;
    border-radius: 25px; /* Rounded button */
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.contact-form-container input[type="submit"]:hover {
    background-color: #006b5e; /* Darker teal */
    opacity: 0.85;
}

/* Fake News Banner */
.fake-news-banner {
    background-color: var(--light-gray);
    color: var(--background-color);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.fake-news-banner h2 {
    font-size: 2em;
    color: var(--background-color);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9em;
    color: var(--text-color);
}

.footer p {
    margin-bottom: 10px;
}

.footer .footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer .footer-links a:hover {
    color: var(--primary-color);
    opacity: 0.85;
}

.footer a.email-link {
    color: var(--text-color); /* White color for email link */
    text-decoration: none;
    font-weight: bold;
}

.footer a.email-link:hover {
    color: var(--primary-color);
    opacity: 0.85;
}

/* Disclaimer Section */
.disclaimer-box {
    background-color: var(--reddish);
    color: var(--text-color);
    padding: 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    border: 2px solid var(--reddish);
}

.disclaimer-box h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-box .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .technology-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .ecosystem-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .navbar .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(13, 17, 23, 0.95);
        display: none;
        padding: 20px 0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 10px 0;
    }

    .navbar .hamburger {
        display: block;
        cursor: pointer;
        font-size: 2em;
        color: var(--text-color);
    }

    .mobile-inquire-btn {
        display: block;
    }
}

/* Other styles remain the same */

.hamburger {
    display: none;
}

.mobile-inquire-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}



/* ALERT BANNER */
.alert-banner {
    background: #ff4d4d;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* SPECIFICATIONS GRID */
.specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.spec-item {
    border: 1px solid #00e6cc;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background: rgba(0, 230, 204, 0.1);
}

.spec-value {
    font-size: 2rem;
    font-weight: bold;
    color: #00e6cc;
}

.spec-label {
    color: var(--text-color);
    margin-top: 5px;
}

/* PRESS LOGOS */
.press-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.press-logos img {
    height: 40px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.press-logos img:hover {
    opacity: 1;
}

/* DOMAIN SALE CTA SECTION */
.sale-cta {
    background: linear-gradient(135deg, var(--primary-color), #006b5e);
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
}

.sale-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.sale-cta .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sale-cta .features div {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-weight: bold;
    color: white;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile responsiveness for new elements */
@media (max-width: 768px) {
    .specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .spec-value {
        font-size: 1.5rem;
    }
    
    .press-logos {
        gap: 15px;
    }
    
    .press-logos img {
        height: 30px;
    }
    
    .sale-cta h2 {
        font-size: 2rem;
    }
    
    .sale-cta .features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .alert-banner {
        font-size: 0.9rem;
        padding: 8px;
    }
}

