
/* Creative Founder's Message Section */
.founders-message-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.founders-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(139, 21, 56, 0.05), transparent);
    z-index: 1;
}

.message-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(139, 21, 56, 0.1);
}

.message-header {
    background: var(--primary-red);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--accent-gold);
}

.message-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(212, 175, 55, 0.05);
    z-index: 1;
}

.founder-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: white;
}

.founder-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.message-content {
    padding: 80px 60px;
    line-height: 1.8;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.message-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--primary-red);
    line-height: 1;
    opacity: 0.8;
}

.message-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    text-align: justify;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.message-text:first-of-type {
    font-weight: 600;
    color: var(--primary-red);
    font-size: 1.2rem;
}

.message-signature {
    text-align: right;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 3px solid var(--accent-gold);
    position: relative;
}

.message-signature::before {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 8px;
    position: relative;
}

.signature-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
}

.signature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;

}



/* Responsive Design */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .founder-title {
        font-size: 2.5rem;
    }

    .message-content {
        padding: 60px 40px;
    }

    .banner-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    

    .founders-message-section {
        padding: 80px 0;
    }

    .message-header {
        padding: 40px 30px;
    }

    .founder-title {
        font-size: 2rem;
    }

    .message-content {
        padding: 50px 30px;
    }

    .message-text {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .message-content::before {
        font-size: 6rem;
        top: 10px;
        left: 20px;
    }
}

@media (max-width: 576px) {

    .founder-title {
        font-size: 1.8rem;
    }

    .message-text {
        font-size: 0.95rem;
    }

    .message-content {
        padding: 40px 25px;
    }

    .message-content::before {
        font-size: 4rem;
        top: 5px;
        left: 15px;
    }

    .signature-name {
        font-size: 1.5rem;
    }
}

/* Additional Creative Elements */
.message-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.1;
}

.message-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

/* Simple Professional Styles */
.message-text {
    opacity: 1;
}

.message-signature {
    opacity: 1;
}

.banner-title {
    opacity: 1;
}

.banner-subtitle {
    opacity: 1;
}

.founder-title {
    opacity: 1;
}

.founder-subtitle {
    opacity: 1;
}

.message-content::before {
    opacity: 0.8;
}

/* Simple Hover Effect */
.message-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.15);
    transition: all 0.3s ease;
}

.message-signature::before {
    width: 50px;
}

.signature-name::after {
    width: 60px;
} 