/* Hide navbar logo on Revaya Host page - logo is in hero section */
/* This will be handled via JavaScript in the page component */

/* Hero Section */
.host-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F1EB;
    margin-top: 76px;
    overflow: hidden;
    padding: 2rem 0;
}

.host-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.host-hero-logo {
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.host-logo-image {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.host-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #90684A;
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Avenir Next', sans-serif;
    flex-shrink: 0;
}

.host-hero-badge i {
    font-size: 0.875rem;
}

.host-hero-title {
    font-family: 'Didot', serif;
    font-size: 3rem;
    color: #2B2B2B;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.host-hero-subtitle {
    font-family: 'Avenir Next', sans-serif;
    font-size: 1.35rem;
    color: #5B4636;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex-shrink: 0;
}

.host-hero-description {
    font-family: 'Avenir Next', sans-serif;
    font-size: 1rem;
    color: #4A4A4A;
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
    flex-shrink: 0;
}

.host-hero-cta {
    margin: 0;
    flex-shrink: 0;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #CBBBA0;
    color: #2B2B2B;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Avenir Next', sans-serif;
}

.cta-button-primary:hover {
    background-color: #90684A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cta-button-primary i {
    font-size: 1rem;
}

/* Introduction Section */
.host-intro-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #F6F1EB 100%);
}

.host-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.host-intro-content {
    text-align: center;
}

.host-intro-title {
    font-family: 'Didot', serif;
    font-size: 2.5rem;
    color: #2B2B2B;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
}

.host-intro-text {
    font-family: 'Avenir Next', sans-serif;
    font-size: 1.15rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.host-intro-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.host-intro-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.host-intro-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.host-intro-feature i {
    color: #90684A;
    font-size: 1.25rem;
}

.host-intro-feature span {
    font-family: 'Avenir Next', sans-serif;
    font-size: 1rem;
    color: #2B2B2B;
    font-weight: 500;
}

/* Progress Section */
.progress-section {
    padding: 3rem 2rem;
    background-color: white;
}

.progress-container {
    max-width: 1100px;
    margin: 0 auto;
}

.progress-section-title {
    font-family: 'Didot', serif;
    font-size: 2.5rem;
    color: #2B2B2B;
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.progress-section-subtitle {
    font-family: 'Avenir Next', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin: 0 0 2rem 0;
}

.progress-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 2rem 0;
}

.progress-track::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #CBBBA0 0%, #90684A 100%);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    flex: 1;
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: #F6F1EB;
    border: 3px solid #CBBBA0;
    transition: all 0.3s ease;
}

.step-icon {
    font-size: 28px;
    color: #90684A;
}

.step-content {
    text-align: center;
}

.step-text {
    font-family: 'Avenir Next', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #2B2B2B;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.step-subtext {
    font-family: 'Avenir Next', sans-serif;
    font-size: 0.875rem;
    color: #90684A;
    font-weight: 500;
}

.progress-step.completed .step-icon-wrapper {
    background-color: #CBBBA0;
    border-color: #90684A;
}

.progress-step.completed .step-icon {
    color: white;
}

.progress-step.in-progress .step-icon-wrapper {
    background-color: #F6F1EB;
    border-color: #90684A;
    border-width: 4px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(144, 104, 74, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(144, 104, 74, 0);
    }
}

.progress-step.in-progress .step-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.progress-step.upcoming .step-icon-wrapper {
    background-color: #F6F1EB;
    border-color: #CBBBA0;
    opacity: 0.7;
}

.progress-step.upcoming .step-icon {
    color: #8C7A5B;
}

/* Features Section */
.features-section-host {
    padding: 3rem 2rem;
    background-color: #F6F1EB;
}

.features-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.features-section-title {
    font-family: 'Didot', serif;
    font-size: 2.75rem;
    color: #2B2B2B;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.features-section-subtitle {
    font-family: 'Avenir Next', sans-serif;
    font-size: 1.15rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.features-grid-host {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-host {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card-host:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F6F1EB;
}

.feature-card-icon {
    font-size: 2rem;
    color: #90684A;
    width: 48px;
    height: 48px;
    background-color: rgba(144, 104, 74, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-title {
    font-family: 'Didot', serif;
    font-size: 1.75rem;
    color: #2B2B2B;
    margin: 0;
    font-weight: 600;
}

.feature-card-tagline {
    font-family: 'Avenir Next', sans-serif;
    font-size: 1.1rem;
    color: #5B4636;
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.feature-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.feature-card-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Avenir Next', sans-serif;
}

.feature-card-item:last-child {
    margin-bottom: 0;
}

.feature-card-item i {
    color: #90684A;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-card-item span {
    color: #4A4A4A;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid-host {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .host-hero {
        min-height: 350px;
        margin-top: 60px;
        padding: 1.5rem 0;
    }

    .host-hero-content {
        padding: 1rem;
        gap: 0.5rem;
    }

    .host-logo-image {
        max-height: 60px;
    }

    .host-hero-title {
        font-size: 2.25rem;
    }

    .host-hero-subtitle {
        font-size: 1.15rem;
    }

    .host-hero-description {
        font-size: 0.95rem;
    }

    .host-intro-section {
        padding: 2.5rem 1.5rem;
    }

    .host-intro-title {
        font-size: 2rem;
    }

    .host-intro-text {
        font-size: 1rem;
    }

    .host-intro-features {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .progress-section {
        padding: 2.5rem 1.5rem;
    }

    .progress-section-title {
        font-size: 2rem;
    }

    .progress-track {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        padding: 2rem 0;
    }

    .progress-track::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, #CBBBA0 0%, #90684A 100%);
    }

    .progress-step {
        width: 100%;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: flex-start;
        max-width: 400px;
    }

    .step-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content {
        text-align: left;
    }

    .features-section-host {
        padding: 2.5rem 1.5rem;
    }

    .features-section-title {
        font-size: 2.25rem;
    }

    .features-grid-host {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .host-hero {
        min-height: 300px;
        padding: 1.5rem 0;
    }

    .host-hero-content {
        padding: 1rem;
        gap: 0.5rem;
    }

    .host-logo-image {
        max-height: 50px;
    }

    .host-hero-title {
        font-size: 1.75rem;
    }

    .host-hero-subtitle {
        font-size: 1rem;
    }

    .host-hero-description {
        font-size: 0.875rem;
    }

    .host-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .cta-button-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .host-intro-title {
        font-size: 1.75rem;
    }

    .progress-section-title {
        font-size: 1.75rem;
    }

    .features-section-title {
        font-size: 1.75rem;
    }

    .feature-card-host {
        padding: 2rem;
    }
}
