/* CSS for Ouro Intelligence Website - New Color Scheme & Calculator Layout */

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Black background */
    color: #E5E7EB; /* Light grey text */
    line-height: 1.6;
    -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjustments */
}

header {
    background-color: #111827;
    color: white;
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

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

nav .logo img {
    height: 40px; /* Slightly smaller logo for better mobile fit */
    margin-right: 10px;
}

nav .logo span {
    font-size: 1.5em; /* Adjusted for mobile */
    font-weight: bold;
    color: #FFFFFF;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #D1D5DB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #EF4444; /* Red accent */
}

/* General CTA Button Styles */
.cta-button {
    background-color: #3B82F6; /* Primary Blue */
    color: #FFFFFF !important; /* Ensure text is white */
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    border: none; /* Remove border for solid button */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2563EB; /* Darker Blue */
}

.cta-button-secondary, button.cta-button-secondary {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 10px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    border: none; 
    cursor: pointer;
    background-color: #EF4444; /* Primary Red */
    color: #FFFFFF;
}

.cta-button-secondary:hover, button.cta-button-secondary:hover {
    background-color: #DC2626; /* Darker Red */
}

.cta-button-tertiary {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 10px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
    color: #3B82F6; /* Primary Blue */
    border: 2px solid #3B82F6;
}

.cta-button-tertiary:hover {
    background-color: #3B82F6;
    color: #FFFFFF;
}


.hero {
    background-color: #1F2937;
    color: white;
    padding: 60px 20px; /* Adjusted padding for mobile */
    text-align: center;
}

.hero h1 {
    font-size: 2.5em; /* Adjusted for mobile */
    margin-bottom: 0.5em;
    font-weight: 700;
    color: #FFFFFF;
}

.hero p {
    font-size: 1.1em; /* Adjusted for mobile */
    margin-bottom: 1.5em;
    color: #9CA3AF;
}

.button-container {
    text-align: center;
    margin-top: 20px;
}

section {
    padding: 40px 20px; /* Adjusted padding for mobile */
    max-width: 1100px;
    margin: 20px auto;
    background-color: #111827; /* Dark section background */
    border-radius: 8px;
}

.feature-item, .step-item, .tech-feature-item, .case-study-item {
    background-color: #FFFFFF;
    color: #1F2937;
    padding: 20px; /* Adjusted padding */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CALCULATOR SECTION STYLES */
.calculator-section h2 {
    color: #FFFFFF; 
}

.calculator-main-content {
    display: flex;
    flex-direction: column; /* Stack on all screens */
    gap: 20px; /* Gap for stacked items */
    align-items: center; /* Center the stacked items */
}

.calculator-form-container {
    width: 100%;
    max-width: 750px; /* Max width for stacked item */
    background-color: #1F2937; 
    padding: 25px; /* Consistent padding */
    border-radius: 8px;
    display: flex;
    flex-direction: column; 
    justify-content: space-between; 
}

.calculator-form {
    /* Form specific styles if needed, otherwise it inherits from container */
}

.calculator-form .form-group {
    margin-bottom: 15px;
}

.calculator-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #D1D5DB; 
}

.calculator-form .form-group input[type="number"] {
    width: calc(100% - 22px); /* Adjusted for padding and border */
    padding: 10px;
    border: 1px solid #4B5563; 
    border-radius: 4px;
    font-size: 1em;
    background-color: #374151; 
    color: #E5E7EB; 
}

.calculator-summary-boxes {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 10px; /* Reduced gap */
    margin-top: 20px; 
    width: 100%; 
}

.summary-box {
    background-color: #374151; 
    color: #E5E7EB;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    flex: 1;
}

.summary-box p {
    margin: 0 0 5px 0;
    font-size: 0.9em;
    color: #9CA3AF;
}

.summary-box h4 {
    margin: 0;
    font-size: 1.2em; /* Adjusted for mobile */
    color: #FFFFFF;
}

.pie-chart-container-wrapper {
    width: 100%;
    max-width: 750px; /* Max width for stacked item */
    background-color: #1F2937; 
    padding: 25px; /* Consistent padding */
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: space-between; 
}

.pie-chart-container-wrapper h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3em;
}

.pie-chart-container {
    width: 100%;
    max-width: 380px; /* Max width of the chart itself, can be adjusted */
    margin-bottom: 20px;
}

.missed-opportunities-boxes {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: 10px; /* Reduced gap */
    width: 100%; 
    margin-top: 20px; 
}

.opportunity-box {
    background-color: #374151; 
    color: #E5E7EB;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    flex: 1;
}

.opportunity-box p {
    margin: 0 0 5px 0;
    font-size: 0.9em;
    color: #9CA3AF;
}

