/* ========================================
   SEATECH - WELCOME MESSAGE SECTION
   Styling for the welcome message section with team photos
   ======================================== */

/* ========================================
   WELCOME MESSAGE CONTAINER
   ======================================== */
#tm-top-b {
    background-color: white;
    position: relative;
    padding: 80px 0;
}

.welcome-message-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   WELCOME MESSAGE LAYOUT
   ======================================== */
.welcome-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* ========================================
   LEFT COLUMN - WELCOME MESSAGE
   ======================================== */
.welcome-left {
    flex: 1;
    width: 50%;
}

.welcome-title {
    font-size: 36px;
    font-weight: bold;
    color: #004574;
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.welcome-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #feb98a;
    margin-top: 15px;
}

/* ========================================
   TEAM PHOTOS SECTION
   ======================================== */
.team-photos {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 69, 116, 0.15);
}

.team-name {
    font-size: 16px;
    font-weight: bold;
    color: #004574;
    margin-bottom: 12px;
}

.team-email,
.team-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-family: 'Quattrocento Sans', sans-serif;
    line-height: 1.4;
}

.team-email i,
.team-phone i {
    color: #4a90a4;
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.team-email a,
.team-phone a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.team-email a:hover,
.team-phone a:hover {
    color: #004574;
}

.team-member:hover .team-email,
.team-member:hover .team-phone {
    color: #333;
}

.team-member .social-link {
    display: inline-flex;
    width: 32px;
    height: 32px;
    background-color: #004574;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

.social-link:hover {
    background-color: #feb98a;
    color: white;
}

.social-link i {
    font-size: 14px;
}

/* ========================================
   WELCOME TEXT
   ======================================== */
.welcome-text {
    margin-bottom: 25px;
}

.welcome-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #004574;
    margin-bottom: 20px;
}

/* ========================================
   RIGHT COLUMN - FOLLOW ME SECTION
   ======================================== */
.welcome-right {
    flex: 1;
    width: 50%;
    padding-left: 40px;
}

.follow-section {
    margin-top: 0;
}

.follow-title {
    font-size: 16px;
    font-weight: bold;
    color: #004574;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links .social-link {
    width: 40px;
    height: 40px;
}

.social-links .social-link i {
    font-size: 16px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .welcome-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .welcome-left {
        max-width: 100%;
    }
    
    .welcome-right {
        flex: 1;
        padding-left: 0;
    }
    
    .welcome-title {
        font-size: 28px;
        text-align: center;
    }
    
    .welcome-title::after {
        margin: 15px auto 0;
    }
    
    .team-photos {
        justify-content: center;
        gap: 20px;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .team-email,
    .team-phone {
        font-size: 12px;
        gap: 5px;
    }
    
    .team-email::before,
    .team-phone::before {
        font-size: 11px;
        width: 12px;
    }
    
    .follow-section {
        text-align: center;
    }
}

@media (max-width: 480px) {
    #tm-top-b {
        padding: 60px 0;
    }
    
    .welcome-message-section {
        padding: 0 15px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .team-photos {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .team-member {
        max-width: 150px;
    }
    
    .welcome-text p {
        font-size: 15px;
    }
    
    .team-email,
    .team-phone {
        font-size: 11px;
        margin-bottom: 6px;
        gap: 4px;
    }
    
    .team-email::before,
    .team-phone::before {
        font-size: 10px;
        width: 10px;
    }
}