/* home.css - Home Page Specific Styles */

.home-main {
    padding-top: 40px;
}

.welcome-section {
    text-align: center;
    padding: 120px 20px 80px;
    background-color: #fff;
}

.welcome-title {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* Owner Showcase Redesign */
.owner-showcase {
    max-width: 100%;
    margin: 80px 0;
    padding: 0;
}

.owner-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    padding-left: 0;
}

.owner-image-box {
    flex: 1 1 500px;
    height: clamp(400px, 60vh, 660px);
    overflow: hidden;
    border-radius: 20px;
}

.owner-img-large {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.owner-quote-box {
    flex: 1 1 400px;
    position: relative;
    padding: 20px clamp(20px, 5vw, 80px);
}

.quote-mark {
    font-size: clamp(6rem, 15vw, 10rem);
    color: #0055a5;
    line-height: 1;
    display: block;
    margin-bottom: -40px;
    margin-left: -10px;
    font-family: serif;
    font-weight: 700;
    opacity: 0.8;
}

.quote-text {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: #1a202c;
    font-weight: 600;
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 60px 20px 40px;
    }
    .owner-container {
        flex-direction: column;
        gap: 40px;
    }
    .owner-image-box {
        flex: 0 0 auto;
        width: 100%;
        height: 350px;
    }
    .owner-quote-box {
        flex: 0 0 auto;
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    .quote-mark {
        margin-left: 0;
        margin-bottom: -20px;
    }
}