.opportunity-box h4 {
    margin: 0;
    font-size: 1.2em; /* Adjusted for mobile */
    color: #FFFFFF;
}
/* END CALCULATOR SECTION STYLES */

/* FAQ Section Styles */
#faq {
    background-color: #111827; 
    padding: 40px 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1100px;
}

#faq h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
    color: #FFFFFF;
    font-weight: 600;
}

.faq-item {
    background-color: #1F2937; 
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.faq-item h3 {
    font-size: 1.2em;
    color: #3B82F6; 
    margin-top: 0;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.95em;
    color: #D1D5DB; 
    margin-bottom: 0;
    line-height: 1.6;
}
/* END FAQ Section Styles */

section:nth-child(even) {}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em; /* Adjusted for mobile */
    color: #FFFFFF;
    font-weight: 600;
}

.features-grid, .steps-grid, .tech-features-grid, .case-study-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack to single column on mobile */
    gap: 20px;
    margin-bottom: 20px;
}

.feature-item:hover, .step-item:hover, .tech-feature-item:hover, .case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.feature-item span, .step-item span {
    font-size: 2em;
    display: block;
    margin-bottom: 10px;
    color: #3B82F6; 
    font-weight: bold;
}

.tech-feature-item .icon {
    font-size: 2.5em; 
    display: block;
    margin-bottom: 10px;
    color: #EF4444; 
}

.quote {
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
    margin: 30px auto;
    color: #D1D5DB;
    max-width: 90%;
}

#contact {
    background-color: #1F2937;
    color: #E5E7EB;
}

#contact h2 {
    color: #FFFFFF;
    font-size: 1.8em;
}

#contact p {
    font-size: 1em;
    text-align: center;
}

#contact a {
    color: #3B82F6;
    text-decoration: none;
}
#contact a:hover {
    text-decoration: underline;
    color: #2563EB;
}

/* Calendly Widget Responsiveness */
.calendly-inline-widget {
    min-width: 100% !important; /* Ensure it takes full width */
    width: 100% !important;
    height: 650px; /* Adjust height for mobile if needed, or use their recommended settings */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    color: #9CA3AF;
    border-top: 1px solid #374151;
}

footer a {
    color: #EF4444;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #DC2626;
}

.hamburger-menu {
    display: block; /* Always visible for mobile-first approach, JS toggles nav ul */
    cursor: pointer;
}

.hamburger-menu div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: 0.4s;
}

nav ul {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 60px; /* Adjusted based on new logo/header height */
    left: 0;
    background-color: #111827; 
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
nav ul.active {
    display: flex; 
}
nav ul li {
    margin: 10px 0;
}

/* Larger screen adjustments - Tablet and up */
@media (min-width: 769px) {
    nav .logo img {
        height: 50px;
    }
    nav .logo span {
        font-size: 1.8em;
    }
    .hero h1 {
        font-size: 3em;
    }
    .hero p {
        font-size: 1.3em;
    }
    section h2 {
        font-size: 2.2em;
    }
    .hamburger-menu {
        display: none; /* Hide hamburger on larger screens */
    }
    nav ul {
        display: flex !important; /* Override display:none for larger screens */
        flex-direction: row;
        position: static;
        width: auto;
        background-color: transparent;
        box-shadow: none;
    }
    nav ul li {
        margin-left: 25px;
        margin-top: 0; /* Reset mobile margin */
    }
    .features-grid, .steps-grid, .tech-features-grid, .case-study-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Revert to grid for larger screens */
    }
    .calculator-main-content {
        /* flex-direction: row; <-- This was the line making it side-by-side, now removed/commented */
        /* The base style is flex-direction: column; align-items: center; */
        gap: 30px; /* Keep or adjust gap for larger screens if different from base */
    }
    /* .calculator-form-container, .pie-chart-container-wrapper { */
        /* width: auto; <-- This was for when they were in a row, now they use base max-width */
    /* } */

    .calculator-summary-boxes, .missed-opportunities-boxes {
        flex-direction: row; /* These internal boxes should still be row on larger screens */
        gap: 15px;
    }
    .pie-chart-container {
        max-width: 380px; /* Keep this for the chart itself */
    }
    .summary-box h4, .opportunity-box h4 {
        font-size: 1.3em;
    }
    #faq h2 {
        font-size: 2.2em;
    }
    .faq-item h3 {
        font-size: 1.4em;
    }
    .faq-item p {
        font-size: 1em;
    }
    #contact h2 {
        font-size: 2.2em;
    }
    #contact p {
        font-size: 1.1em;
    }
}

/* Desktop specific adjustments if needed */
@media (min-width: 1024px) {
    /* Add any desktop-specific overrides here */
    .pie-chart-container {
        max-width: 420px; /* Slightly larger chart on very wide screens if desired */
    }
}

