/*
Theme Name: Agile Raise
Theme URI: https://agileraise.com
Author: Manus AI
Author URI: https://agileraise.com
Description: Custom WordPress theme for Agile Raise Inc., focusing on growth capital and M&A advisory.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: agile-raise
Tags: responsive, business, finance, clean, professional
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    /* Add padding to account for fixed header */
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A5F7A;
}

p {
    margin-bottom: 20px;
}

a {
    color: #1A5F7A;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #D4AF37;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #1A5F7A;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 80px; /* Fixed height for header */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.site-logo {
    max-width: 200px;
}

.site-logo img {
    max-height: 50px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 30px;
}

.main-navigation a {
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.main-navigation a:hover {
    color: #D4AF37;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #D4AF37;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #D4AF37;
    color: #1A5F7A;
}

/* Hero Section */
.hero-section {
    background-color: #1A5F7A;
    color: #ffffff;
    padding: 80px 0 100px; /* Increased top padding */
    text-align: center;
    position: relative;
    margin-top: 0; /* Remove any margin that might cause compression */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 120px;
    margin: 0 auto 30px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 28px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 20px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1A5F7A;
}

.service-list {
    list-style-position: inside;
    text-align: left;
}

.service-list li {
    margin-bottom: 8px;
}

/* Sector Focus Section */
.sectors-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sector-item {
    text-align: center;
    padding: 20px;
}

.sector-title {
    font-size: 20px;
    color: #1A5F7A;
    margin-top: 15px;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background-color: #1A5F7A;
    color: #ffffff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 40px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #D4AF37;
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #D4AF37;
    color: #1A5F7A;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-email {
    font-size: 20px;
    color: #1A5F7A;
    margin-bottom: 15px;
    display: block;
}

.contact-address {
    margin-bottom: 15px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
}

.form-control:focus {
    border-color: #1A5F7A;
    outline: none;
}

.submit-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1A5F7A;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #D4AF37;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    background-color: #1A5F7A;
    color: #ffffff;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-info {
    font-size: 14px;
    margin: 10px 0;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.7;
    width: 100%;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* Increased for mobile to account for stacked header elements */
    }
    
    .site-header {
        height: auto;
        padding: 10px 0;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    .site-logo {
        margin-bottom: 15px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-navigation li {
        margin: 10px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
}
