/*
Theme Name: The Calliano Group
Theme URI: https://thecallianogroup.com
Description: A professional WordPress theme for The Calliano Group - Hospitality Investment Firm. Features navy blue and gold color scheme with luxury hotel portfolio showcases.
Version: 1.0
Author: HayTree Web Services, LLC
Author URI: https://haytreewebservices.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: calliano-group
Tags: business, hospitality, investment, portfolio, custom-header, custom-menu, responsive-layout

This theme, like WordPress, is licensed under the GPL.
*/

:root {
    --primary-navy: #0F1C2A;
    --primary-gold: #c9a961;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

a:hover {
    color: var(--primary-navy);
}

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

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header.site-header {
    background: var(--primary-navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.site-logo img {
    height: 90px;
    width: auto;
    display: block;
}

nav.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav.main-nav a {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

nav.main-nav a:hover {
    color: var(--primary-gold);
}

nav.main-nav a.active {
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 4px;
}

.cta-button {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--primary-gold);
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-gold);
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 30, 43, 0.85), rgba(26, 35, 50, 0.75));
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    position: relative;
}

.hero-logo {
    background: #101E2B;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    position: relative;
    z-index: 3;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
}

.hero-cta:hover {
    background: var(--text-light);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.key-metrics {
    background: var(--text-light);
    padding: 4rem 0;
    border-top: 3px solid var(--primary-gold);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.metric-item {
    text-align: center;
    padding: 2rem;
}

.metric-value {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.section-title .underline {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto;
}

.bg-light {
    background: var(--bg-light);
}

.mission-statement {
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 4rem;
    border-left: 5px solid var(--primary-gold);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin: 3rem 0;
}

.core-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-gold);
}

.principle-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.principle-card h3::before {
    content: "▸";
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.team-section {
    margin-top: 3rem;
}

.team-highlight {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.team-highlight h3 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    background: var(--text-light);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--primary-gold);
    max-width: 380px;
    flex: 0 1 380px;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.3);
    border-color: var(--primary-navy);
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.property-card {
    background: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    position: relative;
}

.property-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.8), rgba(45, 64, 89, 0.7));
}

.property-image span {
    position: relative;
    z-index: 1;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.property-content {
    padding: 2rem;
}

.property-content h3 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.property-status {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.investment-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--primary-navy);
    color: var(--text-light);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--primary-navy);
    display: block;
    margin-bottom: 0.5rem;
}

footer.site-footer {
    background: var(--primary-navy);
    color: var(--text-light);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--text-light);
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav.main-nav {
        display: none;
    }
    
    nav.main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-navy);
        padding: 1rem;
        gap: 0;
    }
    
    nav.main-nav ul li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav.main-nav ul.active {
        display: flex;
    }
    
    .cta-button {
        display: inline-block;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .investment-steps {
        flex-direction: column;
    }
    
    .site-logo img {
        height: 70px;
    }
}
