/* Azure Yacht Group Business Plan Styles for Tilda Integration */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Base Container */
.azure-business-plan {
    font-family: 'Inter', sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    line-height: 1.6;
}

/* Section Styling */
.azure-plan-section {
    margin-bottom: 50px;
}

.azure-section-title {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
}

.azure-subsection-title {
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Executive Summary */
.azure-executive-summary {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.azure-executive-summary h2 {
    margin-top: 0;
    color: #1a365d;
    font-family: 'Playfair Display', serif;
}

/* Content Styling */
.azure-plan-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.azure-plan-content ul,
.azure-plan-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.azure-plan-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Key Metrics */
.azure-key-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.azure-metric-box {
    flex: 1;
    min-width: 200px;
    background-color: #1a365d;
    color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.azure-metric-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15);
}

.azure-metric-box h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.azure-metric-box .value {
    font-size: 36px;
    font-weight: 600;
    margin: 10px 0;
    font-family: 'Inter', sans-serif;
}

.azure-metric-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Tables */
.azure-service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: 'Inter', sans-serif;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.azure-service-table th, 
.azure-service-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.azure-service-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a365d;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.azure-service-table tr:hover {
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.azure-service-table tr:last-child td {
    border-bottom: none;
}

/* ROI Table Specific Styling */
.azure-roi-table {
    margin: 40px 0;
}

.azure-roi-table .roi-multiple {
    font-weight: 700;
    color: #1a365d;
    font-size: 16px;
}

/* Feature Boxes */
.azure-key-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.azure-feature-box {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.azure-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.azure-feature-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a365d;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.azure-feature-box h3 i {
    margin-right: 10px;
    color: #1a365d;
}

.azure-feature-box p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* SWOT Analysis */
.azure-swot-analysis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.azure-swot-box {
    padding: 20px;
    border-radius: 5px;
}

.azure-swot-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.azure-swot-box h3 i {
    margin-right: 10px;
}

.azure-swot-box ul {
    margin: 0;
    padding-left: 20px;
}

.azure-swot-box li {
    margin-bottom: 8px;
}

.azure-strengths {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
}

.azure-weaknesses {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
}

.azure-opportunities {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

.azure-threats {
    background-color: rgba(108, 117, 125, 0.1);
    border-left: 4px solid #6c757d;
}

/* Timeline */
.azure-timeline {
    margin: 30px 0;
}

.azure-timeline-item {
    display: flex;
    margin-bottom: 20px;
}

.azure-timeline-date {
    width: 150px;
    flex-shrink: 0;
    padding-right: 20px;
    font-weight: 600;
    color: #1a365d;
    font-family: 'Inter', sans-serif;
}

.azure-timeline-content {
    flex-grow: 1;
    border-left: 3px solid #1a365d;
    padding-left: 20px;
    padding-bottom: 15px;
}

.azure-timeline-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #1a365d;
    font-family: 'Playfair Display', serif;
}

.azure-timeline-content p {
    margin-bottom: 0;
}

/* Investment Opportunity Section */
.azure-investment-opportunity {
    background-color: #1a365d;
    color: white;
    padding: 30px;
    border-radius: 5px;
    margin: 40px 0;
}

.azure-investment-opportunity h2 {
    color: white;
    margin-top: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.azure-investment-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.azure-stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.azure-stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.azure-stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* Financial Projections */
.azure-financial-projections {
    margin: 30px 0;
}

.azure-chart-container {
    height: 400px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.azure-chart-placeholder {
    color: #999;
    font-style: italic;
    text-align: center;
}

/* Buttons and CTAs */
.azure-cta-button {
    background-color: #1a365d;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.azure-cta-button:hover {
    background-color: #2c5282;
    color: white;
    text-decoration: none;
}

.azure-cta-button.secondary {
    background-color: white;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.azure-cta-button.secondary:hover {
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .azure-business-plan {
        padding: 20px 15px;
    }
    
    .azure-section-title {
        font-size: 24px;
    }
    
    .azure-subsection-title {
        font-size: 20px;
    }
    
    .azure-key-metrics {
        flex-direction: column;
    }
    
    .azure-metric-box {
        min-width: auto;
    }
    
    .azure-service-table {
        font-size: 14px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .azure-service-table th,
    .azure-service-table td {
        padding: 8px 10px;
    }
    
    .azure-swot-analysis {
        grid-template-columns: 1fr;
    }
    
    .azure-key-features {
        grid-template-columns: 1fr;
    }
    
    .azure-timeline-item {
        flex-direction: column;
    }
    
    .azure-timeline-date {
        width: auto;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .azure-timeline-content {
        border-left: none;
        border-top: 3px solid #1a365d;
        padding-left: 0;
        padding-top: 15px;
    }
    
    .azure-investment-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .azure-stat-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .azure-business-plan {
        padding: 15px 10px;
    }
    
    .azure-executive-summary {
        padding: 20px;
    }
    
    .azure-metric-box {
        padding: 15px;
    }
    
    .azure-metric-box .value {
        font-size: 28px;
    }
    
    .azure-feature-box {
        padding: 15px;
    }
    
    .azure-investment-opportunity {
        padding: 20px;
    }
    
    .azure-stat-value {
        font-size: 28px;
    }
}

/* Print Styles */
@media print {
    .azure-business-plan {
        max-width: 100%;
        padding: 0;
        font-size: 12px;
    }
    
    .azure-metric-box {
        break-inside: avoid;
        background-color: #f8f9fa !important;
        color: #333 !important;
        border: 1px solid #e0e0e0;
    }
    
    .azure-service-table {
        break-inside: avoid;
        font-size: 11px;
    }
    
    .azure-feature-box {
        break-inside: avoid;
    }
    
    .azure-investment-opportunity {
        background-color: #f8f9fa !important;
        color: #333 !important;
        border: 2px solid #1a365d;
    }
    
    .azure-section-title {
        break-after: avoid;
    }
    
    .azure-plan-section {
        break-inside: avoid;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.azure-plan-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.azure-text-center {
    text-align: center;
}

.azure-text-right {
    text-align: right;
}

.azure-mb-20 {
    margin-bottom: 20px;
}

.azure-mb-30 {
    margin-bottom: 30px;
}

.azure-mt-20 {
    margin-top: 20px;
}

.azure-mt-30 {
    margin-top: 30px;
}

/* Special Highlighting */
.azure-highlight {
    background-color: rgba(26, 54, 93, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.azure-important {
    color: #1a365d;
    font-weight: 600;
}

/* ROI Specific Styling */
.roi-cumulative-year3 {
    font-weight: 700;
    color: #28a745;
    font-size: 18px;
} 