/* --- INNOVA PUBLISH GLOBAL CSS (NAVY & GOLD EDITORIAL THEME) --- */

/* Import Fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    background-color: #F9FAFB; /* Tailwind bg-gray-50 */
    font-family: 'Inter', sans-serif;
    color: #1E293B; /* Tailwind text-slate-800 */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1A2B48; /* Oxford Blue */
}

.innova-wrapper {
    max-width: 1280px; /* Tailwind max-w-7xl */
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER / NAVIGATION (Now White & Clean) --- */
.innova-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 40px;
}

.innova-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.innova-logo {
    color: #1A2B48;
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.05em; /* Tailwind tracking-tighter */
}
.innova-logo span {
    color: #C5A059; /* Gold */
    font-weight: 300;
}

.innova-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
}

.innova-nav-menu li a {
    color: #1E293B;
    text-decoration: none;
    font-size: 0.875rem; /* Tailwind text-sm */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em; /* Tailwind tracking-wide */
    transition: color 0.3s ease;
}

.innova-nav-menu li a:hover {
    color: #C5A059;
}

/* --- HAMBURGER BUTTON (Hidden on Desktop) --- */
.innova-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #1A2B48; /* Navy blue lines to show up on the white header */
    transition: all 0.3s ease;
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    .innova-menu-toggle {
        display: block; /* Show hamburger icon on mobile */
    }

    .innova-navigation {
        display: none; /* Hide the horizontal menu by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-top: 1px solid #F3F4F6;
        padding: 24px 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .innova-navigation.is-open {
        display: block; /* Show menu when the JS toggles this class */
    }

    .innova-nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .innova-nav-menu li a {
        font-size: 1.125rem; /* Slightly larger text for mobile tapping */
    }

    /* Hamburger Animation to 'X' */
    .innova-menu-toggle.is-active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .innova-menu-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .innova-menu-toggle.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* --- HERO SECTION (Deep Navy & Tall) --- */
.innova-hero {
    background-color: #1A2B48;
    color: #ffffff;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    border-radius: 0; /* Removing border radius for full width feel */
    margin-bottom: 80px;
}

.innova-hero h1 {
    font-size: 3.5rem; /* Tailwind text-5xl/6xl */
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 400;
}

.innova-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #D1D5DB; /* Tailwind text-gray-300 */
}

/* --- BUTTONS --- */
.innova-btn {
    display: inline-block;
    background-color: #C5A059; /* Gold */
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 2px; /* Tailwind rounded-sm */
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: filter 0.3s ease;
    border: none;
}

.innova-btn:hover {
    filter: brightness(1.1);
    color: #ffffff;
}

.innova-btn-outline {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.innova-btn-outline:hover {
    background-color: #ffffff;
    color: #1A2B48;
}

/* --- SECTION TITLES (With Gold Underline) --- */
.innova-section-title {
    text-align: center;
    font-size: 2.25rem; /* Tailwind text-4xl */
    margin-bottom: 16px;
    font-weight: 400;
}

/* This creates the little gold bar under the titles automatically! */
.innova-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #C5A059;
    margin: 16px auto 40px auto;
}

/* --- CARDS / GRID --- */
.innova-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.innova-card {
    background: #ffffff;
    border: 1px solid #F3F4F6; /* Light gray border */
    padding: 32px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.innova-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.innova-card h3 {
    font-size: 1.5rem;
    margin-top: 8px;
    margin-bottom: 16px;
}

.innova-card p {
    color: #4B5563; /* Tailwind text-gray-600 */
    font-size: 0.875rem;
    margin-bottom: 24px;
}

/* Link inside cards mimicking the "VIEW JOURNAL" style */
.innova-card-link {
    color: #1A2B48;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #C5A059;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.innova-card-link:hover {
    color: #C5A059;
}

/* --- MOBILE MENU OVERRIDES FOR WHITE HEADER --- */
@media screen and (max-width: 768px) {
    .innova-navigation {
        background-color: #ffffff;
        border-top: 1px solid #F3F4F6;
    }
}
/* --- INNOVA PUBLISH FOOTER CSS --- */
.innova-footer {
    background-color: #1A2B48; /* Oxford Navy */
    color: #ffffff;
    padding: 64px 24px 32px 24px;
    font-family: 'Inter', sans-serif;
}

.innova-footer-top {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    border-bottom: 1px solid #334155; /* Subtle dark border */
    padding-bottom: 48px;
}

.innova-footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.05em;
    font-family: 'Inter', sans-serif;
}
.innova-footer-logo span {
    color: #C5A059; /* Gold */
    font-weight: 300;
}

.innova-footer-text {
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.6;
}

.innova-footer-title {
    color: #C5A059;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Footer Nav Menu Styles */
.innova-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Splits links into 2 equal columns */
    gap: 16px 32px; /* 16px vertical gap, 32px horizontal gap */
}
.innova-footer-menu li a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}
.innova-footer-menu li a:hover {
    color: #ffffff;
}

.innova-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    padding-top: 32px;
    color: #6B7280;
    font-size: 0.75rem;
}